Help for this page

Select Code to Download


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