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

NAME

Crypt::XXTEA::CImpl - Perl extension for encryption arithmetic module.

SYNOPSIS

        use Crypt::XXTEA::CImpl qw(
                xxtea_decrypt
                xxtea_encrypt
        );
        $crypted = xxtea_encrypt($message,$key);
        $message = xxtea_decrypt($crypted,$key);

DESCRIPTION

XXTEA is a secure and fast encryption algorithm. It's suitable for web development. This module allows you to encrypt or decrypt a string using the algorithm.

EXPORT

None by default.

SEE ALSO

AUTHOR

Ildar Efremov, <iefremov@2reallife.com<gt>

COPYRIGHT AND LICENSE

Copyright (C) 2010 by Ildar Efremov

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