in reply to Re^3: line by line Encryption fun with Crypt::CBC and Rijndael? File Ownership issues? (code)
in thread line by line Encryption fun with Crypt::CBC and Rijndael? File Ownership issues?

Many thanks.
I'm off to test away...

I learn more and more about less and less until eventually I know everything about nothing.
  • Comment on Re^4: line by line Encryption fun with Crypt::CBC and Rijndael? File Ownership issues? (code)

Replies are listed 'Best First'.
Re^5: line by line Encryption fun with Crypt::CBC and Rijndael? File Ownership issues? (code)
by ikegami (Patriarch) on Dec 05, 2007 at 19:33 UTC

    Oops!
    while (!eof($FH_decrypted)) {
    should be
    while (!eof($FH_encrypted)) {
    (Fixed in original)