bNathan has asked for the wisdom of the Perl Monks concerning the following question:
My server updated Perl to v5.8.8 and CBC Crypt modules and now my scripts get this
Ciphertext does not begin with a valid header for 'salt' header mode
Here is my codemy $key = 'mysecretkey16384';
my $cipher = new Crypt::CBC($key,'Rijndael_PP');
my $plaintext = $cipher->decrypt_hex($code);
my ($uid,$pwd, $expire, $sessionExpire, $item) = split( /\|/, $plaintext);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Ciphertext does not begin with a valid header for 'salt' header mode at...
by Athanasius (Archbishop) on Feb 08, 2017 at 06:19 UTC |