Help for this page

Select Code to Download


  1. or download this
    # $fh_cipher->write($cipher->crypt($fh_plain->getline)) until ($fh_pla
    +in->eof);
    do {
        $fh_plain->read($buf, length($self->{SYMMKEY}));
        $fh_cipher->write($cipher->crypt($buf))
    } until ($fh_plain->eof);
    
  2. or download this
    # $fh_plain->write($cipher->crypt($fh_cipher->getline)) until ($fh_cip
    +her->eof);
    do {
        $fh_cipher->read($buf, length($self->{SYMMKEY}));
        $fh_plain->write($cipher->crypt($buf))
    } until ($fh_cipher->eof);