Name Last Update
..
test Loading commit data...
CREDITS Loading commit data...
INSTALL Loading commit data...
LICENSE Loading commit data...
README Loading commit data...
config.m4 Loading commit data...
config.w32 Loading commit data...
php_xxtea.c Loading commit data...
php_xxtea.dsp Loading commit data...
php_xxtea.h Loading commit data...
php_xxtea.sln Loading commit data...
php_xxtea.vcproj Loading commit data...
xxtea.c Loading commit data...
xxtea.h Loading commit data...
XXTEA PHP extension

What is it?
-----------------------------------------------
This extension based on xxtea library, which provides a set of functions
for encrypt or decrypt data with XXTEA algorithm.



How to install it?
-----------------------------------------------
See INSTALL for installation instructions.



How to use it?
-----------------------------------------------
string xxtea_encrypt(string data, string key)

Encrypt data using XXTEA algorithm. The key is a 16 bytes(128 bits) string.

string xxtea_decrypt(string data, string key)

Decrypt data using XXTEA algorithm. The key is a 16 bytes(128 bits) string.

string xxtea_info()

Get the version information.