Wi-Fi security phase 2 authentication methods.
Synopsis:
#include <wifi/wifi_service.h>
typedef enum {
WIFI_SECURITY_PHASE2_AUTO = 0
WIFI_SECURITY_PHASE2_EAP_MSCHAPV2 = 1
WIFI_SECURITY_PHASE2_EAP_GTC = 2
WIFI_SECURITY_PHASE2_PAP = 3
WIFI_SECURITY_PHASE2_MSCHAPV2 = 4
} wifi_security_phase2_auth_t;
Data:
- WIFI_SECURITY_PHASE2_AUTO
- Auto select Microsoft Challenge Handshake Authentication Protocol version 2 (MS-CHAPv2) or Generic Token Card (GTC).
- WIFI_SECURITY_PHASE2_EAP_MSCHAPV2
- Use Extensible Authentication Protocol (EAP)-MS-CHAPv2 for inner authentication.
- WIFI_SECURITY_PHASE2_EAP_GTC
- Use EAP-GTC for inner authentication.
- WIFI_SECURITY_PHASE2_PAP
- Use Password Authentication Protocol (PAP) for inner authentication.
- WIFI_SECURITY_PHASE2_MSCHAPV2
- Use MS-CHAPv2 for inner authentication.
Library:
libwifi (For the qcc command, use the -l wifi option to link against this library)
Description:
This enum defines types for phase 2 or inner authentication methods.