Help for this page

Select Code to Download


  1. or download this
        my $cipher = Crypt::CBC->new(
            -key => $pass,
            -cipher => 'Blowfish',
            -header => 'randomiv'
        );
    
  2. or download this
        my $ciphertext = $cipher->encrypt_hex($plaintext);
        my $text = $cipher->decrypt_hex($ciphertext);