Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: (ichimunki) Re: Crypt::TripleDES decrypting problem

by sparkyichi (Deacon)
on Jan 10, 2002 at 20:37 UTC ( [id://137754]=note: print w/replies, xml ) Need Help??


in reply to (ichimunki) Re: Crypt::TripleDES decrypting problem
in thread Crypt::TripleDES decrypting problem

I dropped the @file and worked directly with the file. I still have the same problem.
while (<INPUT>){ my $plaintext = $des->decrypt3 ( $_, $passcode ); print OUTPUT "$plaintext"; }
Sparky

Replies are listed 'Best First'.
(ichimunki) Re x 3: Crypt::TripleDES decrypting problem
by ichimunki (Priest) on Jan 10, 2002 at 21:19 UTC
    I think that's odd. It should be able to accept those \n-delimited records as unique bits, and you appeared to be storing them again as \n delimited records. Which means that maybe \n is not a reliable separator for whatever reason. Have you tried concatenating all of the records in the plaintext file before encrypting (i.e. keep the \n in there, just simply slurp the file into a scalar) and then decrypting that ciphertext as a single blob as well?
      I took chomp out completely and removed the \n from the print statements. I even cleaned up the source file some, making sure that there was no extra long lines or anything like that. Still the same thing, although it is not dying in the same place after I make a change. This is looking more and more like a buffering problem in the module. It works fine on one liners.
      Sparky

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://137754]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (4)
As of 2024-04-23 19:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found