http://qs321.pair.com?node_id=1018807


in reply to Simple Crypt::CBC Sample?

Instead of letting Crypt::CBC try and figure out a cipher on its own (where it's clearly picking 'Random' as the cipher you want to use in this case), you can specify one yourself...

my $cipher = Crypt::CBC->new( -key => $key, cipher => 'Rijndael' );

That will cause it to use Crypt::Rijndael for the cipher.

--
Andy