WWAN_AUTH_CHALLENGE - NtDoc

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

typedef struct _WWAN_AUTH_CHALLENGE {
  WWAN_AUTH_METHOD AuthMethod;
  union {
    WWAN_AUTH_SIM_CHALLENGE  AuthSim;
    WWAN_AUTH_AKA_CHALLENGE  AuthAka;
    WWAN_AUTH_AKAP_CHALLENGE AuthAkap;
  } u;
} WWAN_AUTH_CHALLENGE, *PWWAN_AUTH_CHALLENGE;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

_WWAN_AUTH_CHALLENGE structure

Description

The WWAN_AUTH_CHALLENGE structure represents an authentication challenge for a specific method.

Members

AuthMethod

The authentication challenge method.

u

The container union for the different authentication challenge methods.

u.AuthSim

The challenge that uses the SIM authentication method. If AuthMethod is set to WwanAuthSim, use this member.

u.AuthAka

The challenge that uses the AKA authentication method. If AuthMethod is set to WwanAuthAka, use this member.

u.AuthAkap

The challenge that uses the AKA' authentication method. If AuthMethod is set to WwanAuthAkap, use this member.

See also

WWAN_AUTH_AKAP_CHALLENGE

WWAN_AUTH_AKA_CHALLENGE

WWAN_AUTH_METHOD

WWAN_AUTH_SIM_CHALLENGE