docbrown25 has asked for the wisdom of the Perl Monks concerning the following question:
Hello, I'm trying to encrypt a string then base64 encode it so its safe for use in a url.
Is there anyway to encrypt a string using Crypt::CBC so that each run would produce a completely different output? I get close with the following but the first 11 chars (im guessing its the random header) are always the same in my output, even though the rest of the encytped string changes.
my $key = 'somerandomkey'; my $cipher = Crypt::CBC->new( -key => $key, -header => 'randomiv', -cypher => 'Blowfish', ); my $ciphertext = $cipher->encrypt($string); my $safe_data = urlsafe_b64encode($ciphertext);
I'v also tried -header=> none with an iv and that produces the exact same result for each run.
Any help is appreciated. thanks.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Encrypt String Crypt::CBC
by gryphon (Abbot) on Jan 23, 2013 at 17:25 UTC | |
by docbrown25 (Initiate) on Jan 23, 2013 at 20:19 UTC |