Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

xxtea-py

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

xxtea-py

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.

  • 1.0.3
  • PyPI
  • Socket score

Maintainers
1

XXTEA for Python

.. image:: https://travis-ci.org/xxtea/xxtea-python.svg?branch=master :target: https://travis-ci.org/xxtea/xxtea-python

.. image:: https://img.shields.io/pypi/v/xxtea-py.svg :target: https://pypi.python.org/pypi/xxtea-py

.. image:: https://img.shields.io/pypi/l/xxtea-py.svg :target: https://pypi.python.org/pypi/xxtea-py

.. image:: https://img.shields.io/pypi/pyversions/xxtea-py.svg :target: https://pypi.python.org/pypi/xxtea-py

.. image:: https://img.shields.io/pypi/implementation/xxtea-py.svg :target: https://pypi.python.org/pypi/xxtea-py

.. image:: https://img.shields.io/pypi/status/xxtea-py.svg :target: https://pypi.python.org/pypi/xxtea-py

.. image:: https://img.shields.io/pypi/dm/xxtea-py.svg :target: https://pypi.python.org/pypi/xxtea-py

.. image:: https://img.shields.io/pypi/dw/xxtea-py.svg :target: https://pypi.python.org/pypi/xxtea-py

.. image:: https://img.shields.io/pypi/dd/xxtea-py.svg :target: https://pypi.python.org/pypi/xxtea-py

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:

.. code-block:: python

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:

.. code-block:: python

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);

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc