Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Random Password generator
Message
De
28/07/1999 13:05:57
 
 
À
28/07/1999 12:57:25
Greg Mccammon
Raytheon Systems Company
Lexington, Kentucky, États-Unis
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Divers
Thread ID:
00247254
Message ID:
00247263
Vues:
27
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!
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform