Merge branch 'bugfix/supplicant_disable_tls_v1.2' into 'master'

wpa_supplicant: Disable TLSv1.2 by default

See merge request espressif/esp-idf!8534
pull/5222/head
Jiang Jiang Jian 2020-04-28 14:18:35 +08:00
commit 2dc4bfe782
3 zmienionych plików z 9 dodań i 1 usunięć

Wyświetl plik

@ -118,7 +118,6 @@ target_compile_definitions(${COMPONENT_LIB} PRIVATE
CONFIG_ECC
CONFIG_IEEE80211W
CONFIG_WPA3_SAE
CONFIG_TLSV12
CONFIG_SHA256
CONFIG_DPP
)

Wyświetl plik

@ -23,5 +23,10 @@ menu "Supplicant"
help
Select this to enable unity test for DPP.
config WPA_TLS_V12
bool "Enable TLS v1.2"
default n
help
Select this to enable TLS v1.2 for WPA2-Enterprise Authentication.
endmenu

Wyświetl plik

@ -25,4 +25,8 @@
#define DEBUG_PRINT
#endif
#if CONFIG_WPA_TLS_V12
#define CONFIG_TLSV12
#endif
#endif /* _SUPPLICANT_OPT_H */