creating a random, pronounceable password

chris (2004-05-12 16:04:57)
1223 views
0 replies
first install the Crypt::RandomPassword module, and then try this script, which will create a random password with between 5 and 12 characters:
#!/usr/bin/perl

use Crypt::RandPasswd;
$word = Crypt::RandPasswd->word( 5, 12);
printf "n$wordn";

christo
Digg it! Submit to Slashdot Add to Blinklist Del.icio.us Add to Newsvine Add to Technorati Add it to Google Bookmarks Add to Magnolia
comment