Crypt::OpenSSL::Blowfish - Blowfish Algorithm using OpenSSL |
Crypt::OpenSSL::Blowfish - Blowfish Algorithm using OpenSSL
use Crypt::OpenSSL::Blowfish; my $cipher = new Crypt::OpenSSL::Blowfish $key; my $ciphertext = $cipher->encrypt($plaintext); $plaintext = $cipher->decrypt($ciphertext);
Crypt::OpenSSL::Blowfish implements the Blowfish Algorithm using functions contained in the OpenSSL crypto library. Crypt::OpenSSL::Blowfish has an interface similar to Crypt::Blowfish, but produces different result than Crypt::Blowfish.
Vitaly Kramskikh, <vkramskih@cpan.org>
Crypt::OpenSSL::Blowfish - Blowfish Algorithm using OpenSSL |