Help for this page

Select Code to Download


  1. or download this
    #! /usr/bin/perl
     use Crypt::CBC;
    ...
          print $cipher->crypt($buffer);
      }
    close STDOUT;
    
  2. or download this
    $cipher->start('decrypting');
    open(F,"./crypt_file");
      while (read(F,$buffer,1024)) {
          print $cipher->crypt($buffer);
      }