// wificxpoweroffload.h
typedef struct _WIFI_POWER_OFFLOAD_80211RSNREKEY_PARAMETERS {
ULONG Size;
ULONG ProtocolOffloadId;
UINT64 ReplayCounter;
ULONG KCKLength;
ULONG KEKLength;
UCHAR KCK[WIFI_RSN_MAX_CIPHER_KEY_LENGTH];
UCHAR KEK[WIFI_RSN_MAX_CIPHER_KEY_LENGTH];
} WIFI_POWER_OFFLOAD_80211RSNREKEY_PARAMETERS;
View the official Windows Driver Kit DDI referenceNo description available.
The WIFI_POWER_OFFLOAD_80211RSNREKEY_PARAMETERS structure contains parameters for an 802.11 RSN rekey low power protocol offload to a WiFiCx net adapter.
SizeThe size of this structure, in bytes.
ProtocolOffloadIdThe identifier for this protocol offload.
ReplayCounterA UINT64 value that specifies the replay counter.
KCKLengthThe length of the IEEE 802.11 key confirmation key (KCK).
KEKLengthThe length of the IEEE 802.11 key encryption key (KEK).
KCKA UCHAR array that specifies the KCK.
KEKA UCHAR array that specifies the KEK.
Call WIFI_POWER_OFFLOAD_80211RSNREKEY_PARAMETERS_INIT to initialize this structure and fill in its Size field. Then call WifiPowerOffloadGet80211RSNRekeyParameters to fill in the remaining members of the structure.
WIFI_POWER_OFFLOAD_80211RSNREKEY_PARAMETERS_INIT
WifiPowerOffloadGet80211RSNRekeyParameters