mirror of
https://github.com/espressif/esp-idf
synced 2025-03-10 01:29:21 -04:00
wpa_supplicant: remove RC4 and 3DES ciphers for TLS
MbedTLS-3.x has dropped support for 3DES and RC4 TLS cipher suites. Removing them from supplicant as well Closes https://github.com/espressif/esp-idf/issues/9607
This commit is contained in:
parent
db69ae2787
commit
1d15a41e4a
@ -413,23 +413,6 @@ static const int eap_ciphersuite_preference[] =
|
||||
#if defined(MBEDTLS_CCM_C)
|
||||
MBEDTLS_TLS_PSK_WITH_AES_128_CCM_8,
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(MBEDTLS_DES_C)
|
||||
/* 3DES suites */
|
||||
MBEDTLS_TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA,
|
||||
MBEDTLS_TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA,
|
||||
MBEDTLS_TLS_RSA_WITH_3DES_EDE_CBC_SHA,
|
||||
MBEDTLS_TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA,
|
||||
MBEDTLS_TLS_PSK_WITH_3DES_EDE_CBC_SHA,
|
||||
#endif
|
||||
#if defined(MBEDTLS_ARC4_C)
|
||||
/* RC4 suites */
|
||||
MBEDTLS_TLS_DHE_PSK_WITH_RC4_128_SHA,
|
||||
MBEDTLS_TLS_RSA_WITH_RC4_128_SHA,
|
||||
MBEDTLS_TLS_RSA_WITH_RC4_128_MD5,
|
||||
MBEDTLS_TLS_RSA_PSK_WITH_RC4_128_SHA,
|
||||
MBEDTLS_TLS_PSK_WITH_RC4_128_SHA,
|
||||
#endif
|
||||
0
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user