kopia lustrzana https://github.com/espressif/esp-idf
Merge branch 'bugfix/supplicant_disable_tls_v1.2' into 'master'
wpa_supplicant: Disable TLSv1.2 by default See merge request espressif/esp-idf!8534pull/5222/head
commit
2dc4bfe782
|
@ -118,7 +118,6 @@ target_compile_definitions(${COMPONENT_LIB} PRIVATE
|
|||
CONFIG_ECC
|
||||
CONFIG_IEEE80211W
|
||||
CONFIG_WPA3_SAE
|
||||
CONFIG_TLSV12
|
||||
CONFIG_SHA256
|
||||
CONFIG_DPP
|
||||
)
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -25,4 +25,8 @@
|
|||
#define DEBUG_PRINT
|
||||
#endif
|
||||
|
||||
#if CONFIG_WPA_TLS_V12
|
||||
#define CONFIG_TLSV12
|
||||
#endif
|
||||
|
||||
#endif /* _SUPPLICANT_OPT_H */
|
||||
|
|
Ładowanie…
Reference in New Issue