It is currently April 16th, 2024, 3:55 am

[Feature] WiFiStatus plugin WPA3 support

Report bugs with the Rainmeter application and suggest features.
oZone
Posts: 154
Joined: May 14th, 2018, 4:46 pm

[Feature] WiFiStatus plugin WPA3 support

Post by oZone »

Using command

Code: Select all

netsh wlan show networks mode=bssid
I can get

Code: Select all

SSID  : xxxxxxxxxx
    Network type            : Infrastructure
    Authentication          : WPA3-Personal
    Encryption              : CCMP
Could WiFiStatus plugin for WiFiInfoType=AUTH support WPA3 Authentication. Currently it return "???".

Unfortunately WPA3 enumeration doesn't seem to be in DOT11_AUTH_ALGORITHM (wlantypes.h), but it is in WDI_AUTH_ALGORITHM from wditypes.hpp which require min WIn10 or from dot11wificxtypes.h which require min WIn11.
User avatar
Brian
Developer
Posts: 2678
Joined: November 24th, 2011, 1:42 am
Location: Utah

Re: [Feature] WiFiStatus plugin WPA3 support

Post by Brian »

This has been added this for the next release. Thanks for the suggestion!
oZone wrote: November 19th, 2021, 10:10 pm Unfortunately WPA3 enumeration doesn't seem to be in DOT11_AUTH_ALGORITHM (wlantypes.h), but it is in WDI_AUTH_ALGORITHM from wditypes.hpp which require min WIn10 or from dot11wificxtypes.h which require min WIn11.
The WPA3 values actually are there, but MS has not documented them for some reason.

-Brian
oZone
Posts: 154
Joined: May 14th, 2018, 4:46 pm

Re: [Feature] WiFiStatus plugin WPA3 support

Post by oZone »

Cool, thank you.