in reply to CipherTextI
I think that cryptography will join CGI as "modules to not reinvent" as far as I'm concerned.use Crypt::CBC; $cipher = new Crypt::CBC ($key, 'Twofish'); undef $/; $plaintext = <PLAINTEXT>; print CIPHERTEXT $cipher->encrypt($plaintext);
|
|---|