diff --git a/components/wpa_supplicant/esp_supplicant/include/esp_eap_client.h b/components/wpa_supplicant/esp_supplicant/include/esp_eap_client.h index 1cbfac781e..7b26dc7df0 100644 --- a/components/wpa_supplicant/esp_supplicant/include/esp_eap_client.h +++ b/components/wpa_supplicant/esp_supplicant/include/esp_eap_client.h @@ -283,7 +283,7 @@ esp_err_t esp_eap_client_set_suiteb_192bit_certification(bool enable); * EAP-FAST requires a PAC file that contains the client's credentials. * * @attention 1. For files read from the file system, length has to be decremented by 1 byte. - * @attention 2. Disabling the ESP_WIFI_MBEDTLS_TLS_CLIENT config is required to use EAP-FAST. + * @attention 2. Disabling the WPA_MBEDTLS_TLS_CLIENT config is required to use EAP-FAST. * * @param[in] pac_file Pointer to the PAC file buffer. * @param[in] pac_file_len Length of the PAC file buffer. @@ -299,7 +299,7 @@ esp_err_t esp_eap_client_set_pac_file(const unsigned char *pac_file, int pac_fil * EAP-FAST supports Fast Provisioning, where clients can be authenticated faster using precomputed keys (PAC). * This function allows configuring parameters for Fast Provisioning. * - * @attention 1. Disabling the ESP_WIFI_MBEDTLS_TLS_CLIENT config is required to use EAP-FAST. + * @attention 1. Disabling the WPA_MBEDTLS_TLS_CLIENT config is required to use EAP-FAST. * * @param[in] config Configuration structure with Fast Provisioning parameters. * diff --git a/components/wpa_supplicant/esp_supplicant/include/esp_wpa2.h b/components/wpa_supplicant/esp_supplicant/include/esp_wpa2.h index 4a3f20e94f..514240499a 100644 --- a/components/wpa_supplicant/esp_supplicant/include/esp_wpa2.h +++ b/components/wpa_supplicant/esp_supplicant/include/esp_wpa2.h @@ -296,7 +296,7 @@ esp_err_t esp_wifi_sta_wpa2_ent_set_pac_file(const unsigned char *pac_file, int * @deprecated This function is deprecated and will be removed in the future. * Please use `esp_eap_client_set_fast_params` instead. * - * @attention 1. Disabling the ESP_WIFI_MBEDTLS_TLS_CLIENT config is required to use EAP-FAST. + * @attention 1. Disabling the WPA_MBEDTLS_TLS_CLIENT config is required to use EAP-FAST. * * @param config: eap fast phase 1 configuration * diff --git a/examples/wifi/wifi_eap_fast/README.md b/examples/wifi/wifi_eap_fast/README.md index 7c2df34550..09dc86515d 100644 --- a/examples/wifi/wifi_eap_fast/README.md +++ b/examples/wifi/wifi_eap_fast/README.md @@ -12,7 +12,7 @@ This example shows how ESP32 connects to AP with Wi-Fi enterprise encryption usi 5. Connect to AP. *Note:* -1. EAP-FAST is not supported with `CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT` and so is disabled by default. +1. EAP-FAST is not supported with `CONFIG_WPA_MBEDTLS_CRYPTO` and so is disabled by default. 2. Setting the config `fast_provisioning` to methods 0 and 1 do not support saving the PAC credentials in case of a restart or loss of power. 3. The certificates present in the `examples/wifi/wifi_eap_fast/main` folder contain server certificates which have the corresponding CA as well. These can be used for server validation which is opptional. 4. The expiration date of these certificates is 2027/06/05.