Closed
Description
Related area
Wifi
Hardware specification
ESP32
Is your feature request related to a problem?
We're missing the EAP-TTLS + PAP, as it's clearly stated in esp_wpa2.h
that
@attention 2. wpa2 enterprise authentication can only support TLS, PEAP-MSCHAPv2 and TTLS-MSCHAPv2 method.
A lot of corporate/student networks support/require PAP.
Describe the solution you'd like
Support PAP as PHASE2 like it is offered in the esp_eap_ttls_phase2_types
ENUM:
typedef enum {
ESP_EAP_TTLS_PHASE2_EAP,
ESP_EAP_TTLS_PHASE2_MSCHAPV2,
ESP_EAP_TTLS_PHASE2_MSCHAP,
ESP_EAP_TTLS_PHASE2_PAP,
ESP_EAP_TTLS_PHASE2_CHAP
} esp_eap_ttls_phase2_types ;
Describe alternatives you've considered
None, we need PAP.
Additional context
No response
I have checked existing list of Feature requests and the Contribution Guide
- I confirm I have checked existing list of Feature requests and Contribution Guide.