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-3.3.0.tar.gz (13.0 kB view details)

Uploaded Source

Built Distributions

xxtea-3.3.0-pp310-pypy310_pp73-win_amd64.whl (11.7 kB view details)

Uploaded PyPy Windows x86-64

xxtea-3.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

xxtea-3.3.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

xxtea-3.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (10.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

xxtea-3.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (8.5 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

xxtea-3.3.0-pp39-pypy39_pp73-win_amd64.whl (11.7 kB view details)

Uploaded PyPy Windows x86-64

xxtea-3.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

xxtea-3.3.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

xxtea-3.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (10.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

xxtea-3.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (8.5 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

xxtea-3.3.0-pp38-pypy38_pp73-win_amd64.whl (11.7 kB view details)

Uploaded PyPy Windows x86-64

xxtea-3.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

xxtea-3.3.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

xxtea-3.3.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (10.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

xxtea-3.3.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (8.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

xxtea-3.3.0-pp37-pypy37_pp73-win_amd64.whl (11.7 kB view details)

Uploaded PyPy Windows x86-64

xxtea-3.3.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

xxtea-3.3.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

xxtea-3.3.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (10.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

xxtea-3.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (8.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

xxtea-3.3.0-cp313-cp313-win_arm64.whl (10.2 kB view details)

Uploaded CPython 3.13 Windows ARM64

xxtea-3.3.0-cp313-cp313-win_amd64.whl (11.6 kB view details)

Uploaded CPython 3.13 Windows x86-64

xxtea-3.3.0-cp313-cp313-win32.whl (10.7 kB view details)

Uploaded CPython 3.13 Windows x86

xxtea-3.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (23.7 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

xxtea-3.3.0-cp313-cp313-musllinux_1_2_s390x.whl (23.6 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

xxtea-3.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl (25.0 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

xxtea-3.3.0-cp313-cp313-musllinux_1_2_i686.whl (23.5 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

xxtea-3.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (23.6 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

xxtea-3.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (22.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

xxtea-3.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (25.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

xxtea-3.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (23.7 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

xxtea-3.3.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.5 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

xxtea-3.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (23.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

xxtea-3.3.0-cp313-cp313-macosx_11_0_arm64.whl (9.3 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

xxtea-3.3.0-cp313-cp313-macosx_10_13_x86_64.whl (8.9 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

xxtea-3.3.0-cp312-cp312-win_arm64.whl (10.2 kB view details)

Uploaded CPython 3.12 Windows ARM64

xxtea-3.3.0-cp312-cp312-win_amd64.whl (11.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

xxtea-3.3.0-cp312-cp312-win32.whl (10.7 kB view details)

Uploaded CPython 3.12 Windows x86

xxtea-3.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (23.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

xxtea-3.3.0-cp312-cp312-musllinux_1_2_s390x.whl (23.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

xxtea-3.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl (24.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

xxtea-3.3.0-cp312-cp312-musllinux_1_2_i686.whl (23.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

xxtea-3.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (23.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

xxtea-3.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (22.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

xxtea-3.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (25.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

xxtea-3.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (23.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

xxtea-3.3.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

xxtea-3.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (22.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

xxtea-3.3.0-cp312-cp312-macosx_11_0_arm64.whl (9.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

xxtea-3.3.0-cp312-cp312-macosx_10_9_x86_64.whl (8.6 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

xxtea-3.3.0-cp311-cp311-win_arm64.whl (10.2 kB view details)

Uploaded CPython 3.11 Windows ARM64

xxtea-3.3.0-cp311-cp311-win_amd64.whl (11.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

xxtea-3.3.0-cp311-cp311-win32.whl (10.7 kB view details)

Uploaded CPython 3.11 Windows x86

xxtea-3.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (23.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

xxtea-3.3.0-cp311-cp311-musllinux_1_2_s390x.whl (23.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

xxtea-3.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl (25.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

xxtea-3.3.0-cp311-cp311-musllinux_1_2_i686.whl (23.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

xxtea-3.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (23.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

xxtea-3.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (22.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

xxtea-3.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (25.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

xxtea-3.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (23.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

xxtea-3.3.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

xxtea-3.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (23.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

xxtea-3.3.0-cp311-cp311-macosx_11_0_arm64.whl (9.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

xxtea-3.3.0-cp311-cp311-macosx_10_9_x86_64.whl (8.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

xxtea-3.3.0-cp310-cp310-win_arm64.whl (10.2 kB view details)

Uploaded CPython 3.10 Windows ARM64

xxtea-3.3.0-cp310-cp310-win_amd64.whl (11.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

xxtea-3.3.0-cp310-cp310-win32.whl (10.7 kB view details)

Uploaded CPython 3.10 Windows x86

xxtea-3.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (22.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

xxtea-3.3.0-cp310-cp310-musllinux_1_2_s390x.whl (22.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

xxtea-3.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl (24.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

xxtea-3.3.0-cp310-cp310-musllinux_1_2_i686.whl (22.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

xxtea-3.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (22.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

xxtea-3.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (22.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

xxtea-3.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (24.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

xxtea-3.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (23.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

xxtea-3.3.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (22.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

xxtea-3.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (22.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

xxtea-3.3.0-cp310-cp310-macosx_11_0_arm64.whl (9.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

xxtea-3.3.0-cp310-cp310-macosx_10_9_x86_64.whl (8.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

xxtea-3.3.0-cp39-cp39-win_arm64.whl (10.2 kB view details)

Uploaded CPython 3.9 Windows ARM64

xxtea-3.3.0-cp39-cp39-win_amd64.whl (11.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

xxtea-3.3.0-cp39-cp39-win32.whl (10.7 kB view details)

Uploaded CPython 3.9 Windows x86

xxtea-3.3.0-cp39-cp39-musllinux_1_2_x86_64.whl (22.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

xxtea-3.3.0-cp39-cp39-musllinux_1_2_s390x.whl (22.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

xxtea-3.3.0-cp39-cp39-musllinux_1_2_ppc64le.whl (24.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

xxtea-3.3.0-cp39-cp39-musllinux_1_2_i686.whl (22.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

xxtea-3.3.0-cp39-cp39-musllinux_1_2_aarch64.whl (22.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

xxtea-3.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (21.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

xxtea-3.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (24.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

xxtea-3.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (22.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

xxtea-3.3.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (22.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

xxtea-3.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (22.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

xxtea-3.3.0-cp39-cp39-macosx_11_0_arm64.whl (9.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

xxtea-3.3.0-cp39-cp39-macosx_10_9_x86_64.whl (8.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

xxtea-3.3.0-cp38-cp38-win_amd64.whl (11.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

xxtea-3.3.0-cp38-cp38-win32.whl (10.7 kB view details)

Uploaded CPython 3.8 Windows x86

xxtea-3.3.0-cp38-cp38-musllinux_1_2_x86_64.whl (22.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

xxtea-3.3.0-cp38-cp38-musllinux_1_2_s390x.whl (22.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

xxtea-3.3.0-cp38-cp38-musllinux_1_2_ppc64le.whl (24.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

xxtea-3.3.0-cp38-cp38-musllinux_1_2_i686.whl (22.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

xxtea-3.3.0-cp38-cp38-musllinux_1_2_aarch64.whl (22.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

xxtea-3.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (22.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

xxtea-3.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (25.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

xxtea-3.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (23.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

xxtea-3.3.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

xxtea-3.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (23.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

xxtea-3.3.0-cp38-cp38-macosx_11_0_arm64.whl (9.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

xxtea-3.3.0-cp38-cp38-macosx_10_9_x86_64.whl (8.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

xxtea-3.3.0-cp37-cp37m-win_amd64.whl (11.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

xxtea-3.3.0-cp37-cp37m-musllinux_1_2_x86_64.whl (23.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

xxtea-3.3.0-cp37-cp37m-musllinux_1_2_s390x.whl (23.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ s390x

xxtea-3.3.0-cp37-cp37m-musllinux_1_2_ppc64le.whl (25.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ppc64le

xxtea-3.3.0-cp37-cp37m-musllinux_1_2_i686.whl (23.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

xxtea-3.3.0-cp37-cp37m-musllinux_1_2_aarch64.whl (23.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

xxtea-3.3.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (23.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

xxtea-3.3.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (26.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

xxtea-3.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (24.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

xxtea-3.3.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

xxtea-3.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (23.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

xxtea-3.3.0-cp37-cp37m-macosx_10_9_x86_64.whl (8.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

xxtea-3.3.0-cp36-cp36m-win_amd64.whl (11.6 kB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

xxtea-3.3.0-cp36-cp36m-musllinux_1_2_x86_64.whl (22.6 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ x86-64

xxtea-3.3.0-cp36-cp36m-musllinux_1_2_s390x.whl (22.6 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ s390x

xxtea-3.3.0-cp36-cp36m-musllinux_1_2_ppc64le.whl (24.0 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ ppc64le

xxtea-3.3.0-cp36-cp36m-musllinux_1_2_i686.whl (22.7 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ i686

xxtea-3.3.0-cp36-cp36m-musllinux_1_2_aarch64.whl (22.6 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ ARM64

xxtea-3.3.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (22.4 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ s390x

xxtea-3.3.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (25.0 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ppc64le

xxtea-3.3.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (23.3 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

xxtea-3.3.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

xxtea-3.3.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (22.7 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

xxtea-3.3.0-cp36-cp36m-macosx_10_9_x86_64.whl (8.4 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file xxtea-3.3.0.tar.gz.

File metadata

  • Download URL: xxtea-3.3.0.tar.gz
  • Upload date:
  • Size: 13.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxtea-3.3.0.tar.gz
Algorithm Hash digest
SHA256 e437420bdf40b9317d69d88ed83e6e70d581cd7555d16a6e74ecaffc1d6efc3f
MD5 140b7f1d7d43286a04f7b6d48c6162d2
BLAKE2b-256 09c730860d14b1c5f7885e49c5be8652599efe2f12f59b45b4302a103aab27b2

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e2c3e33d2bd1bc061b4b7c1e26acc0b9b53ff007c0239ac0a0a56741021fe117
MD5 ba1e4b8a628b4302524e2fdd6a6a58a8
BLAKE2b-256 efee9eaaedec81d3af58dfd7acc28fbbe27281a4654df46dbd4a6220b5484240

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe8dbedd13ec9549b9f594652f9d6d3a87674e116de57da3f6a9e73db660ef71
MD5 8794189a0efac9e15e152a1e364b44e9
BLAKE2b-256 febbdc6149ea14f757a9e6dcf6aaddca0224fd038d0b6eb39da8368a98567d8d

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dbdf1041111aa04d94988719ab9882d188e7deedce289b1db8951a199e61e2fe
MD5 882d1882888c9add2559de353be86696
BLAKE2b-256 47f327ededb9545ed9fb349db2b4af81ad015bb56f3ce5aa92fc83917d7a7c97

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5a597fd8d09ac604f98bf6e8378b57b31a1ea2becf98f9b94ace95b995175ef5
MD5 c1b1c5c945809d6e35206113192d145b
BLAKE2b-256 bb1d28db27ce0cb41333d9b187a8aa5d670272e4e8568352a42ec9ffead70b01

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5cf1367d06ba7e4394e2e6b0add8282dbb3ec9b8f0784dd70d163ca19a8c39d8
MD5 25cb695e704e14252228c315afe02e6f
BLAKE2b-256 9f10cccc1ddc1aa580de3592324971891ac5e0714953be9f6baa91ab51c946eb

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d25a121c0b70139b491fac342b8e9d118cbd20c84c9be571abf6588d5bb2cb3b
MD5 898998adf8c208cc3f6465afc54cc755
BLAKE2b-256 194310c66ee7708f29327fa370e3440874c0367ce4dbefc7be64b83c0cf28600

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 298e536260a511a4933db186f7a46bf7691995d5600b2457b0c942a4d16db236
MD5 40c9cba49cde9b5a601d11b9509a04a1
BLAKE2b-256 eb3244a1be2289072e26af78f4bc7e811cd62d627911c42ea2aa0d5298679011

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fddd8dc4cb9284403675f6c2dacfbc9515db6242bdb82ddc136b2f93b490eaa2
MD5 3ba12aa15f48aead9ddf50bc4ebde350
BLAKE2b-256 656457b2aa2fd1b32e3ac30abd4e3d3f22267887ce1f8882729c53a381d171fb

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a1e7148a45380ae0434a7c8dee6f783ec205e5793fdda753caa55ca535f51868
MD5 bcc35702adf834e95cf5a9c52173acac
BLAKE2b-256 efd84bac205112f360a8d9385a40d2f92f348bdf4fdbcc9064ffa1bb912fc051

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6a3389b134a91ea2ffa3350768226200b634d223656952aaf86082f7c1ebd2c3
MD5 f8f0dccbf2b5dad2a9d10acd2193baca
BLAKE2b-256 c12c99d77d020f4ea9034a9ddb48ab24d705d593b54a32b9fe5361c4ee9b402e

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 44c59118732f024a104a9f83d644f0eef5a0b28c4eebe74fb8e97199e0354461
MD5 3787a6a47231c70b44c07dfd400c0ae5
BLAKE2b-256 ac007423f0ef30b8a0d8278ba08dfe56c585d120f6556855014f8beb89339c3b

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f8efd74b87c0433e84c75f2ac20aef2ca394bc4ad05794c002678f1db5a49d5
MD5 389e3fef89303382db9456e6b6ff46c2
BLAKE2b-256 af3c04181d3ce67136cff0898bb6fbc2caa31eec8e1ddf5c17ad1d192500624e

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 907bb23a1d664851105e801af251925f6b64273ca969f9e4c6e927958baca149
MD5 77df1b31873e238d66da640fca47f73d
BLAKE2b-256 5990c0889ac6256865f8a4d83aeaa3c68045f57510325856d037ded553699eed

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fc5136318b754fea6f878e73d302977b36c44e48248f79db4974cb2f41d19cf4
MD5 8b39d9384c48fd2c630af3457450c301
BLAKE2b-256 03bda667290c374aed5ecc8b766e9b47bb89732c39948c5996096fca0c80f1cd

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4f225f5508b91853f8b4bf974e17c9bf29d4fc02e27fd022b476cd7c82f9b604
MD5 5cd5fac54d7d91820ebdab19e7ce0255
BLAKE2b-256 8c4a342c7a4dd8b8d67d6a03447a96fc4817e6ca98b344f371c5821ffdfdb880

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ed76fc8eca810e8a5aa8f9f1312b39428212db66b5e0b460291a43bef3a16173
MD5 6e22bb20b876f39570886da0c4a24ac0
BLAKE2b-256 7238d06be2e66297c6757365acec7bedd4dd08200275981523f890df01a0354e

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 867d147327d4b3e2a8a3688c086fad328d1755afe418073a573767ed9e68cb95
MD5 d1a987791c61933ac42497004f26adc0
BLAKE2b-256 e309840c8d4081eab2fca1b45ae9c0309f0482937c4a56874e560d4333e2e6ca

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80548a7f4843c57f26c3701a4212acacac5eb2b09fe253a238d59011dab0d0fe
MD5 76358d3ad0f9add57f7f7e6b1a92cd96
BLAKE2b-256 579c6906797e0e5476cba574d431e16afc31dda6d13a6eec35682265704f81b2

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e758ddf43b3a1aaa66797cbb9ad049a9dc483c8d9064307406aa82a63844f33c
MD5 b06987a45ec61f8e9e9f21807c129a17
BLAKE2b-256 2b597ee5ff3d312c76a8b669ccd087477b89cd2cab2045dd042ace3f597ed48a

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e5d0d44db9be947b5b6b0cf8191fed58a08db1b3f1b4159bd22d0b2484e045fd
MD5 9dc56ed471e837efc38afed6509284e0
BLAKE2b-256 6e533f1359aed8b8b1ac1fa8e0b0ebb980e115cd9555d227c5b871cdefaf94cb

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: xxtea-3.3.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 10.2 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxtea-3.3.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 fbe2c9d5c09b0d543a846ddafdf4dce6bc90678f1486995bf1b253155c2bad9a
MD5 5b29ccd2bb861c46fd3dd6c69c3adad8
BLAKE2b-256 59e274eb3c30725e38d8065d5aee891a30235d360c1d15896a48aedc50af27f8

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: xxtea-3.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 11.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxtea-3.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fdd17f3d1d31158d3164cb741846afe8b59e59e8d42533af705a679ff26e76e2
MD5 53cc4cfb81e6ae606029755720941951
BLAKE2b-256 451598b665da5088ce1387318afe958658e5f3d108f601cc14fa278cb96688eb

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: xxtea-3.3.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 10.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxtea-3.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c55ae4331f05f2154f9d328f7fb325c7b22a106c3f9bd1917dff0b1b6c24135f
MD5 4146ed4b12be92be1fa813a00d5708d0
BLAKE2b-256 6fbac16f468ac573eb4c4b561c491fb7a389aa2e291fa898091caa236a73cb2b

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 555b2ee7982e1ec23e00da603933406aa1bce0496336946cb755f5cb35beeb1f
MD5 cdeb206b33d7c001f9417f12c7e532f2
BLAKE2b-256 54f469e10d419f31776f5624f1476d37d16acf81498d64104a06863e07fdb7aa

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 420075d9bd090cf247b13a6992ff6e0538d4e60baf4b88dbd44a4e17bbe6fd8e
MD5 a4a77c6a7a01ef0d13730e64af068842
BLAKE2b-256 8142736126a458a2633cef0145ef00d22586f4890c9431fbf41a39984fd0f135

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2d0d38ef30f572cb90dddd3b7a5b6c1922b96149bbb03e1b0076dbbb70086837
MD5 2f332ceb28f944464b4d33f797500278
BLAKE2b-256 317417b0852dbef0329f4719c47f42780972fe70ba2d5e8e7fec999c1a543c9f

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0513921f5d6b4d78e5020e010a7046f85b769ff7a3ce5fef4e2f1d3747ff0e01
MD5 ebdc18f35467672fcac45761a76e7fdf
BLAKE2b-256 fb2a128b24bec7aa539de3587679ecad87055824e7ed1da3c04834f9e4ebabb4

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 02af8b418f656c57c677823e1bbe6a7f6840604e2063fc9b05fbedffdedb68bd
MD5 08c368639b3ae7b3ec6b286ef4d252b6
BLAKE2b-256 88598dff7c885928df2ddb4e630aca8a69db42ce3a6fca08607d6d74dd36c56e

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 73a596703a57ddbdf255b65432fa7e2754b57c42211a0bd0fe8bccbfd4fc5f71
MD5 8ff37bd9f3de7da6b320035932776323
BLAKE2b-256 b66be77bb82e8f98db322d8360ccd27ff9532f8602470cfc76290aa554424d30

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aad5d27ed1f8cf71d1c2a3b16705928469f6632ad342ae265d51e5b571e244b2
MD5 b656224c6b5ad6221022f417df6b2e75
BLAKE2b-256 a79119dac819929c29fccc85772f75e32ee7a88e0a2b244218922952aa862a14

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd13f912b7a87caa39888a80490b6f38894922f9095a3fa963d2b16cfe0ebf70
MD5 dab432705ef8c17663e1805bd914c498
BLAKE2b-256 f5d29a3d34ca6668def34d7f9741a7a7d5048892efc297c295e684ea73178980

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d468c2f34a8610ed55c85ccdf988794aa1f41f12562d171f02085cd65e46e4ac
MD5 e1151ca848496485c648f79b5bf0614f
BLAKE2b-256 e07fcef0796e0801d4da95b88a18c97ae862ca4bf01d3d38fabf82ba06ac9b91

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0d45db286c9dfee43caa2a1e0f86870980098fabce9e2ddde72f7c8003b72011
MD5 4633243a2efc0fb19e9649a4f9b64fd4
BLAKE2b-256 97673e139b73665998f8c9e3cdd3753f1f9695908c5e8d691c8948fcb03cf272

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbdaa562979581fe0d1e77b6243e53f2664fc38d8eddce693841a5d2697fdb4f
MD5 d349dcdefe2610bc477bc3ed869dd44e
BLAKE2b-256 4b30caa6f602810221ac893c1b50d6c648965049a34a4d20f713bcef0068703a

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a87ccad77ac1e915e6951e2ca7c1fa2a9842a97a5e0d60dbab76969c6195adaf
MD5 923f1e0d8eb2bfea44261066b923e0b4
BLAKE2b-256 f03aee69a32372026246543b52a233b1a376048820e4ef204a518193726e72fa

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: xxtea-3.3.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 10.2 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxtea-3.3.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b88252fba389bf1d4921aa3d1a41f2b979728443d78ffee5e523433a35859fad
MD5 750c4980d0b62dd5c8ebe1345c9a8781
BLAKE2b-256 ee7696288f4d0058037b9a37833e16ad8386d07dfa8157981fc8cf4e0cf39211

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: xxtea-3.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 11.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxtea-3.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8c4d5e0bbdb9c25ff5460bbe167b5a87e5af457d0e4f6794bed08f3e3a71ce60
MD5 ad11735be43bf2051aa7c7462e71f536
BLAKE2b-256 c279121066325c2870d5608d91bbb942fe45a04e06d60ae9c0c7b714421c6bd2

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: xxtea-3.3.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 10.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxtea-3.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e3d564ecb2e7f92d9e5a76f3b9c482785254e63a52d7d6e6ba1a1e7e2bf925b0
MD5 d991962412790e322553bb93bc2ea5df
BLAKE2b-256 38853a60eff6aae12708e09d9eb1bcfcc6f3efc0a72c1c7fd373265c6f47d0ee

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 96c19c97517525a0b6a41acfdd74ba8ebad9147f8050ebe52be332126de72210
MD5 eb83bc51c224db5ee3ea266b2580f3ae
BLAKE2b-256 d54e0493be3d9ba2f671491d87dac8c6ba4576f37b064cae5146a787ad8c7e0a

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d146a28c7526439bc1f92aee99825ab63fb9f7f3124f9e3e53efaf0654e39275
MD5 3feb6d166fb663c5055e136fc394b542
BLAKE2b-256 909e04b69dd54db6cbcfea5d5e6dacae246f55229883bc421710aae828dfa77b

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 58b1fa6a9deac366da43642913bb23a7cc25d5635e8183fa3fda74339578b2f5
MD5 935d84838d013d0ee4942548c4962769
BLAKE2b-256 702fa5fa7cc83511f01f4fb5bbd37a1c2b467be46cf1c58ddb14a1166e21edde

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7a288561867238431a48651eb4212fd0c0185158664f8f83b402260ac93c5c88
MD5 83be1e918b599df770b26adf1e67fe22
BLAKE2b-256 367fa0de6ad7361deff52bdac035e8fe143261007ca36afe38dd1ec28b11a68e

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 017829c236953bbeac4e77f2ab85c406edc66f56b6c3d017cea3666bc9b8cd58
MD5 63a07150f79d5b87eb1ad10ed20f92f4
BLAKE2b-256 c17f62981a9e307d8db73c066c1b491a0a57627a111a7a0649d0ff3a256abfe9

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a3255c4b4d14cf206bdb46791bfc984d048f836ba07d02b129b0c525e279ba5f
MD5 2e7cf94b8fde6105d66a6df19f679965
BLAKE2b-256 a078ce48a996a41cecf42bc771ef03f40e794fa418db17d78adcc6a9440e626d

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a1dd4618a73bff6e37fc5d469047d3a06a23486bc6b6d878e7781c2abc736ce
MD5 c919fc31c210ae6a10dc125512d74812
BLAKE2b-256 7e08ae72648f69aa95648374db066a165f3953ed1b3fe061a75183b450744205

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4666147d17e3cd97b784c540e074b289e08ee0ef09dca20371cbfc2c903563a
MD5 28a5d494861ede328246882dcfd96a25
BLAKE2b-256 0294ef181f2906e88533279ffc619ad60ab9f69716e441eb3b87c2ea523ea38e

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b57a5f56b785e5af7d57b7011742af03d98e8a7ff1b0a693d2b3e91ee99857e
MD5 37771329378a95796c8308328fa3ab54
BLAKE2b-256 6a3bb46754036dfe5f287d308df3f46c47187a3121afd625ced294445deffd46

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0643e23de72252d67ec175b02bfb223efefd7129810682fc4bf7104d8e59dcf8
MD5 ffa6187b43bd29bd11b2003ce585aa04
BLAKE2b-256 dbed06a3cd2f363b6c77a57429d3d79ca2ba8a52f3cf40518f0919ac789c96c3

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b8e95c5c688440b04cdeb5a542a52805a9f57854537b34753a719c63a2b452c
MD5 c9bb2455e39fb122c42b856fb550d3ea
BLAKE2b-256 42e1acf58713f086246e6e32ab63d984c80ea169c3201889a930dc7192b4ae65

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7773b99e2131bd853d9e08da6a6fb62bcdef6474b475ff7a8a65e076489b7a4f
MD5 4a1187da9ee54c0f51522f2130990c51
BLAKE2b-256 0a0bc31d76925fd3d52e1cb7672e6df59a987f07158b1180b90a277a6ecba593

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: xxtea-3.3.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 10.2 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxtea-3.3.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 0080d0036b3392de734c05d58ed3ad9ba8b3e8b9389ee8c149a6fd10065dd756
MD5 c57fa57bcf860f39381d74a75bf808d9
BLAKE2b-256 a101aeecd4ebc77a6f0739384ba95480732b3b9e720e7ca0b20843bf7d71f6db

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: xxtea-3.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 11.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxtea-3.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3d87317d12136d7f995d426340b54290e2e3d365140be7b997fe2f6ae47f2a10
MD5 e0df940f062cd3f5d11de61f13853da4
BLAKE2b-256 8b00103edc692b30ae17688423d6e3c4228585e85c2d115a6afabda79628adcc

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: xxtea-3.3.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 10.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxtea-3.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 dac63c2bcde80688d52a3de4a87f87cd0492afec795743284f38ca94ebb71443
MD5 07e74806282805a912bd44e15bd0fa04
BLAKE2b-256 7c7034a96c650e5651cb2c66196b43283dc116eb3f57e644ea3199b974cac375

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75074af012059d6bfe7bcfb87144f3a50c735ebdb8d47bd64cc1262eae7f9f91
MD5 b836d7142d3a4698e0070ca9d0fc1dc0
BLAKE2b-256 e3e56c0cd4fdcb3dc2b603de2d8b091c00c768cc565aeeeb127169b44fcffb13

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a653911d4036bda9cb6572352962576e02b20b6f20812f721884107fb9bbf556
MD5 a19adf472e88094f041e630e31c71533
BLAKE2b-256 5f7cbcd64cbc958c344c2cd596392232749f123c34e2fa6b7f67d895ebcfca92

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 cd93b3a0553e6147a77171a339048a9e6bd573fc046ca2579274edb2febe3717
MD5 e223146dc55f309ec187fc9f47795884
BLAKE2b-256 6f45f966cfdbf6743e98f097ea88226d59d2c22049d300ae5a92e2ea927956c0

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ba66f63e2edee2357cf0a5025816f7eadf0ea3c507f631fd9e2e7cc29da12e0a
MD5 2cfde159c9623089ef4c47e5711ee248
BLAKE2b-256 ca74c633c0a857eb2f09d7d1017ade1de838f47767e4b33af0caca6c8bab593b

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3fbcc0377e728a06c5a9817db5467431a2f77f8ec2cac1a2bac596bc46977d45
MD5 a5ed9ad148c6ec53a1eaea9cd9c48dae
BLAKE2b-256 3e1474f9004c8e99a7fd8e09ffc497818c6604a7d0f3620f84d6ca24e9913833

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 219a2dbc3329212c9c9f0c098d7a4c69fd9301e35ee29305a9d5bd4abbd4a2a1
MD5 cf053a95de868418b2cfa3f25294984f
BLAKE2b-256 59099db302ab11f367ed5c1a9e2d0a251fbeef83e307248b9b47c660b5c26fa6

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 45ed49a98631555931dca3d031a99d9c8e68c8610a8fb4484ccd23b7fadb694f
MD5 d49a3906d4762bbbf60ab4daeb03b45f
BLAKE2b-256 6f3a121a322e1e94f2e49f841186e84a9c303f2582c6bdc250c22ff467f98a93

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9586eaffe2d0069ff9d194e408c99a4c2661e0dfed4f8a140ea7c5cd6507297a
MD5 75ba44c59d6c205814eeb9b3a3c5dea3
BLAKE2b-256 1d221c8a752c4845bcd00f267c469ef718715d5f2817a6e2c57c77cbd4d56776

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4bad9785d50ee7d34262ab67dd7c38654ab88cbaa4a2038ccb270daa28eeb169
MD5 bfe01097efb8e57e7a638fa9e54e4e85
BLAKE2b-256 39f1842f0fbffa921d608b52013e36086faa5f8a857b7204d5a309e27eb84092

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1014691dd73803f8f20061549ffc16200778b0c2c511577c6d08ba355c7cc44b
MD5 f18f2e0b5a75cfff83cc79302db7c929
BLAKE2b-256 c5c19f54d9de6a9ec26b704a6f7dc78f23c9da257fca8c20167aa4380ee4ad6f

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd8acf1f33e573dd56f7eabae1103dcb694fa82f89d98edacc50ea9d3b47b746
MD5 9024d6216a0e1c3ff2ade32bd2f79cc4
BLAKE2b-256 2ccf9e4bac4b8a1098ab6962804e40a0cd5d3679436c78247f863e0f065a548d

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ecc6ae709f104cc3e27b529a2b2fb5818310c56fb29fc960e6372fc7e62e44aa
MD5 c03a95dac188df5c0b62414c334c4adb
BLAKE2b-256 7707befab1874387c459d992208561b21874e101e6c004f54ddd532be9a4c9ea

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: xxtea-3.3.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 10.2 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxtea-3.3.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 39f40a942388ca22f970695fa768d4e6d83b2804f466f4c4c0e409eb083ecf0c
MD5 e606f0fb4b4b01320638abde8b4b4279
BLAKE2b-256 191d3fec75abe99e1fddddfcbc756ba77897bbcbdb118a19597cdd91d77b1792

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: xxtea-3.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 11.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxtea-3.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 340e70d154185b50453e565fc84fe934da814ce9d69e94d722fca060e290a66a
MD5 8703800129709449306cbc15bfc8934d
BLAKE2b-256 b7f9215696a2f9a0961c61ebd550d3bee8038342fcea2e4f50b5928591bf44c5

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: xxtea-3.3.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 10.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxtea-3.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c4678331fb1075e5d5ac42b128b4b87825a99089c1c9832c85457b92f1d7d122
MD5 ae78d48b240af2788a835e3bd1361789
BLAKE2b-256 3c77e7e9791cc6d25f0fd0a61a71d82f417bb44b0c961ec617999edb8363cde9

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e8259a3a7cf5dd05722f1dafe6bce1d8c5e9fef67414606c7b81aea44f9dadc
MD5 00056347cbe4654635a0271d3065e1d3
BLAKE2b-256 4ab21304b28f1a0394493ca8383f4c148b19721dd7596e99b0a244dc444e4ca0

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 62e9b6eb6d45538077eb6c022a56ada71991c93002399b716d461cb0200ed44b
MD5 e375c9f5402cd1a739970f8862201eb6
BLAKE2b-256 9a98363579b61f23df76d32d9171e4126c729e7fffb6f479c79b0db8deca440a

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 463c2c6eccf3c68557bbd17cf14199da59914bf37af56ccf3fef3c55ee10ae82
MD5 95278e7aa850393ef079e2ee4c44ad61
BLAKE2b-256 fae25dde880ebba95f3801ff7a207e655a3744998026590653b350cd8b4d4a12

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 52ab77f365da7b269861af5a8b4b9dfb210d0e5329be31c0f06187a8e6f171a1
MD5 23437443239db72545db001826e1b966
BLAKE2b-256 f08ab093349bcec83450cf49215c94cca51617d5057820e516d948434703773a

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8945bfaea8ab7fc1642032bd0286059fede6c6f72b8ecd6f40ec95afeb908d5
MD5 1ffda1fd02da5b5ed73313d13d405d3f
BLAKE2b-256 9d5e477fdb154346a63f78ed2c25d19669db03edaf5ff2291dd41d35605875a2

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e7c44e42ded83deb3ea3057f1c53da66cabe1ccf6b1400efbe70119b539da5d7
MD5 9148d7b73b95a525f929e7a5281da063
BLAKE2b-256 4ff19f25937c37053e92cb9de931e3f46636b0623abf8141e48e2972a4574219

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1fdd115a0760865549b860020cf3dc17979ff58ecf2013383370cec974df9734
MD5 2ca2417165092ece9766f1e0781179d5
BLAKE2b-256 a6e3987c932d5a1c9e3df71ac1dd85df70664a30736eef201b9956ee79e5bff6

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 76a1bae9d573d45df076b638508b3dfdf940015066c80a258fbef3a8a9750ed9
MD5 3df75f5aa683e839c65006fc0313640e
BLAKE2b-256 a74da8b483c903931245c156cfd7775b01d91a38c3ee8e8100ec037ae46a3ad3

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1547de8fb1a5cb28781481300ea5bfc76feb841281732efaf71152807468bb80
MD5 5bf3a257cb5c96c1a1b2bcf61ef5189f
BLAKE2b-256 d1bf3cef389d3fd862467335af0f9ce1bf2080672fee7192716510e4172d26aa

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5e630b0f1a53b6dd893addc55c127a367380eb97f44d241e83807a49fe1e4bdb
MD5 2ea2167bdf588f765660b96811a2ff65
BLAKE2b-256 a451b969e735e4b3d3cf150a39f9befe307846b4866aea5f65bcf404706a3fdc

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 028d938877a5a1a45c811263afde1349043e9c73b7b73b3fe921ca699176f9fd
MD5 4bb65bc77970968dcaa24fd71f431523
BLAKE2b-256 d3ce9b81cf11bc44c07245c38cb2f2cc0c15661eaab68f9d93580dedb7c5c554

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1a891f77e4e3d28433bec9dd4073ff139ede5be997496f756538958743913137
MD5 cb86595331869ea8fbd1ebd46b5c403a
BLAKE2b-256 ac8dd3a2f4eb82d37807ba4af410601fecaf9a10db76f0ba78f64668e473d70b

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: xxtea-3.3.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 10.2 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxtea-3.3.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 143885169ae1f0b071a050a3cc7e10d8cc06bbe8bfd0e7b0fe811f96d3c2d945
MD5 3ccf833e3450127447108f4cb357462b
BLAKE2b-256 694d77b645ea5b62cfb8cabebc06a5f8f768e813bea56d0b980ee2e9bcfb1462

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: xxtea-3.3.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 11.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxtea-3.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 73112578026db7930df8c42218cf030e73bba17826538d0f38fd4fb180cf19f7
MD5 36821dbbfa49110fa1ec752c77eff99e
BLAKE2b-256 e8fbaaf48d9bf832174949cd94bd218f05e5c87598a6b29dcba84bac3d2640b4

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: xxtea-3.3.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 10.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxtea-3.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0a21123d31e1c8d68bf60c1d2140b9f8437ff476e8933df9a6bd84c4b9b0f793
MD5 22e767fce32f7e5a56223b6ba5df6833
BLAKE2b-256 4cb1e7392f751defc75a6c9aeafc53dc6eea76e93e21984e8b8cb1dae3bfc22e

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65f06a9a48279f0e425e0004ae8abadeaceae752b7aabfafb5eb5ec27a78a2db
MD5 fa7b00b7fe74022bc8a5b1ed462195e2
BLAKE2b-256 1f9a6bd9bf935b035a5eb368b8724930ff4eba122678558cf89a74b684cd0aa3

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d72d5e1db8f407ac3c196a2c1be714e00988aa9ec40c221c6dce61e54ca4212e
MD5 2184325953405c7e865a19b02ae2eeb0
BLAKE2b-256 c5c3216f99c46d107b64fe61d0f56cee26617503f748aa34c1f39ebbbde80b51

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4e3ccc14ad8dbaf3c23deb3bd79b8f74049f522690340fdb5457f2502fbf1b78
MD5 f4eab0e501c3a05770d3988da216398b
BLAKE2b-256 a0d5769ed9f1ff58b9d81652a5c481d3a8db4e7c01f82612429fec6cad8c0fb1

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 07005479bd6545b4f2b5ec7c5994d4683d5112cf9600ca02af86bca67be86dea
MD5 2f556b17e9eb456d35c074d5e1cf87fd
BLAKE2b-256 4ee4a648191bc1b65ecc56ab50292475e23dd5cff40b54eae2a02a5489541ec5

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5e57475e5cd593df1ba34fe6a8e9e71000c235760ae5fdb1898a529613eb2a79
MD5 e7b0b8939a49a73d8bd5252035fbf38d
BLAKE2b-256 fc7b5f273a08f75e1c0ac3f6ffc40ea38e64fd1aca92696ca5e3160b13a908bb

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 87e26506827ef7500a136e34aa397429dc52aa27b1aae02cd091315783624f67
MD5 eecb582c9e0c297dc250adb30c2c79e0
BLAKE2b-256 4bbf68e1a98b6bcc14e3a4bc0f77364accbd227f845de2af801a44714deb170f

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 79955b6ac88eff46891ecbb7a63dbdaf58e9acb0386ded405e6d23ac1ba89bd9
MD5 04b648936c3f7053f35172a4d33759a5
BLAKE2b-256 a7a112de6abb89f292f4ac6ab79526b6ce55489fd0f70b6a8a71819971547795

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0db740e3e747106e8359499d0349141de7b89d953c35e60fab52619339ff689
MD5 ab7a5a6646bd4ac6e7af8c3836016593
BLAKE2b-256 4ec5bf0e67ff9d6802588722a5cc1d9b47637a3ce7e5734846409e05a005a380

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e258960bfef283ff116b6ce20a4bfdc58db0bf6f8176583f13bb35ae990c7e3d
MD5 2678f50ad38f0f9a69ea64d2ff3a4d07
BLAKE2b-256 f248da4e0f69e343d13d38f998b9b55a49e4420b57fd77c06bbdfe424f757f2a

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7073dc843540d93428a355667184293b07f4a47839daff77b33f03027d9c511c
MD5 5a90a51219c5b0fdcdb44979bc59b8f4
BLAKE2b-256 71e760314619a352e1f179074a7c9e0048cebcb72d92a858624c9bb592e08d6b

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2078679332271b98afbdf04440bef4791b6f1475ccaf6150a2c77b5e1eb34e0
MD5 a9ad5e03e20dd67fc3d1b4b88c14a986
BLAKE2b-256 b38c4b9b9296266e245997aca2f2c50e9071b5ae8e60f4d9b431599df1979130

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cb6c554945be6abbd56f2875c98fcdb35ebf03f5ac8bc7b88507dcec266366ea
MD5 88456462a31a737ece5feb1ff514f814
BLAKE2b-256 588eef8fbaeca7e71d72f07671c63ad2228362811bf0521fca7d5887e82c9f54

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: xxtea-3.3.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 11.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxtea-3.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7c097f562fb4e7145d8380626ef495c2f7017250f6533896007c5ec97d420968
MD5 18d81fc26b46af0ae8defe924e1c1210
BLAKE2b-256 0797ede1b2e6507c87d5ba69b2fb40ad9b005386e4d10c7e57cc732578a87db6

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: xxtea-3.3.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 10.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxtea-3.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 fba58b93365f57a9f8a65e26d9acfd38f5b929febcab173bcd0b81fe1bc7890c
MD5 2d7647736b8d5f7d88bff8ce8da71851
BLAKE2b-256 17bc45f37a40ad75c77038d8cf41cba459b2053c5c4ee43b8e58dad0e301d8c8

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27beafa8f08393f174a1db8ee10bb001824faf9a5df024d2b7c952d93bec0e19
MD5 25e724afad7be0504ac1fd35e2e6d5b2
BLAKE2b-256 e6d4d02e3fb7dc9d07aebfad6bd5cdaa0dbd368ca7e099e014788d65dc95b9f3

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp38-cp38-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 331b08c286c5fc7b55485b180b5fbacab633e86e3e769328a010dcc48b49038e
MD5 b12ccc8a00decaada66adfa75ae9fb16
BLAKE2b-256 ba92ffb55894cc9ee6a7e5052f197e651d4a29b727e9cb078b71aaec745e1930

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp38-cp38-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4eeb0a3588265849afa550d1f9bab39d80c1299034440c19be0990c4edc533f4
MD5 71077fe972a6adaa8511ee3a09dd3f3c
BLAKE2b-256 e96cd295cb0d210fcf917d658ea62a0e138cd1eafb645d83fde4d6d7eddf94f2

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bf06d81791f9ec584abee714ddaae14c432bea65efc0eeda2bb69d970a0e9ca4
MD5 00bc88c4392803d2d4f84a50a34cc6a7
BLAKE2b-256 c1920ee8fe944484a2a223a8f0b3f71b0df614b7e9d6bc253fc81a8fd38bdb6d

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a8895496e70a86ee939de0ed92452e5d7179b0cb520fb574cfac7139ed0ac84
MD5 722602067aa4f222a82839cec68f48b4
BLAKE2b-256 c333380be6549ba7486414459d29f7fd2811803dce8858c319766b704c21c1f9

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4735887f9db1c90b4b2da6385def77da6ada8037d7c700c995cc5876c9bd753c
MD5 0c90a0c43570354c15c2f0468a172a3c
BLAKE2b-256 a59dfded3c946bee09c656ed2a2021c6f79cc9dbb63fe668a957c9d9dad49596

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1fb373ad300843468ba871cf6ee3fdeaba913e4502eb95f5ea9fd5c27f8ef208
MD5 c35a3b9a9de0ca0b31351d540d2b824f
BLAKE2b-256 fd9b63023c60573e5b1de8dd9e15d167a90f9b005019dc9d1d6a05e3e2e3c435

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 939f26f30896416ba26ff6113c6180669455fd25ce46c239535fa894b9832baf
MD5 f01397cdf6c562cfa87455ef460cfa68
BLAKE2b-256 532b0a559e5a6a8eae54b9652c6a117aef8371f086d97fcc21d1df6a8dffd1a4

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f7747c915c259041f2ad19604fb625cc866f6452b23315d89800260464286c7
MD5 e763d3769c809632854d63bb5c31bf69
BLAKE2b-256 62695f84d7d219ff54db778241114a98122b64040bae3064c8e1b8ce9ca9320f

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 99541419c6374dd032c7544286d359a03d3bad66048a90628c31bf66865260be
MD5 db1344c199e5fe31ea339b0b48d9e850
BLAKE2b-256 37047294a2732630c279380817b7f46d9757b86a1a8b8b4fd0dbb4c61d35ce1f

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e257b3f9c2da711956a97520beba4a8a1b528109d541793bb1607c6dc8c3adb8
MD5 3ab5691990a8d2a27d1607ae01daf8fa
BLAKE2b-256 4755c8207ce71b4af0f7355666eb0d67acdb32612def41af6d768245ab143e63

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5d09efd98dc3e9294b619f9d15904cfc3e3f34bdf8cf47f95fc6e0b7ab35c06f
MD5 740bb12719bb551857fd2675ff3192b5
BLAKE2b-256 c5ff68e6eb1133a09ea077ae80d89410b2db66edb83e56ae24c0576b4a7a6c92

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: xxtea-3.3.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 11.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxtea-3.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5607146db107bd4b4ee76f9019f5b0f23a7550b9408f536be1e65ea38a00684b
MD5 4ad32e59c9d8afe75d4f05b990e0b3cb
BLAKE2b-256 391dafd66f323e5388ef0ec2e121e473990751be4c57789b1d8680493d315c1e

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: xxtea-3.3.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 10.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxtea-3.3.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e194266702e1a08f0960e526494ec65348a8cd78cd84e675a9f8f04836d5883e
MD5 daf17a7f82ab268137469e10f3489915
BLAKE2b-256 0ef7fd119fc8b03592093889d524da852bfad980f9e22b2ee6a5910651bd070d

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aea6067970c3b39cee1fcea1ce4cfc177387362308dea2ab7d8a44c1083458e6
MD5 ef1a593c2085d6dcf53bb554aec21939
BLAKE2b-256 fec05c1900c5b5aa862c89c04f33649dab4564ccb68d69965de95d9290dbff47

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp37-cp37m-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp37-cp37m-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fd48a3ce558071ee0ba280e5972b6cbc024b004f7bc4ba483c5d6cf57c87ed07
MD5 86ee6c9da91e792eb27bf067f53ebc39
BLAKE2b-256 45b28be6a0e13a17f867484782a97dae784a400e2dc78e66ff4de7513fcfbe37

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp37-cp37m-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp37-cp37m-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bffdd9af36d81d8afbbdd66f5391b0b69d82880defcb3b4cf596a27288532f3b
MD5 8fd4804bbe54222d24c704e49d854dd8
BLAKE2b-256 52d5af084541c2610600f12b3f945fa5cf62931bcc5ad98cdedff94bd9c996a1

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 87537b16a20f43273e9ef85d89314c60608b74582257376a75c6a78e64b25eaf
MD5 5ca47ccfb1b65e307a5f31659fbcda5d
BLAKE2b-256 fcf49afeff7365e672c5397dabf57942f2ac1a27d5ea837e6833452b82909b3c

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9553ca6600e2d0d38c5feed2ce8722ebdddd5caef135fc1746a33a67458818c7
MD5 fc842734949aa52f908b47d4be5a05bd
BLAKE2b-256 4bf9657e595fee713163c6b0f9cd3d528ca969f985c317e96c246d8b9c22e8ec

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5a53dc2972d1631f6131d23686ca055e491b8b4e0b3fbe7c949aab026c1c7f67
MD5 35a163138d73ca863e45c61ba432d141
BLAKE2b-256 671f7130190a7aa7e671ee2482e790d84597ce010b2e8c38a153d3210f2a38cd

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e8325b3453ee575c38e912ee452e1cc77de77c833e6816f6e7e46ce0f529899d
MD5 92101b7f8092a5c48a9a61ff233160a6
BLAKE2b-256 010645144d5a5c22b066a7208917ad479d4ab6c2d8dababe2f4feccce54ad4a9

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3727674e33601c0d1c3a35e8bcebc3662be3bf5c653fb9aedecf7e7f164db6a1
MD5 4df134c94b575cef071ce36f42541cf2
BLAKE2b-256 48657027cf0e837aecc3effb3977dc5150fdd1b40d1e46fc2c62c43f72f5093b

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c3f4b1aad0e5fc9e92b7e8d24ac8a0b2e3a1a798e36d31a0a51b2b875ed94f8
MD5 192e8f129d49f2d779d49eaf8a1ff739
BLAKE2b-256 ee878b9dd1bad36a01fbb9d67203cea2e6f904b5632dad558a3a61ab7c433b83

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0aea524333d46dbf07a3acb3742c313980efcf9df321daa19db1d4456582fb2a
MD5 2070cc2864b7db5874db9ff4f29456d7
BLAKE2b-256 e6ee42a876b4115775b540c53e241e41251cf6ec221eb81d117989d1bc646af8

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e1015949dcf41bc50da626863eaa6b901189cfa809891d3fe3c5256b3f7f9bb
MD5 dba6ff3d8458598ec702380e0764b752
BLAKE2b-256 08f323e568ee9d46685f70257fa1c9b954c688cf10496e3631bed9b7135ad228

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: xxtea-3.3.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 11.6 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxtea-3.3.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 1126b8425683f290bcf0f30993859b2f37ba1c7a7de5cc1f51596c315496a091
MD5 b9d79f58e20386797de2bf112c8e45a0
BLAKE2b-256 b0fa788bb4c6b44b9053b6d287441eae2e7f0da56cc90b095a1661cfe31a6253

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: xxtea-3.3.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 10.7 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for xxtea-3.3.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a74156e8ca8d021973b57345f42d05203045a4faf06ffa86124fca2a797a6230
MD5 9c0959ca64aba9e00c9e92b09676ff7d
BLAKE2b-256 4a560faa877a3d147d4eba67799f8acef132d066b57be65f4a8be8e5602d5385

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp36-cp36m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dff77482e57720506b15b074f802344e6800278ab9182528f0c331a9e167f1b6
MD5 d5c3fad3652b80ab7db88969f44d60ab
BLAKE2b-256 76d34763f4eb8be8e16515d029e741e6bcbb58fd39cd28655f71caafde9db5b3

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp36-cp36m-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp36-cp36m-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fd68a302ad27a892e9cbc758048f6d95c751b3d8a9796c3a683c78145278dbb8
MD5 ba7465e9d3ef540e5fd0a47352c6a73d
BLAKE2b-256 26d805d60cfb108b2afbcaaf741d406fdf68429ede610ae0ecdb463d5af4a44c

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp36-cp36m-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp36-cp36m-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c0ff4d57ba0798a46f458a371745457f444e6e967da8b311c3c4a982f3e2662a
MD5 9042b9d1c836b24e4acbac9d1255346e
BLAKE2b-256 b84af0aba33bea39ab20837016133f6e726da5b004435dfc1f12ca3cee8777c9

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp36-cp36m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp36-cp36m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5aef990a103826669b66549533e4badf8c7f87295ca2d9beef32e71a5eaff29b
MD5 896255ebf5a4a60316cd8ff7a694435d
BLAKE2b-256 00f570f2136fbc475d46276f9bf7311089f6195fd2266b337af951a89325af18

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp36-cp36m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp36-cp36m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 017d387b9ae810ad6d8ebb09914a885376eef63ba98ce6b461945f6a62a04afb
MD5 3fbc5ac124d705ac99a7e1c43af5fcec
BLAKE2b-256 38c3fd8f0d8d68bbf56307b5ef2137ce7f789866ea087cc83a100d37ace48cb4

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b1dc60984ccb59e4d4ccf6781d83cd02eb3eac5907720cd34845ac0cb97c91b5
MD5 c668563b23235505149d30365818a10f
BLAKE2b-256 55e5bdc3e46800989e6313458237775471c06865aca0f8412402731cbd7aaa8c

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5b93fc6e26b905d19d2c7671acf3b758e601f79525794ecb68a6e2558f8bf1b0
MD5 8c15b56eb5fd92f4039ac901aa19fb40
BLAKE2b-256 1dee863dbfaa1de8f5d67c489a83f6aa060571bd4da639bb5614409f16b45953

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1259ee6433275e30d8b733ac3f1b4523b843ec8efc980120355438eb8c495ac
MD5 1616fe6b15dd323898e7066744164755
BLAKE2b-256 67e8ca975ea19ddc75ae7b7f3592988a512adadd3ede581d4d59050d6b43ad0b

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e51c78380e812521a72d632d8e8b3d64a783d08672092440b8d65a0689a4e153
MD5 af27b312877f89102a1280e39bd96942
BLAKE2b-256 8c077af39cfaaf260efd734d8ff14f80d25edc6be292fa1083ad5e3787cc0ee8

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f810953bb9cdefebdec7e7498e3497a5ac97588e292af604d868814187e95b55
MD5 53b12fd03b0eb470a26be1d1a82caaf0
BLAKE2b-256 24e315a22791d464d6bbea032ad07906bb13518b86a5683d8eb6bfe1137527a3

See more details on using hashes here.

File details

Details for the file xxtea-3.3.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.3.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 22dc86ed09d05981b237f93b2e142677867a6c36303676fa4f5afdc4b71ebc28
MD5 def6df448ac45568d7b3757a461fb400
BLAKE2b-256 be7bf77cba11185a87e890025df8b5f988d34b8d360fcdce2b3457d7f1fbba5b

See more details on using hashes here.

Supported by

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