WLAN Password Generator

Screenshot
On Windows XP

The WLAN Password Generator generates pseudorandom WLAN passwords for WPA and WPA2. It should be very difficult impossible to crack these keys. Thus this program creates secure WLAN passwords. Every generated key is 32 characters long.

The WLAN Password Generator is written in Pascal and was created using Lazarus. This program is cross-platform and has been tested on these platforms:

Downloads

x86_64 Linux binary 4.5 MiB

Win32 (x86) binary 1.6 MiB

Source Code

License

GNU General Public License Version 2

Important Code

It should be easy to create a non-GUI version of this program. The important code is:

var i: Integer;
Key: String;

begin
Key := '';
for i := 1 to 32 do
begin
  if i mod (Random(3)+1) = 0 then
	 Key := Key+Chr(Random(26)+65)
  else
	 Key := Key+Chr(Random(10)+48);
end;

writeln(Key);
end.