I changed servers, and copied all files over. There was no operating system change, and I make sure all the modules were installed on the new server.

Now on the new server, some clients when they login, get this message: "Argument to -salt must be exactly 8 bytes long"

The strange thing is that not all of them have that problem.

I am using Crypt::CBC, here is my subroutine:
sub decrypt { my $ciphertext = shift; my $key = "somekeyhere"; my $cipher = Crypt::CBC->new( -key => $key, -cipher => 'Blowfish', -salt => 1 ); return ($cipher->decrypt_hex ($ciphertext)); }
I would appreciate any help. I have read and re-read the docs, I ahve changed the -salt value from 1 to leaving it blank, but I'm dumbfounded about this. I cannot duplicate it because it does not happen every time, which is soooo strange.

Thank you in advance,
Rick

In reply to decryption problem by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.