mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 10:47:19 +02: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:
@ -413,23 +413,6 @@ static const int eap_ciphersuite_preference[] =
|
|||||||
#if defined(MBEDTLS_CCM_C)
|
#if defined(MBEDTLS_CCM_C)
|
||||||
MBEDTLS_TLS_PSK_WITH_AES_128_CCM_8,
|
MBEDTLS_TLS_PSK_WITH_AES_128_CCM_8,
|
||||||
#endif
|
#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
|
#endif
|
||||||
0
|
0
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user