search for: efvjnyjsuvxlc0nxpuqhkdjhjydzywx0

Displaying 1 result from an estimated 1 matches for "efvjnyjsuvxlc0nxpuqhkdjhjydzywx0".

2008 Mar 08
2
dovecotpw
Hi I would like to simulate dovecot's dovecotpw with a perl script I tried / used use Crypt::SaltedHash; my $csh = Crypt::SaltedHash->new(algorithm => 'SHA-1'); $csh->add($passwd_string); my $salted = $csh->generate; also use Digest::SHA1; use MIME::Base64; $ctx = Digest::SHA1->new; $ctx->add($passwd_string); $ctx->add('salt'); my $salted =