DOT11EXT_VIRTUAL_STATION_AP_PROPERTY - NtDoc

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

typedef struct _DOT11EXT_VIRTUAL_STATION_AP_PROPERTY {
  DOT11_SSID             dot11SSID;
  DOT11_AUTH_ALGORITHM   dot11AuthAlgo;
  DOT11_CIPHER_ALGORITHM dot11CipherAlgo;
  BOOL                   bIsPassPhrase;
  DWORD                  dwKeyLength;
  UCHAR                  ucKeyData[DOT11EXT_PSK_MAX_LENGTH];
} DOT11EXT_VIRTUAL_STATION_AP_PROPERTY, *PDOT11EXT_VIRTUAL_STATION_AP_PROPERTY;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-wlanihv-_dot11ext_virtual_station_ap_property)

_DOT11EXT_VIRTUAL_STATION_AP_PROPERTY structure

Description

Important The Native 802.11 Wireless LAN interface is deprecated in Windows 10 and later. Please use the WLAN Device Driver Interface (WDI) instead. For more information about WDI, see WLAN Universal Windows driver model.

The DOT11EXT_VIRTUAL_STATION_AP_PROPERTY structure specifies the properties of an access point (AP) hosted on a virtual 802.11 station.

Members

dot11SSID

A DOT11_SSID structure that contains the service set identifier (SSID) used by the virtual station AP.

dot11AuthAlgo

A DOT11_AUTH_ALGORITHM structure that contains the authentication algorithm used by the virtual station AP.

dot11CipherAlgo

A DOT11_CIPHER_ALGORITHM structure that contains the cipher algorithm used by the virtual station AP.

bIsPassPhrase

A Boolean value that indicates how the operating system should interpret the value of the ucKeyData member. For more information, see the following Remarks section.

dwKeyLength

The length, in bytes, of the useful part of the ucKeyData member. For more information, see the following Remarks section.

ucKeyData

A UCHAR value that specifies the key used by the virtual station AP's Preshared Keys (PSK) authentication algorithm. For more information, see the following Remarks section.

Syntax

typedef struct _DOT11EXT_VIRTUAL_STATION_AP_PROPERTY {
  DOT11_SSID             dot11SSID;
  DOT11_AUTH_ALGORITHM   dot11AuthAlgo;
  DOT11_CIPHER_ALGORITHM dot11CipherAlgo;
  BOOL                   bIsPassPhrase;
  DWORD                  dwKeyLength;
  UCHAR                  ucKeyData[DOT11EXT_PSK_MAX_LENGTH];
} DOT11EXT_VIRTUAL_STATION_AP_PROPERTY, *PDOT11EXT_VIRTUAL_STATION_AP_PROPERTY;

Remarks

The operating system uses the following logic to interpret the value of the ucKeyData member:

See also

DOT11_AUTH_ALGORITHM

DOT11_CIPHER_ALGORITHM

DOT11_SSID