in reply to File Encryption
use Crypt::Blowfish; my $cipher = new Crypt::Blowfish $key; my $ciphertext = $cipher->encrypt($plaintext); my $plaintext = $cipher->decrypt($ciphertext);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: File Encryption
by Anonymous Monk on Dec 15, 2008 at 19:09 UTC |