Help for this page

Select Code to Download


  1. or download this
    use Crypt::CBC ();
    
    ...
    
    my $plaintext  = 'This data is hush hush';
    my $ciphertext = $cipher->encrypt($plaintext);
    
  2. or download this
    use Crypt::CBC ();
    
    ...
    
    my $ciphertext = ...;
    my $plaintext  = $cipher->decrypt($ciphertext);