You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
elf ed2fdc90b5 | 2 years ago | |
---|---|---|
.. | ||
test | 2 years ago | |
CREDITS | 2 years ago | |
INSTALL | 2 years ago | |
LICENSE | 2 years ago | |
README | 2 years ago | |
config.m4 | 2 years ago | |
config.w32 | 2 years ago | |
php_xxtea.c | 2 years ago | |
php_xxtea.dsp | 2 years ago | |
php_xxtea.h | 2 years ago | |
php_xxtea.sln | 2 years ago | |
php_xxtea.vcproj | 2 years ago | |
xxtea.c | 2 years ago | |
xxtea.h | 2 years ago |
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.