Skip to content

Commit f889c1a

Browse files
jbr-iammahadevan108
authored andcommitted
net: lwm2m: Add TLS_ECDHE_ECDSA_WITH_AES_128_CCM_8 to cipher list
Add TLS_ECDHE_ECDSA_WITH_AES_128_CCM_8 to the list for use with x509 certificates. The LWM2M v1.1 specification says that a LWM2M client which used X509 certificates must support this ciphersuite and additional ciphersuites may be supported. Signed-off-by: Jeroen Broersen <[email protected]>
1 parent 3a8ce6e commit f889c1a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

subsys/net/lib/lwm2m/lwm2m_engine.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1053,6 +1053,7 @@ static const int cipher_list_psk[] = {
10531053
};
10541054

10551055
static const int cipher_list_cert[] = {
1056+
MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_128_CCM_8,
10561057
MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
10571058
};
10581059

0 commit comments

Comments
 (0)