in reply to Crypt::CBC how does the header/salt work?
this gives you a random encrypt_hex result with every run because the header isn't included.my $cipher = Crypt::CBC->new( -cipher => 'Blowfish', -key => "blahblahblah", -iv => "01234567", -header => 'none' );
|
|---|