Crypt::TripleDES - Triple DES encyption. |
Crypt::TripleDES - Triple DES encyption.
my $des = new Crypt::TripleDES; my $cyphertext = $des->encrypt3 ( $plaintext, $passphrase ); my $plaintext = $des->decrypt3 ( $cyphertext, $passphrase );
This module implements 3DES encryption in ECB mode. The code is based on Eric Young's implementation of DES in pure perl. It's quite slow because of the way Perl handles bit operations and is not recommended for use with large texts.
Vipul Ved Prakash, mail@vipul.net Eric Young, eay@psych.psy.uq.oz.au
Patches: Jonathan Mayer <jmayer@cobaltnet.com>
Crypt::TripleDES - Triple DES encyption. |