├── .gitignore ├── .travis.yml ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── README.rst ├── README_zh_CN.md ├── requirements.txt ├── setup.py ├── tests └── test.py └── xxtea ├── __init__.py ├── xxtea.c └── xxtea.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxtea/xxtea-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxtea/xxtea-python/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxtea/xxtea-python/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxtea/xxtea-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxtea/xxtea-python/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxtea/xxtea-python/HEAD/README.rst -------------------------------------------------------------------------------- /README_zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxtea/xxtea-python/HEAD/README_zh_CN.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | cffi 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxtea/xxtea-python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxtea/xxtea-python/HEAD/tests/test.py -------------------------------------------------------------------------------- /xxtea/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxtea/xxtea-python/HEAD/xxtea/__init__.py -------------------------------------------------------------------------------- /xxtea/xxtea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxtea/xxtea-python/HEAD/xxtea/xxtea.c -------------------------------------------------------------------------------- /xxtea/xxtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxtea/xxtea-python/HEAD/xxtea/xxtea.h --------------------------------------------------------------------------------