WPA Key Generation

  • Thread starter Thread starter Harry Simpson
  • Start date Start date
H

Harry Simpson

I need code to generate a WPA key in HEX format and 64 hex characters in
length that is derived from the ESSID and the Passphrase.

Example key based on an ESSID or "testnet" and passphrase of "12345678"
should generate
53677F1A61953A2380243995BB9CA16310EEBAD7F20382AAB03E5756C90705CD

I've been googling til I drop and nothing but online generators. I need to
do this in code.

TIA
Harry
 
I need code to generate a WPA key in HEX format and 64 hex characters in
length that is derived from the ESSID and the Passphrase.

Example key based on an ESSID or "testnet" and passphrase of "12345678"
should generate
53677F1A61953A2380243995BB9CA16310EEBAD7F20382AAB03E5756C90705CD

I've been googling til I drop and nothing but online generators.  I needto
do this in code.

TIA
Harry

Not WPA, but can be manipulated in a similar way of WEP algorithm;

http://www.codeproject.com/KB/security/wepkey_generator.aspx
 
Really need the WPA generator using ESSID and passphrase to generate the 64
hex character key


I need code to generate a WPA key in HEX format and 64 hex characters in
length that is derived from the ESSID and the Passphrase.

Example key based on an ESSID or "testnet" and passphrase of "12345678"
should generate
53677F1A61953A2380243995BB9CA16310EEBAD7F20382AAB03E5756C90705CD

I've been googling til I drop and nothing but online generators. I need to
do this in code.

TIA
Harry

Not WPA, but can be manipulated in a similar way of WEP algorithm;

http://www.codeproject.com/KB/security/wepkey_generator.aspx
 
Back
Top