- or download this
#!c:/perl
use Crypt::Blowfish;
...
$ciphertext = $cipher->encrypt("$pass");
print unpack ("H16",$ciphertext),"\n";
}
- or download this
#!c:/perl
use Crypt::Blowfish;
...
$ciphertext = $cipher->decrypt("$pass");
print unpack ("H16",$ciphertext),"\n";
}