scandalz.net
 
 
 
BETA (Google AJAX Search)

SOAP::Passwords

This is another simple web service that makes calls to my automatic password generator and returns the values in a SOAP packet.
soap://soap.scandalz.net/scandalz::soap::Passwords
  • genStrongPassword() returns string with 10-20 random characters
  • genPronounceablePassword() returns string with a password you can pronounce 10-20 characters
package scandalz::soap::Passwords;

use Crypt::RandPasswd;
use Crypt::GeneratePassword;

my $minlen = 10;
my $maxlen = 20;

sub genStrongPassword {
	return Crypt::RandPasswd->word($minlen,$minlen);
}
sub genPronounceablePassword {
	return Crypt::GeneratePassword->word($minlen,$maxlen);
}

1;
2008 scandalz.net
If you keep anything long enough, you can throw it away.
CountryUS
IP Address38.107.191.90
User AgentCCBot/1.0 (+http://www.commoncrawl.org/bot.html)