// dot11wificxtypes.h
typedef enum _WDI_CIPHER_KEY_TYPE {
WDI_CIPHER_KEY_TYPE_NONE = 0,
WDI_CIPHER_KEY_TYPE_PAIRWISE_KEY = 1,
WDI_CIPHER_KEY_TYPE_GROUP_KEY = 2,
WDI_CIPHER_KEY_TYPE_IGTK = 3,
WDI_CIPHER_KEY_TYPE_BIGTK = 3
} WDI_CIPHER_KEY_TYPE;
View the official Windows Driver Kit DDI reference// wditypes.h
typedef enum _WDI_CIPHER_KEY_TYPE {
WDI_CIPHER_KEY_TYPE_PAIRWISE_KEY = 1,
WDI_CIPHER_KEY_TYPE_GROUP_KEY = 2,
WDI_CIPHER_KEY_TYPE_IGTK = 3,
WDI_CIPHER_KEY_TYPE_BIGTK = 4
} WDI_CIPHER_KEY_TYPE;
View the official Windows Driver Kit DDI referenceNo description available.
[!IMPORTANT] This topic is part of the WiFiCx driver model. WiFiCx is the Wi-Fi driver model released in Windows 11. We recommend that you use WiFiCx to take advantage of the latest features. The previous Wi-Fi driver model WDI is in maintenance mode and will only receive high priority fixes.
The WDI_CIPHER_KEY_TYPE enumeration defines the cipher key types.
WDI_CIPHER_KEY_TYPE_NONE:0The key is not valid.
WDI_CIPHER_KEY_TYPE_PAIRWISE_KEY:1The key is a pairwise key to another station.
WDI_CIPHER_KEY_TYPE_GROUP_KEY:2The key is a group key.
WDI_CIPHER_KEY_TYPE_IGTK:3The key is an IGTK.
WDI_CIPHER_KEY_TYPE_BIGTK:3The key is a Beacon Protection Frame Group key.
The WDI_CIPHER_KEY_TYPE enumeration is a value in the WDI_TLV_CIPHER_KEY_TYPE_INFO TLV.
[!IMPORTANT] This topic is part of the WDI driver model released in Windows 10. The WDI driver model is in maintenance mode and will only receive high priority fixes. WiFiCx is the Wi-Fi driver model released in Windows 11. We recommend that you use WiFiCx to take advantage of the latest features.
The WDI_CIPHER_KEY_TYPE enumeration defines the cipher key types.
WDI_CIPHER_KEY_TYPE_PAIRWISE_KEY:1The key is a pairwise key to another station.
WDI_CIPHER_KEY_TYPE_GROUP_KEY:2The key is a group key.
WDI_CIPHER_KEY_TYPE_IGTK:3The key is an IGTK.
WDI_CIPHER_KEY_TYPE_BIGTK:4The key is a Beacon Protection Frame Group key.