Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Random Password generator
Message
From
28/07/1999 13:05:57
 
 
To
28/07/1999 12:57:25
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00247254
Message ID:
00247263
Views:
24
If you don't want "real" words, then you can do it with the rand() function.
mypassword = ''
for x = 1 to 8
    mypassword = mypassword + chr(65 + int(rand()*26))
next
* mypassword might not be unique, you better double check and re-call the routine if its not.

or something like that. For real words, choose a bunch of words that are 1/2 or less than the total possible length and slap them into a table. Then generate a random number a couple of times to use as a record number.

>We have to change all passwords for several applications. Does anyone know where I might find an easy password generator to do this?
>
>Thanks
--Todd Sherman
-Wake Up! Smell the Coffee!
Previous
Reply
Map
View

Click here to load this message in the networking platform