Help for this page

Select Code to Download


  1. or download this
    my $cipher = Crypt::Blowfish->new($key);
    my $buffer;
    while( read($in, $buffer, 8) ) {
       print $out $cipher->encrypt($buffer);
    }
    
  2. or download this
    my $cipher = Crypt::Blowfish->new($key);
    my $buffer;
    ...
       }
       print $out $cipher->encrypt($buffer);
    }