Skip to main content

xxtea is a simple block cipher

Project description

XXTEA implemented as a Python extension module, licensed under 2-clause BSD.

The XXTEA algorithm takes a 128-bit key and operates on an array of 32-bit integers (at least 2 integers), but it doesn’t define the conversions between bytes and array. Due to this reason, many XXTEA implementations out there are not compatible with each other.

In this implementation, the conversions between bytes and array are taken care of by longs2bytes and bytes2longs. PKCS#7 padding is also used to make sure that the input bytes are padded to multiple of 4-byte (the size of a 32-bit integer) and at least 8-byte long (the size of two 32-bit integer, which is required by the XXTEA algorithm). As a result of these measures, you can encrypt not only texts, but also any binary bytes of any length.

Installation

$ pip install xxtea -U

Usage

This module provides four functions: encrypt(), decrypt(), encrypt_hex(), and decrypt_hex().

>>> import os
>>> import xxtea
>>> import binascii
>>>
>>> key = os.urandom(16)  # Key must be a 16-byte string.
>>> s = b"xxtea is good"
>>>
>>> enc = xxtea.encrypt(s, key)
>>> dec = xxtea.decrypt(enc, key)
>>> s == dec
True
>>>
>>> hexenc = xxtea.encrypt_hex(s, key)
>>> hexenc
b'7ad85672d770fb5cf636c49d57e732ae'
>>> s == xxtea.decrypt_hex(hexenc, key)
True
>>>
>>> binascii.hexlify(enc) == hexenc
True

encrypt_hex() and decrypt_hex() operate on ciphertext in a hexadecimal representation. They are exactly equivalent to:

>>> hexenc = binascii.hexlify(xxtea.encrypt(s, key))
>>> s == xxtea.decrypt(binascii.unhexlify(hexenc), key)
True

Padding

Padding is enabled by default, in this case you can encode any bytes of any length.

>>> xxtea.encrypt_hex('', key)
b'd63256eb59134f1f'
>>> xxtea.decrypt_hex(_, key)
b''
>>> xxtea.encrypt_hex(' ', key)
b'97009bd24074a7a5'
>>> xxtea.decrypt_hex(_, key)
b' '

You can disable padding by setting padding parameter to False. In this case data will not be padded, so data length must be a multiple of 4 bytes and must not be less than 8 bytes. Otherwise ValueError will be raised:

>>> xxtea.encrypt_hex('', key, padding=False)
ValueError: Data length must be a multiple of 4 bytes and must not be less than 8 bytes
>>> xxtea.encrypt_hex('xxtea is good', key, padding=False)
ValueError: Data length must be a multiple of 4 bytes and must not be less than 8 bytes
>>> xxtea.encrypt_hex('12345678', key, padding=False)
b'64f4e969ba90d386'
>>> xxtea.decrypt_hex(_, key, padding=False)
b'12345678'

Rounds

By default xxtea manipulates the input data for 6 + 52 / n rounds, where n denotes how many 32-bit integers the input data can fit in. We can change this by setting rounds parameter.

Do note that the more rounds it is, the more time will be consumed.

>>> import xxtea
>>> import string
>>> data = string.digits
>>> key = string.ascii_letters[:16]
>>> xxtea.encrypt_hex(data, key)
b'5b80b08a5d1923e4cd992dd5'
>>> 6 + 52 // ((len(data) + (4 - 1)) // 4)  # 4 means 4 bytes, size of a 32-bit integer
23
>>> xxtea.encrypt_hex(data, key, rounds=23)
b'5b80b08a5d1923e4cd992dd5'
>>> xxtea.encrypt_hex(data, key, rounds=1024)
b'1577bbf28c43ced93bd50720'

Catching Exceptions

When calling decrypt() and decrypt_hex(), it is possible that a ValueError or a TypeError is raised:

