WWAN_AUTH_AKA_RESPONSE - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wwan.h

typedef struct _WWAN_AUTH_AKA_RESPONSE {
  BYTE  Res[WWAN_AUTH_RES_MAX_LEN];
  ULONG ResLength;
  BYTE  IK[WWAN_AUTH_IK_LEN];
  BYTE  CK[WWAN_AUTH_CK_LEN];
  BYTE  Auts[WWAN_AUTH_AUTS_LEN];
} WWAN_AUTH_AKA_RESPONSE, *PWWAN_AUTH_AKA_RESPONSE;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-wwan-_wwan_auth_aka_response)

_WWAN_AUTH_AKA_RESPONSE structure

Description

The WWAN_AUTH_AKA_RESPONSE structure represents a response to an AKA authentication challenge.

Members

ResLength

Length of response in the Res member.

Auts

112-bit value generated by the peer upon a synchronization failure. This member is valid only in case of failure. This member represents a multi-byte value in little-endian format.

CK

Ciphering key. This member is valid only in case of success. This member represents a multi-byte value in little-endian format.

IK

Integrating key. This member is valid only in case of success. This member represents a multi-byte value in little-endian format.

Res

128-bit authentication result from the peer, which, together with the RAND, authenticates the peer to the server. This member is valid only in case of success. This member represents a multi-byte value in little-endian format.

Remarks

The WWAN_AUTH_RESPONSE structure uses this structure.

See also

WWAN_AUTH_RESPONSE