mirror of
https://github.com/espressif/esp-idf
synced 2025-03-10 17:49:10 -04:00
wpa_supplicant is using MbedTLS API's for crypto algorithms. For calling them a duplicate set of modules is maintained prepended with 'fast_'. Remove these and use flag USE_MBEDTLS_CRYPTO instead to separate modules calling MbedTLS API's from native implementation.
37 lines
923 B
Plaintext
37 lines
923 B
Plaintext
menu "Supplicant"
|
|
|
|
config WPA_ENTERPRISE
|
|
bool "Enable WPA/WPA2-Enterprise"
|
|
default n
|
|
help
|
|
Select this option to enable WiFi WPA/WPA2-Enterprise authentication.
|
|
|
|
config WPA_EAP_TLS
|
|
bool "Enable EAP-TLS"
|
|
depends on WPA_ENTERPRISE
|
|
default y
|
|
help
|
|
Select this option to support EAP-TLS.
|
|
|
|
config WPA_EAP_TTLS
|
|
bool "Enable EAP-TTLS"
|
|
depends on WPA_ENTERPRISE
|
|
default y
|
|
help
|
|
Select this option to support EAP-TTLS.
|
|
|
|
config WPA_EAP_PEAP
|
|
bool "Enable EAP-PEAP"
|
|
depends on WPA_ENTERPRISE
|
|
default y
|
|
help
|
|
Select this option to support EAP-PEAP.
|
|
|
|
config WPA_MBEDTLS_CRYPTO
|
|
bool "Use MbedTLS crypto API's"
|
|
default y
|
|
help
|
|
Select this option to use MbedTLS crypto API's which utilize hardware acceleration.
|
|
|
|
endmenu
|