d09cbcaf6f
Add TLS credential management subsystem that enables to register TLS credentials in the system. Once specific credentials are registered in the system, they will be available for TLS secure sockets to use. To use a TLS credential with a socket, the following steps have to be taken: 1. TLS credential has to be registered in a system-wide pool, using the API provided in "net/tls_credentials.h" header file. 2. TLS credential (and other TLS parameters) should be set on a socket using setsockopt(). Note, that there is no need to repeat step 1 for different sockets using the same credentials. Once TLS credential is registered in the system, it can be used with mulitple sockets, as long as it's not deleted. Signed-off-by: Robert Lubos <robert.lubos@nordicsemi.no>
36 lines
591 B
Plaintext
36 lines
591 B
Plaintext
#
|
|
# Copyright (c) 2016 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
menu "Network Protocols"
|
|
|
|
source "subsys/net/lib/coap/Kconfig"
|
|
|
|
source "subsys/net/lib/dns/Kconfig"
|
|
|
|
source "subsys/net/lib/mqtt/Kconfig"
|
|
|
|
source "subsys/net/lib/http/Kconfig"
|
|
|
|
source "subsys/net/lib/lwm2m/Kconfig"
|
|
|
|
source "subsys/net/lib/sntp/Kconfig"
|
|
|
|
source "subsys/net/lib/websocket/Kconfig"
|
|
|
|
endmenu
|
|
|
|
menu "Network Libraries"
|
|
|
|
source "subsys/net/lib/config/Kconfig"
|
|
|
|
source "subsys/net/lib/app/Kconfig"
|
|
|
|
source "subsys/net/lib/sockets/Kconfig"
|
|
|
|
source "subsys/net/lib/tls_credentials/Kconfig"
|
|
|
|
endmenu
|