linch f6c6844885 官网迁移初始化 hace 6 años
..
test f6c6844885 官网迁移初始化 hace 6 años
CREDITS f6c6844885 官网迁移初始化 hace 6 años
INSTALL f6c6844885 官网迁移初始化 hace 6 años
LICENSE f6c6844885 官网迁移初始化 hace 6 años
README f6c6844885 官网迁移初始化 hace 6 años
config.m4 f6c6844885 官网迁移初始化 hace 6 años
config.w32 f6c6844885 官网迁移初始化 hace 6 años
php_xxtea.c f6c6844885 官网迁移初始化 hace 6 años
php_xxtea.dsp f6c6844885 官网迁移初始化 hace 6 años
php_xxtea.h f6c6844885 官网迁移初始化 hace 6 años
php_xxtea.sln f6c6844885 官网迁移初始化 hace 6 años
php_xxtea.vcproj f6c6844885 官网迁移初始化 hace 6 años
xxtea.c f6c6844885 官网迁移初始化 hace 6 años
xxtea.h f6c6844885 官网迁移初始化 hace 6 años

README

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.