NAME
Crypt::OpenSSL::Blowfish - Blowfish Algorithm using OpenSSL
SYNOPSIS
use Crypt::OpenSSL::Blowfish;
my $cipher = new Crypt::Blowfish $key;
my $ciphertext = $cipher->encrypt($plaintext);
$plaintext = $cipher->decrypt($ciphertext);
DESCRIPTION
Crypt::OpenSSL::Blowfish implements the Blowfish Algorithm using functions contained in the OpenSSL crypto library. It produces different result than Crypt::Blowfish.
SEE ALSO
Crypt::Blowfish http://www.openssl.org/
AUTHOR
Vitaly Kramskikh, <vkramskih@cpan.org>