wpa_supplicant: Disable TLSv1.2 by default
Some Enterprise Authentication Servers do not support TLS v1.2. Move this option to Menuconfig and disable by default.
This commit is contained in:
parent
df5cead7e6
commit
59e8e407a0
3 changed files with 9 additions and 1 deletions
|
@ -118,7 +118,6 @@ target_compile_definitions(${COMPONENT_LIB} PRIVATE
|
||||||
CONFIG_ECC
|
CONFIG_ECC
|
||||||
CONFIG_IEEE80211W
|
CONFIG_IEEE80211W
|
||||||
CONFIG_WPA3_SAE
|
CONFIG_WPA3_SAE
|
||||||
CONFIG_TLSV12
|
|
||||||
CONFIG_SHA256
|
CONFIG_SHA256
|
||||||
CONFIG_DPP
|
CONFIG_DPP
|
||||||
)
|
)
|
||||||
|
|
|
@ -23,5 +23,10 @@ menu "Supplicant"
|
||||||
help
|
help
|
||||||
Select this to enable unity test for DPP.
|
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
|
endmenu
|
||||||
|
|
|
@ -25,4 +25,8 @@
|
||||||
#define DEBUG_PRINT
|
#define DEBUG_PRINT
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if CONFIG_WPA_TLS_V12
|
||||||
|
#define CONFIG_TLSV12
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* _SUPPLICANT_OPT_H */
|
#endif /* _SUPPLICANT_OPT_H */
|
||||||
|
|
Loading…
Reference in a new issue