Entering SSID and PSK password in C#

119 Views Asked by At

I have a bit of a C# conundrum.

We have an C# application that needs to set a WPA2-PSK SSID and password. The IEEE spec says that the SSID is a 32 octet value. The issue is that you can set any valid 32 byte value. Non-ascii characters can appear differently on different platforms depending on the code page used, and not all code pages can generate all possible 8 bit byte values. Ditto for password with up to 63 bytes. Since we have international customers, they could be using just about anything?

Short of having a WPF dialog that allows you to specify both display and hex characters, any suggestions on how to get these entered?

0

There are 0 best solutions below