in reply to Re: Crypt::CBC losing its RandomIV
in thread Crypt::CBC losing its RandomIV
and:# $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);
That got rid of the EOCD error. My app now runs as expected. Thanks for the tip!# $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);
|
|---|