Skip to main content

XXTEA is a fast and secure encryption algorithm. This is a XXTEA library for Python. It is based on CFFI, so it is fast and support both cpython and pypy.

Project description

https://travis-ci.org/xxtea/xxtea-python.svg?branch=master https://img.shields.io/pypi/v/xxtea-py.svg https://img.shields.io/pypi/l/xxtea-py.svg https://img.shields.io/pypi/pyversions/xxtea-py.svg https://img.shields.io/pypi/implementation/xxtea-py.svg https://img.shields.io/pypi/status/xxtea-py.svg https://img.shields.io/pypi/dm/xxtea-py.svg https://img.shields.io/pypi/dw/xxtea-py.svg https://img.shields.io/pypi/dd/xxtea-py.svg

Introduction

XXTEA is a fast and secure encryption algorithm. This is a XXTEA library for Python.

It is based on CFFI, so it is fast and support both cpython and pypy.

It is different from the original XXTEA encryption algorithm. It encrypts and decrypts raw binary data instead of 32bit integer array, and the key is also the raw binary data.

Installation

pip install xxtea-py

Usage

Python2:

import xxtea
text = "Hello World! 你好,中国!"
key = "1234567890"
encrypt_data = xxtea.encrypt(text, key)
decrypt_data = xxtea.decrypt(encrypt_data, key)
print(text == decrypt_data);

Python3:

import xxtea
text = "Hello World! 你好,中国!"
key = "1234567890"
encrypt_data = xxtea.encrypt(text, key)
decrypt_data = xxtea.decrypt_utf8(encrypt_data, key)
print(text == decrypt_data);

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page