- Generating a key for WPA-PSK
- Posted by Peter Crosland on March 2nd, 2004
Rather than use a phrase I should like to generate a 40 digit random key for
my laptop/router connection. Can anyone tell me of a site that might do this
or do I have to reinvent the wheel?
g6jns@spamcop.net
- Posted by Anton Gysen on March 3rd, 2004
Peter Crosland wrote:
Excel or any other spreadsheet will let you generate a random number.
Nowhere near as good as a combination of random letters, numbers, and
characters, but it's better than the average password people use.
Alternatively, why not get a random string of letters from something
like a PGP encrypted message.
Just a thought!
- Posted by Colin Wilson on March 3rd, 2004
If you have access to qbasic, just write a quick program to do the job
for you...
--
Please add "[newsgroup]" in the subject of any personal replies via email
* old email address "btiruseless" abandoned due to worm-generated spam *
--- My new email address has "ngspamtrap" & @btinternet.com in it ;-) ---
- Posted by Peter Crosland on March 3rd, 2004
Good thinking! Thank you.
- Posted by Olly on March 3rd, 2004
Try this: http://www.ollynet.com/RandomKeyGen.xls
--
Olly
"Peter Crosland" <g6jns@spamcop.net> wrote in message
news:cLh1c.16992$Y%6.1528257@wards.force9.net...
- Posted by Peter Crosland on March 3rd, 2004
I appreciate the offer Olly but will decline since I have no way of knowing
if the file is authentic or not.
- Posted by Olly on March 3rd, 2004
Okay - all it contains is the following VBA function:
--------------------------------
Public Function RandomKey(Length As Integer)
Dim i As Integer
RandomKey = ""
For i = 1 To Length
RandomKey = RandomKey & Chr(Int((122 - 49) * Rnd + 48))
Next i
End Function
--------------------------------
Then you can use the function "=randomkey(40)" in a worksheet to generate a
random 40 character key.
--
Olly
"Peter Crosland" <g6jns@spamcop.net> wrote in message
news:zuk1c.14676$h44.1578367@stones.force9.net...
- Posted by Peter Crosland on March 3rd, 2004
Thanks.
--
g6jns@spamcop.net
- Posted by Simon Zerafa on March 6th, 2004
Hi,
Try here (initally found via Google)
http://www.warewolflabs.com/portfoli...kg/wepskg.html
Kind Regards
Zed
--