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

MembersDescription
WDRV_WINC_AUTH_TYPE_DEFAULTThis 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_OPENNo encryption.
WDRV_WINC_AUTH_TYPE_WPAWPA2_PERSONALWPA2 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_PERSONALWPA2-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_PERSONALWPA3 SAE transition mode. (CCMP, IGTK can be BIP or none)
WDRV_WINC_AUTH_TYPE_WPA3_PERSONALWPA3 SAE authentication. (CCMP, IGTK is BIP)
WDRV_WINC_AUTH_TYPE_MAXAuthentication types with this value or above are not recognised.

Remarks

None.