1.1.7.4 WDRV_WINC_AUTH_TYPE Enum
C
typedef enum { WDRV_WINC_AUTH_TYPE_DEFAULT = -1, WDRV_WINC_AUTH_TYPE_OPEN = 0, WDRV_WINC_AUTH_TYPE_WPAWPA2_PERSONAL = 2, WDRV_WINC_AUTH_TYPE_WPA2_PERSONAL = 3, WDRV_WINC_AUTH_TYPE_WPA2WPA3_PERSONAL = 4, WDRV_WINC_AUTH_TYPE_WPA3_PERSONAL = 5, WDRV_WINC_AUTH_TYPE_MAX } WDRV_WINC_AUTH_TYPE;
Description
This type defines the possible authentication types that can be requested in AP mode or STA mode.
Members
Members | Description |
---|---|
WDRV_WINC_AUTH_TYPE_DEFAULT | This type may be used in helper function WDRV_WINC_AuthCtxSetPersonal, in which case it is translated into the best practice auth type. Other uses of this type are invalid. |
WDRV_WINC_AUTH_TYPE_OPEN | No encryption. |
WDRV_WINC_AUTH_TYPE_WPAWPA2_PERSONAL | WPA2 mixed mode (AP) / compatibility mode (STA) with PSK. (As an AP GTK is TKIP, as a STA GTK is chosen by AP; PTK can be CCMP or TKIP) |
WDRV_WINC_AUTH_TYPE_WPA2_PERSONAL | WPA2-only authentication with PSK. (PTK and GTK are both CCMP). Note that a WPA2-only STA will not connect to a WPA2 mixed mode AP. |
WDRV_WINC_AUTH_TYPE_WPA2WPA3_PERSONAL | WPA3 SAE transition mode. (CCMP, IGTK can be BIP or none) |
WDRV_WINC_AUTH_TYPE_WPA3_PERSONAL | WPA3 SAE authentication. (CCMP, IGTK is BIP) |
WDRV_WINC_AUTH_TYPE_MAX | Authentication types with this value or above are not recognised. |
Remarks
None.