Help for this page

Select Code to Download


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