Crypt::OpenSSL::Blowfish - Blowfish Algorithm using OpenSSL


NAME

Crypt::OpenSSL::Blowfish - Blowfish Algorithm using OpenSSL


SYNOPSIS

    use Crypt::OpenSSL::Blowfish;
    my $cipher = new Crypt::OpenSSL::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. Crypt::OpenSSL::Blowfish has an interface similar to Crypt::Blowfish, but produces different result than Crypt::Blowfish.


SEE ALSO

the Crypt::Blowfish manpage

http://www.openssl.org/


AUTHOR

Vitaly Kramskikh, <vkramskih@cpan.org>

 Crypt::OpenSSL::Blowfish - Blowfish Algorithm using OpenSSL