From 5903e9ea2bca62866bb1ee3348131b204bcdbc0b Mon Sep 17 00:00:00 2001 From: Sarvesh Bodakhe Date: Thu, 1 Feb 2024 15:34:45 +0530 Subject: [PATCH] feat(wpa_supplicant): Make CONFIG_ESP_WIFI_EAP_TLS1_3 an experimental feature --- Kconfig | 1 + components/esp_wifi/Kconfig | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Kconfig b/Kconfig index fe4e12f863..56d3f1a64d 100644 --- a/Kconfig +++ b/Kconfig @@ -627,3 +627,4 @@ mainmenu "Espressif IoT Development Framework Configuration" - CONFIG_SPIRAM_SPEED_120M && CONFIG_SPIRAM_MODE_OCT - CONFIG_BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH - CONFIG_MBEDTLS_USE_CRYPTO_ROM_IMPL + - CONFIG_ESP_WIFI_EAP_TLS1_3 diff --git a/components/esp_wifi/Kconfig b/components/esp_wifi/Kconfig index 90082a1ef2..580a90f8d0 100644 --- a/components/esp_wifi/Kconfig +++ b/components/esp_wifi/Kconfig @@ -498,7 +498,7 @@ menu "Wi-Fi" bool "Enable EAP-TLS v1.3 Support for WiFi Enterprise connection" default n select MBEDTLS_SSL_PROTO_TLS1_3 - depends on ESP_WIFI_MBEDTLS_TLS_CLIENT + depends on ESP_WIFI_MBEDTLS_TLS_CLIENT && IDF_EXPERIMENTAL_FEATURES help Select this option to support EAP with TLS v1.3. This configuration still supports compatibility with EAP-TLS v1.2.