mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 19:21:38 +00:00
[PSDK] Enumerate WPA3 algorithms in DOT11_AUTH_ALGORITHM
(#8129)
Reference: https://learn.microsoft.com/en-us/windows/win32/nativewifi/dot11-auth-algorithm CORE-6905
This commit is contained in:
parent
824fae4cb1
commit
26368a1ead
1 changed files with 11 additions and 0 deletions
|
@ -34,6 +34,17 @@ typedef enum _DOT11_AUTH_ALGORITHM {
|
|||
DOT11_AUTH_ALGO_WPA_NONE,
|
||||
DOT11_AUTH_ALGO_RSNA,
|
||||
DOT11_AUTH_ALGO_RSNA_PSK,
|
||||
DOT11_AUTH_ALGO_WPA3,
|
||||
#if (NTDDI_VERSION >= NTDDI_WIN10_FE)
|
||||
DOT11_AUTH_ALGO_WPA3_ENT_192 = DOT11_AUTH_ALGO_WPA3,
|
||||
#endif
|
||||
DOT11_AUTH_ALGO_WPA3_SAE,
|
||||
#if (NTDDI_VERSION >= NTDDI_WIN10_VB)
|
||||
DOT11_AUTH_ALGO_OWE,
|
||||
#endif
|
||||
#if (NTDDI_VERSION >= NTDDI_WIN10_FE)
|
||||
DOT11_AUTH_ALGO_WPA3_ENT,
|
||||
#endif
|
||||
DOT11_AUTH_ALGO_IHV_START = 0x80000000,
|
||||
DOT11_AUTH_ALGO_IHV_END = 0xffffffff
|
||||
} DOT11_AUTH_ALGORITHM;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue