1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/pkg/tinydtls/Kconfig
2024-05-07 10:34:35 +02:00

41 lines
925 B
Plaintext

# Copyright (c) 2019 HAW Hamburg
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
#
menu "tinydtls"
depends on USEPKG_TINYDTLS
config DTLS_PSK
bool "TLS_PSK_WITH_AES_128_CCM_8"
config DTLS_ECC
bool "TLS_ECDHE_ECDSA_WITH_AES_128_CCM_8"
config DTLS_DEBUG
bool "Enable debug log"
help
Enable debug log output for tinydtls
config DTLS_CONTEXT_MAX
int "Max DTLS context"
default 2
help
The maximum number of DTLS context at the same time.
config DTLS_PEER_MAX
int "Max number of peers"
default 2 if USEMODULE_GCOAP_DTLS
default 1
help
The maximum number of DTLS peers.
config DTLS_HANDSHAKE_MAX
int "Max concurrent handshake"
default 1
help
The maximum number of concurrent DTLS handshakes.
endmenu # tinydtls