powerhouse has asked for the wisdom of the Perl Monks concerning the following question:
Here is that subroutine that has that line:Software error: Cipher stream did not contain IV or salt, and you did not specify thes +e values in new() at /home/##username##/public_html/vars.cgi line 425
Do you see what it is talking about by Salt or IV?sub decryptData { my $ciphertext = shift; my $key = "Some Key Here, but Not Shown Here for several purposes"; my $cipher = Crypt::CBC->new ($key, "Blowfish"); # This is line 425 return ($cipher->decrypt_hex ($ciphertext)); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Perl and Crypt::CBC question
by jimbojones (Friar) on Jan 10, 2006 at 03:49 UTC | |
|
Re: Perl and Crypt::CBC question
by McDarren (Abbot) on Jan 10, 2006 at 03:15 UTC |