Help for this page

Select Code to Download


  1. or download this
    utf8::decode( my $s = $cipher->decrypt( read_str($fh) ) );
    
  2. or download this
    utf8::decode( my $s = $cipher->decrypt( decode_base64 ( read_str($fh) 
    +) ) );
    
  3. or download this
    local $/;
    utf8::decode( my $s = $cipher->decrypt( decode_base64 ( <$fh> ) ) );