in reply to Encrypt text in perl and decrypt in a windows tool
my $cipher = Crypt::CBC->new(-key => 'my secret key', -cipher => 'Blow +fish'); my $crypted = $cipher->encrypt("blarg!!"); my $text = $cipher->decrypt($crypted); # blarg
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Encrypt text in perl and decrypt in a windows tool
by asidnayak (Initiate) on Jun 10, 2010 at 14:19 UTC | |
by jettero (Monsignor) on Jun 10, 2010 at 15:15 UTC | |
by asidnayak (Initiate) on Jun 11, 2010 at 05:00 UTC |