>>> from __future__ import print_function
>>> import xxtea
>>>
>>> def try_catch(func, *args, **kwargs):
...     try:
...         func(*args, **kwargs)
...     except Exception as e:
...         print(e.__class__.__name__, ':', e)
...
...
...
>>> try_catch(xxtea.decrypt, '', key='')
ValueError : Need a 16-byte key.
>>> try_catch(xxtea.decrypt, '', key=' '*16)
ValueError : Invalid data, data length is not a multiple of 4, or less than 8.
>>> try_catch(xxtea.decrypt, ' '*8, key=' '*16)
ValueError : Invalid data, illegal PKCS#7 padding. Could be using a wrong key.
>>> try_catch(xxtea.decrypt_hex, ' '*8, key=' '*16)
TypeError : Non-hexadecimal digit found
>>> try_catch(xxtea.decrypt_hex, 'abc', key=' '*16)
TypeError : Odd-length string
>>> try_catch(xxtea.decrypt_hex, 'abcd', key=' '*16)
ValueError : Invalid data, data length is not a multiple of 4, or less than 8.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

xxtea-2.0.0.post0.tar.gz (7.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

xxtea-2.0.0.post0-pp36-pypy36_pp73-win32.whl (17.1 kB view details)

Uploaded PyPyWindows x86

xxtea-2.0.0.post0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (11.1 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

xxtea-2.0.0.post0-pp27-pypy_73-win32.whl (15.8 kB view details)

Uploaded PyPyWindows x86

xxtea-2.0.0.post0-pp27-pypy_73-manylinux2010_x86_64.whl (11.0 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

xxtea-2.0.0.post0-cp38-cp38-win_amd64.whl (11.9 kB view details)

Uploaded CPython 3.8Windows x86-64

xxtea-2.0.0.post0-cp38-cp38-win32.whl (10.8 kB view details)

Uploaded CPython 3.8Windows x86

xxtea-2.0.0.post0-cp38-cp38-manylinux2010_x86_64.whl (28.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

xxtea-2.0.0.post0-cp38-cp38-manylinux2010_i686.whl (24.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

xxtea-2.0.0.post0-cp38-cp38-manylinux1_x86_64.whl (28.5 kB view details)

Uploaded CPython 3.8

xxtea-2.0.0.post0-cp38-cp38-manylinux1_i686.whl (24.3 kB view details)

Uploaded CPython 3.8

xxtea-2.0.0.post0-cp38-cp38-macosx_10_9_x86_64.whl (8.7 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

xxtea-2.0.0.post0-cp37-cp37m-win_amd64.whl (11.8 kB view details)

Uploaded CPython 3.7mWindows x86-64

xxtea-2.0.0.post0-cp37-cp37m-win32.whl (10.7 kB view details)

Uploaded CPython 3.7mWindows x86

xxtea-2.0.0.post0-cp37-cp37m-manylinux2010_x86_64.whl (29.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

xxtea-2.0.0.post0-cp37-cp37m-manylinux2010_i686.whl (25.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

xxtea-2.0.0.post0-cp37-cp37m-manylinux1_x86_64.whl (29.1 kB view details)

Uploaded CPython 3.7m

xxtea-2.0.0.post0-cp37-cp37m-manylinux1_i686.whl (25.0 kB view details)

Uploaded CPython 3.7m

xxtea-2.0.0.post0-cp37-cp37m-macosx_10_6_intel.whl (12.4 kB view details)

Uploaded CPython 3.7mmacOS 10.6+ Intel (x86-64, i386)

xxtea-2.0.0.post0-cp36-cp36m-win_amd64.whl (11.8 kB view details)

Uploaded CPython 3.6mWindows x86-64

xxtea-2.0.0.post0-cp36-cp36m-win32.whl (10.7 kB view details)

Uploaded CPython 3.6mWindows x86

xxtea-2.0.0.post0-cp36-cp36m-manylinux2010_x86_64.whl (28.2 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

xxtea-2.0.0.post0-cp36-cp36m-manylinux2010_i686.whl (24.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

xxtea-2.0.0.post0-cp36-cp36m-manylinux1_x86_64.whl (28.2 kB view details)

Uploaded CPython 3.6m

xxtea-2.0.0.post0-cp36-cp36m-manylinux1_i686.whl (24.1 kB view details)

Uploaded CPython 3.6m

xxtea-2.0.0.post0-cp36-cp36m-macosx_10_6_intel.whl (12.4 kB view details)

Uploaded CPython 3.6mmacOS 10.6+ Intel (x86-64, i386)

xxtea-2.0.0.post0-cp35-cp35m-win_amd64.whl (11.8 kB view details)

Uploaded CPython 3.5mWindows x86-64

xxtea-2.0.0.post0-cp35-cp35m-win32.whl (10.7 kB view details)

Uploaded CPython 3.5mWindows x86

xxtea-2.0.0.post0-cp35-cp35m-manylinux2010_x86_64.whl (27.9 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

xxtea-2.0.0.post0-cp35-cp35m-manylinux2010_i686.whl (23.8 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

xxtea-2.0.0.post0-cp35-cp35m-manylinux1_x86_64.whl (27.9 kB view details)

Uploaded CPython 3.5m

xxtea-2.0.0.post0-cp35-cp35m-manylinux1_i686.whl (23.8 kB view details)

Uploaded CPython 3.5m

xxtea-2.0.0.post0-cp35-cp35m-macosx_10_6_intel.whl (12.4 kB view details)

Uploaded CPython 3.5mmacOS 10.6+ Intel (x86-64, i386)

xxtea-2.0.0.post0-cp27-cp27mu-manylinux2010_x86_64.whl (26.6 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

xxtea-2.0.0.post0-cp27-cp27mu-manylinux2010_i686.whl (22.5 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

xxtea-2.0.0.post0-cp27-cp27mu-manylinux1_x86_64.whl (26.6 kB view details)

Uploaded CPython 2.7mu

xxtea-2.0.0.post0-cp27-cp27mu-manylinux1_i686.whl (22.5 kB view details)

Uploaded CPython 2.7mu

xxtea-2.0.0.post0-cp27-cp27m-win_amd64.whl (9.5 kB view details)

Uploaded CPython 2.7mWindows x86-64

xxtea-2.0.0.post0-cp27-cp27m-win32.whl (9.4 kB view details)

Uploaded CPython 2.7mWindows x86

xxtea-2.0.0.post0-cp27-cp27m-manylinux2010_x86_64.whl (26.6 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

xxtea-2.0.0.post0-cp27-cp27m-manylinux2010_i686.whl (22.5 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

xxtea-2.0.0.post0-cp27-cp27m-manylinux1_x86_64.whl (26.6 kB view details)

Uploaded CPython 2.7m

xxtea-2.0.0.post0-cp27-cp27m-manylinux1_i686.whl (22.5 kB view details)

Uploaded CPython 2.7m

xxtea-2.0.0.post0-cp27-cp27m-macosx_10_6_intel.whl (12.4 kB view details)

Uploaded CPython 2.7mmacOS 10.6+ Intel (x86-64, i386)

File details

Details for the file xxtea-2.0.0.post0.tar.gz.

File metadata

  • Download URL: xxtea-2.0.0.post0.tar.gz
  • Upload date:
  • Size: 7.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0.tar.gz
Algorithm Hash digest
SHA256 f3463a9c7fb3458514a85128014a83861546817e3c52f8cc0102f6538f575cd6
MD5 9c359ab459b09ff779c74e9f79ee6284
BLAKE2b-256 7df209a9256819d920e104fbf45bb105433bd6f4f0ba8703c027aaeb03c8b0df

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-pp36-pypy36_pp73-win32.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 17.1 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for xxtea-2.0.0.post0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 b8480b8edc332ae62d1f55d38f6c9f2a69904a06377f88948f302edb08338fd2
MD5 c4af98948757b2600368f7c1b70c179a
BLAKE2b-256 aad22a2570a6906378aff3ac2c36412a8c70c7c750a35cb0cf8c6ef323554f65

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 11.1 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e83ba7f523beda5996e640ad0f4d182ceb4532e2069d984c0e3efb0e63b06cce
MD5 51d384b4f2d32bcafc81ed8b16174668
BLAKE2b-256 b7514c9724b52a2eb8daddc803c30a8c27996df1edf71299dce98c6968d04ff6

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-pp36-pypy36_pp73-manylinux1_x86_64.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-pp36-pypy36_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 11.1 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a95b96cd47ebcf5b1c9dd4dd5cd5d43eed206fb4e817cfb409b4bcdc4d502c19
MD5 dc9fc81141d4ac0504d2bae4933947d2
BLAKE2b-256 66f326cd3e30914307324be95e706658825646266114694d086374251dc71afb

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-pp27-pypy_73-win32.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-pp27-pypy_73-win32.whl
  • Upload date:
  • Size: 15.8 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for xxtea-2.0.0.post0-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 b12cb1a6c4d22da297c986325197ad1b609c24c74bc3cd01b506ae64ff8477a9
MD5 2f3481161c1284cc75fb61c01709506c
BLAKE2b-256 faab5443c529785067573ec4719fe2d23b611b8f55c05eaa2c14dd21067a4a0c

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-pp27-pypy_73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 11.0 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 aa042d1b81eaf160bdfcfd00f86ffc65757e2a41720a1153d7c713fd301680e6
MD5 291659b19e613e9bb237c8ab1e6b0442
BLAKE2b-256 6e939fc2a3011ff80a4217676aca0e50b22ee9320eae36aacb7c05c5aecb2ec7

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-pp27-pypy_73-manylinux1_x86_64.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-pp27-pypy_73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 11.0 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a346648fadaffd5ffe1a9f7c4a3e6a84965a0200a7aa186c9a8f6bfb809ea244
MD5 23b702f5868f6c4d4602fd0f78d37405
BLAKE2b-256 f525a40ea169850cc164b51fdb6a5e7e242dcded1e9d942c40ec2b03fcfa38e4

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 11.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for xxtea-2.0.0.post0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9dfea8c0cc88bb98368ba64ecf88444c80f6d1228a4439153679ea313255686f
MD5 20d956d84018b5d5b68cc3f4ad4744cb
BLAKE2b-256 02f129b5a6ad1ccbaeeeb562516b01319ea50de5425f87db211b5e7fd555615c

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp38-cp38-win32.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 10.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for xxtea-2.0.0.post0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 dda4ef19fbede72b74d63d57e005fcf0a9d72f2616f336bf6ddece6a38d8226d
MD5 f70ce25b92175c760f1c1d605c976f6c
BLAKE2b-256 16859c5f9161314d833c3c7ea5ba49cc1e6b35c7e8110bde2bc003d60b6c68ac

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 28.5 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 05a7a7595f841e257d9db4714289c69ee929126903c61dcbb342f869e4273c62
MD5 8d328a44407415abf79108098e2bfeb3
BLAKE2b-256 a4e691f8dfce6447f913e3a521c8374da112bac69518cae41da3f16020338fd1

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 24.4 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0d741180908c81f78a3fba91e64961a09cd78f4c51874d70fe3f76faa723bd17
MD5 a1a875b37f2067363a6522abe73bcef2
BLAKE2b-256 96d00cccf9f36673e2001ed3072fd1da6e966bdf6d1bdcd67366960c4f4b0433

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 28.5 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 61525b49f8f320bb2afab702522319f4b242be07d2517f20a9176d85b616c42f
MD5 31b9e13da920ae52b9b5453bc5e37c92
BLAKE2b-256 13b0b75520c5ec1c966e950e0533013ff060aeddce5c99e41319b74c12daaeb3

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 24.3 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2b3675955874b3ef99fa00f4cb92a448d2e846dde7e289e51f141fc976de04a2
MD5 e8a6da160c100377e366322732cf64ff
BLAKE2b-256 90f9d8178929d14794b899b8ae34b4975ab331ac1f0979ff5ffbfa3b6f8f294c

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 8.7 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/2.7.17

File hashes

Hashes for xxtea-2.0.0.post0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9708071867220a3e33605d3278d1a8b0c8ee1e2ec54af723c835fccfac20070b
MD5 77599e67630d70eadb32f394b1396e09
BLAKE2b-256 4768d0ae579fc4c6430ef9de6686e8ecaca2ffc69e9718f8badadf64538f3cf2

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 11.8 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for xxtea-2.0.0.post0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ff62b560ae186cc2d29e56a5de9b054e17aeb9990849ed5aee0e74fd11dda827
MD5 155dfc6fbf1d12672af44a4528150b26
BLAKE2b-256 ab4232226ecaa44ef1e8efa769a79c3ef6e7e2a0397d3161cb2793dd0b60a843

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 10.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for xxtea-2.0.0.post0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b264db8ae9ed4fbfcf2f597c287783900b51da7170e2d2d3ef6ee242c6ebecf8
MD5 62963518c8c9f3dacb0e3ffd644f954c
BLAKE2b-256 b845b2b0674f9213aea93bc260e9ce8a0174b9e78ebecda013f4db6ffb26fa12

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 29.1 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0b9fd82a518abf0eb35817d8dffc615321c5f49ef3f32af9c13ecc049ae813a8
MD5 d7a124f4b22153ca060d62097adcfd31
BLAKE2b-256 dd15e027cd24859d85f2db4f3a0ddd4b557bd3600cbb20c1f5cf2599d5cc8158

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 25.0 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5251c415cdaee06fd9947eb589aa1cb8a884f696be618a974a47061f160f41a0
MD5 89e5caa2dcc5928cd9f994ada6e6c99f
BLAKE2b-256 8f70552cd2a3b2869a474d810ad526420df34ae6f09ff449b4934eeeefa75b82

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 29.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0a2e9bc4394c497fb90fd9bfd709a4db378ccc2f486111654f40dd1595cce611
MD5 9b2930af3c03ee0519f070082053ce80
BLAKE2b-256 179b2a21e8e47a8f4393023f2137e1b8ee98b5d1559cbad7a3ecbd1a4f0197e8

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 25.0 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 63899f30fa1eee89324e6b0d0bea8ddfca64b4760d6154e9150fd423bd7a0301
MD5 b80f409cfc2833e3b52a5fe51f654e3a
BLAKE2b-256 b723a53add01e2c29ecc8305529105e49e06b5fc40f15480cda49c3da2cb6247

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp37-cp37m-macosx_10_6_intel.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp37-cp37m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 12.4 kB
  • Tags: CPython 3.7m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/2.7.17

File hashes

Hashes for xxtea-2.0.0.post0-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 4d06a0bf4f9c46e23a0426e30a6019e18fe1d4b76c21041c5250f76ec8591940
MD5 2e111a4baf002a9b98f17b464ef0f664
BLAKE2b-256 b1d6411c51011b1c9a6054f84304859f65f345246989f64ace4c7652b0ad5f8a

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 11.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for xxtea-2.0.0.post0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f781490a7e94325e1dda43714d90e96544bbe2888583805a7c510af60b666709
MD5 7ad8222fa5ce559628ba516efa1d9946
BLAKE2b-256 b3dfc304222a61dff1b622de9aa3838bba76da4ac3084d7ed29e77f6e83d9c59

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 10.7 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for xxtea-2.0.0.post0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ef3a6220ac5ef33370f75889cb40de421a6c0258df1cda3910a54aca326f28e4
MD5 000ba6e6b57cfdfa215642c819248437
BLAKE2b-256 75f8cbf8019473d2e6d86dddd5244bca67d95e738523cfc6df094c8161144d4e

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 28.2 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8855c3a39c9ba5510565fcb8ec14a9db7ef99c3bfc305f549734cec0c900a0cd
MD5 24572cfd77cb1eb5194bbbf83c4ec049
BLAKE2b-256 d8ca9a87968b03b0ab8c9717e2b3802e0d73f84c8a6f02d2bba03b64998b367b

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 24.1 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e45628b9b39733dd69c20572b36978388e6f68d38d62e20ba85d4cc08b9c7f32
MD5 4873754e99ca13561a165b6389e77ed3
BLAKE2b-256 c5cb0faa6e600bc65f2bb1747cc592c5a72e74cd9df82a7ccb0d5012f2b2f755

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 28.2 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 54befd1749869b3f78fe2b6172762d6b68286c02bedddb266e68e6fc97e56af8
MD5 2680c0a30784d3a172687df75aa652ce
BLAKE2b-256 8b61c15f4c013dd3511cbea21fe384dab6dc11ec6a777f260278d4f6cc2d62d4

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 24.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 741c6a33df63160d38342592e13b0a80d08c97d9facc59eb1a8cf521007caefb
MD5 9ebbe5d6f0e1c6979df1ca44c7783c02
BLAKE2b-256 e4796e5977e366954055ddab5c48cb60bf9ba91ca49793c24db43ebbc1df0cee

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp36-cp36m-macosx_10_6_intel.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 12.4 kB
  • Tags: CPython 3.6m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/2.7.17

File hashes

Hashes for xxtea-2.0.0.post0-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 8c332996ecb85443ce69cefc6e8bb1a67546cd3f1ee3798afbc37cfdb0fe89a2
MD5 1bc76141e2a5dbb506a09374abaa46e8
BLAKE2b-256 b248b42308d89c5cad98dcdc245ace70eed116141609277b09d2e7792f89036c

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 11.8 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for xxtea-2.0.0.post0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 8db29df011e4f46bc8740092f91f9c26689198f4f639cd15b757d757214df6cc
MD5 39eec0251df46db79afad1e72a5ec341
BLAKE2b-256 01ba86c29bd3b7e551207cb5809f32a3c9cb9ab3156c1eac98d7b34c3f4f773b

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 10.7 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for xxtea-2.0.0.post0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 c2d4bb6186e4ca80ffcb897eaf9e4307da67086498733bc502fa7c5d59fb0b09
MD5 126bb18b6a8498afc7d920bffb79c4ce
BLAKE2b-256 7c21063df2d320f29b709f566e549d6e7afbc4ddd8d9fda6234330ce902dfcca

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 27.9 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 25dc75e6df5e8635248ce30a45e8480eb2ef166c76411fff13bda7c2662b22d0
MD5 71bef0c141291d0879f8bd9270a21567
BLAKE2b-256 e42c3fe27be7c878afdefa6e7161e5c07a678cf8b28dbaf2c493045c72b00ffe

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 23.8 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fea4eaaec3bfe1f272bf911a83d8cfbb36e2e9406317199ac311fd852f3ab36c
MD5 ad21575fe162784cba698bbc2ca867a4
BLAKE2b-256 6235fcb9d7fc4939c8e1a1a555711e423418aff3556689f8cc6d96dfd70cbf1d

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 27.9 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 19673cb8583e724375fbbd80409a161ed3e968eed2f47557249b7779b62e6520
MD5 1b7c781c0f61b126bcbf15af7fe39d75
BLAKE2b-256 de33236c80c1bd72efe2824d6f835692c691555f289f389874b3ea7a71adaf78

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 23.8 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 acbf26d3e7c913da96bb4a410fb01bdeec57eab0fbf652a185ad8d3ecc7959c7
MD5 515f88fdd652be270777c27e1a8c2ee3
BLAKE2b-256 762d6d543c4ef78dbf2c40c47b75445e892f89517d62ccc32b88190cf6c66c70

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp35-cp35m-macosx_10_6_intel.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 12.4 kB
  • Tags: CPython 3.5m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/2.7.17

File hashes

Hashes for xxtea-2.0.0.post0-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 26382be78a599d95288c586cd0f29053e63bc3ae3fbf8a90d8be5efdf56d608a
MD5 795bf22d84c9300398460940193670ab
BLAKE2b-256 7b163940546db453bf74ce7fa52298027e54aa13cfb1e10d9b1cfdd88805a78a

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 26.6 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d53c59d471efbb1142d61c74427bfea800d6df7928d44dc6717dcc6a9596bf3c
MD5 ff80a5090f2161ed1329e28d99e795a3
BLAKE2b-256 d58439bd772791d2d84512f44ade50ac1e59d5df9e8cf47492fa87bdf77efb6a

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 22.5 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a495edbcb94499dac1993f74caa123435b8461c0e87bcac8b2bea7e2cb1866a5
MD5 0601a8747d9bdc0fe215164b8dc940b4
BLAKE2b-256 1513508fe92473b7bd48299ab4df3c06b9b99609540e7d6212f6e12693a459c0

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 26.6 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b53b56cdd0b6863b32ad704f3f4c3b1abc295a641b4e9dfa44fd62cab4d73fdd
MD5 2d0333f8a7c24bd177bf8ddef21559a8
BLAKE2b-256 5a490e2611b8cd4dd60551f4682dfaa166587844b5a303357f591362bfc10be7

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 22.5 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 664caa25fb33b0b4ad105b8c440b07d2c736f43b4fa12f307776e40d36a2db9d
MD5 b5b20316425951152c1f3a0486541aa9
BLAKE2b-256 19eec12a595f5bec9308ed865d917ab7d56839ed2b66009f63ca1d14ff765ef9

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 9.5 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for xxtea-2.0.0.post0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 be234d03c96079321a9dbb94dac6f99b0f5fe7813e18c9e16279042ba06e4923
MD5 c688a6ef8e79b6a06ce599c3f3daf1a2
BLAKE2b-256 c947cdad3214f0e4fba79ff430a313f3664dc67bd931b1d405083870fe2884ab

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp27-cp27m-win32.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 9.4 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8

File hashes

Hashes for xxtea-2.0.0.post0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 a24719d8e7fd826db8fd0ce513072ed2417b2610f58706f880cdbb017c443364
MD5 08571c2b8d1dcc080783c1a51260944a
BLAKE2b-256 84680c2b93428e5531726d16d582565593458909e6e3496085b0c75a914c4968

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 26.6 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bca0f0999fc389b3a8b59bc20e55003c9870ccabb2ef9f7b4d23ddbe65e8b7fd
MD5 8e23d060527b97eefe20400ba9f780b9
BLAKE2b-256 162c3c40d054c7e32883ab451b06ac490c49ae99acd8a9b4c763464231fe1cca

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 22.5 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d769b67ebec984199bbfbaf577d2d49471e88895571c410f0caee4ea79f06cf4
MD5 39ad9dcfb5d3053de8ca03843b657e3c
BLAKE2b-256 09be1e9118e2b1f336308041de8801b0ea8b4021529596e0a2b126f16c968f87

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 26.6 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3900fd636b3fb4dff1406fa1e391adef6cedb82043424217beb1519f33230b67
MD5 acba7e7c3d8e4be6f59054846b47f55e
BLAKE2b-256 97b2d1478446c92db02268ddc171c14bb4915b2aadc572445fe2b40b12de59e5

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 22.5 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.3

File hashes

Hashes for xxtea-2.0.0.post0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8ffe1038ba2a77e826df8748a3e48f789b707e34f3e6c9f8ccc45391b60a250c
MD5 5c4531e1451d3a229a8f88ac55800994
BLAKE2b-256 9916ed8c285ee2adf6794aa9c397f160955ecace685c1bb873ff35dd06fa8f04

See more details on using hashes here.

File details

Details for the file xxtea-2.0.0.post0-cp27-cp27m-macosx_10_6_intel.whl.

File metadata

  • Download URL: xxtea-2.0.0.post0-cp27-cp27m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 12.4 kB
  • Tags: CPython 2.7m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/2.7.17

File hashes

Hashes for xxtea-2.0.0.post0-cp27-cp27m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 8ea9e115fd249b047ba7e5f6c6c1bc6d1b656139d70031f802468f3d609e3001
MD5 ce21184837aa92303933af1802da2b5f
BLAKE2b-256 bca99cd8e855792de11b2c5ce2c82058044dfbd229d8e91377d4be7251e48636

See more details on using hashes here.

Supported by

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