Help for this page

Select Code to Download


  1. or download this
        return &str2ascii( &binary2str(@cblocks) );
    
  2. or download this
    use Crypt::Tea qw(ascii2str);
    
    ...
    my $str = ascii2str($encrypted_ascii);
    # now convert to hex:
    my $hex = unpack "H*", $str;