Networking Forums

Networking Forums > Computer Networking > Broadband > Generating a key for WPA-PSK

Reply
Thread Tools Display Modes

Generating a key for WPA-PSK

 
 
Peter Crosland
Guest
Posts: n/a

 
      03-02-2004, 10:16 PM
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?

(E-Mail Removed)


 
Reply With Quote
 
 
 
 
Anton Gysen
Guest
Posts: n/a

 
      03-03-2004, 02:27 AM
Peter Crosland wrote:
> 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?
>
> (E-Mail Removed)


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!
 
Reply With Quote
 
Colin Wilson
Guest
Posts: n/a

 
      03-03-2004, 07:10 AM
> 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?


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 ;-) ---
 
Reply With Quote
 
Peter Crosland
Guest
Posts: n/a

 
      03-03-2004, 08:38 AM
> 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.


Good thinking! Thank you.


 
Reply With Quote
 
Olly
Guest
Posts: n/a

 
      03-03-2004, 09:24 AM
Try this: http://www.ollynet.com/RandomKeyGen.xls

--
Olly


"Peter Crosland" <(E-Mail Removed)> wrote in message
news:cLh1c.16992$Y%(E-Mail Removed)...
> > 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.

>
> Good thinking! Thank you.
>
>



 
Reply With Quote
 
Peter Crosland
Guest
Posts: n/a

 
      03-03-2004, 11:50 AM
> Try this: http://www.ollynet.com/RandomKeyGen.xls
>
> --
> Olly


I appreciate the offer Olly but will decline since I have no way of knowing
if the file is authentic or not.



 
Reply With Quote
 
Olly
Guest
Posts: n/a

 
      03-03-2004, 03:33 PM
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" <(E-Mail Removed)> wrote in message
news:zuk1c.14676$(E-Mail Removed)...
> > Try this: http://www.ollynet.com/RandomKeyGen.xls
> >
> > --
> > Olly

>
> I appreciate the offer Olly but will decline since I have no way of

knowing
> if the file is authentic or not.
>



 
Reply With Quote
 
Peter Crosland
Guest
Posts: n/a

 
      03-03-2004, 07:33 PM
Thanks.

--
(E-Mail Removed)


 
Reply With Quote
 
Simon Zerafa
Guest
Posts: n/a

 
      03-06-2004, 11:03 AM
Hi,

Try here (initally found via Google)

http://www.warewolflabs.com/portfoli...kg/wepskg.html

Kind Regards

Zed
--


 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Generating traffic at a specified bitrate Spoon Linux Networking 1 08-30-2007 05:02 PM
Generating jumbo frames ksriram29@gmail.com Linux Networking 0 02-10-2007 10:59 AM
Not generating IP address GreatEastern Wireless Networks 0 02-15-2006 10:29 AM
What do u think about this random key generating website? Go Tyler Wireless Internet 1 12-18-2005 03:58 PM
generating a ssh key without ssh-keygen Abi Linux Networking 7 01-13-2004 03:54 PM



1 2 3 4 5 6 7 8 9 10 11