The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Crypt::Rijndael::MySQL - MySQL compatible Rijndael (AES) encryption module

SYNOPSIS

    use Crypt::Rijndael::MySQL;
  
    $cipher = Crypt::Rijndael::MySQL->new($key, $mode);
    $crypted = $cipher->encrypt($plaintext);
    $plaintext = $cipher->decrypt($crypted);

DESCRIPTION

This module is a thin wrapper around Crypt::Rijndael, meant for compatibility with MySQL AES_ENCRYPT() AND AES_DECRYPT() functions.

SEE ALSO

Crypt::Rijndael, http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html

AUTHOR

Ivan Fomichev, <ifomichev@cpan.org>

COPYRIGHT AND LICENSE

Copyright (C) 2010 by Ivan Fomichev

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.10.0 or, at your option, any later version of Perl 5 you may have available.