Skip to main content

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. A non-standard 4-byte block PKCS#7 padding is used to make sure that the input bytes are padded to a multiple of 4-byte (the size of a 32-bit integer) and at least 8-byte long (the size of two 32-bit integers, 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(), plus an XXTEA type for reusable cipher objects.

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

XXTEA Type

The XXTEA type holds a 16-byte key, rounds, and padding setting, so you can encrypt and decrypt multiple times without passing them each call.

>>> from xxtea import XXTEA
>>>
>>> cipher = XXTEA(key, padding=False, rounds=128)
>>> cipher
<xxtea.XXTEA object at 0x...>
>>>
>>> enc = cipher.encrypt(b'12345678')
>>> cipher.decrypt(enc)
b'12345678'
>>>
>>> hexenc = cipher.encrypt_hex(b'12345678')
>>> cipher.decrypt_hex(hexenc)
b'12345678'

rounds defaults to 0 (auto), padding defaults to True. rounds=0 means 6 + 52 / n, where n is the number of 32-bit words in the data. They are stored on the object and used by every encrypt(), decrypt(), encrypt_hex(), and decrypt_hex() call:

>>> c = XXTEA(key)                          # rounds=0, padding=True
>>> c = XXTEA(key, rounds=64)         # override rounds
>>> c = XXTEA(key, padding=False)     # disable padding
>>> c = XXTEA(key, padding=False, rounds=42)

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, using a non-standard 4-byte block PKCS#7 scheme. The pad byte value is 4 - (len(data) & 3) (range 1–4), plus an extra 4 bytes when the input is shorter than 4 bytes to meet XXTEA’s 2-word minimum (producing pad values 5–8).

Because padding always adds at least one byte, encrypting an 8-byte input produces a 12-byte ciphertext. This is incompatible with other XXTEA implementations that use a standard block size or skip padding altogether. Use padding=False for raw, unpadded XXTEA.

>>> 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. rounds must fit in a 32-bit unsigned integer; values exceeding 2**32 - 1 raise OverflowError.

>>> 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 these functions, a ValueError, TypeError, or OverflowError may be raised:

>>> 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.
>>> try_catch(xxtea.encrypt, b'x', b'k'*16, rounds=2**32)
OverflowError : rounds value too large
>>> try_catch(XXTEA, key=b'short')
ValueError : Need a 16-byte key.
>>> try_catch(XXTEA, key=b'k'*16, rounds=2**32)
OverflowError : rounds value too large

Download files

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

Source Distribution

xxtea-5.2.2.tar.gz (21.9 kB view details)

Uploaded Source

Built Distributions

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

xxtea-5.2.2-pp311-pypy311_pp73-win_amd64.whl (15.9 kB view details)

Uploaded PyPyWindows x86-64

xxtea-5.2.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (15.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

xxtea-5.2.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (16.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

xxtea-5.2.2-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (15.5 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

xxtea-5.2.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (12.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.2.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (12.7 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-5.2.2-pp310-pypy310_pp73-win_amd64.whl (16.0 kB view details)

Uploaded PyPyWindows x86-64

xxtea-5.2.2-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (15.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

xxtea-5.2.2-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (16.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

xxtea-5.2.2-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (15.6 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

xxtea-5.2.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (13.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.2.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (12.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-5.2.2-pp39-pypy39_pp73-win_amd64.whl (16.0 kB view details)

Uploaded PyPyWindows x86-64

xxtea-5.2.2-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (15.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

xxtea-5.2.2-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (16.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

xxtea-5.2.2-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (15.6 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

xxtea-5.2.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl (13.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.2.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (12.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-5.2.2-graalpy312-graalpy250_312_native-win_amd64.whl (16.2 kB view details)

Uploaded Windows x86-64graalpy312

xxtea-5.2.2-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.8 kB view details)

Uploaded graalpy312manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

xxtea-5.2.2-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (14.9 kB view details)

Uploaded graalpy312manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

xxtea-5.2.2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (14.0 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

xxtea-5.2.2-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl (13.1 kB view details)

Uploaded graalpy312macOS 10.13+ x86-64

xxtea-5.2.2-cp314-cp314t-win_arm64.whl (15.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

xxtea-5.2.2-cp314-cp314t-win_amd64.whl (16.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

xxtea-5.2.2-cp314-cp314t-win32.whl (15.3 kB view details)

Uploaded CPython 3.14tWindows x86

xxtea-5.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl (54.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxtea-5.2.2-cp314-cp314t-musllinux_1_2_s390x.whl (68.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxtea-5.2.2-cp314-cp314t-musllinux_1_2_riscv64.whl (50.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxtea-5.2.2-cp314-cp314t-musllinux_1_2_ppc64le.whl (57.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxtea-5.2.2-cp314-cp314t-musllinux_1_2_i686.whl (61.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxtea-5.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl (61.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxtea-5.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl (54.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxtea-5.2.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (51.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

xxtea-5.2.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (55.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

xxtea-5.2.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (72.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

xxtea-5.2.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (59.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

xxtea-5.2.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (64.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

xxtea-5.2.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (56.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

xxtea-5.2.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (60.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

xxtea-5.2.2-cp314-cp314t-macosx_11_0_arm64.whl (13.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xxtea-5.2.2-cp314-cp314t-macosx_10_15_x86_64.whl (13.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

xxtea-5.2.2-cp314-cp314-win_arm64.whl (14.8 kB view details)

Uploaded CPython 3.14Windows ARM64

xxtea-5.2.2-cp314-cp314-win_amd64.whl (16.3 kB view details)

Uploaded CPython 3.14Windows x86-64

xxtea-5.2.2-cp314-cp314-win32.whl (14.9 kB view details)

Uploaded CPython 3.14Windows x86

xxtea-5.2.2-cp314-cp314-pyemscripten_2026_0_wasm32.whl (9.1 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

xxtea-5.2.2-cp314-cp314-musllinux_1_2_x86_64.whl (50.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxtea-5.2.2-cp314-cp314-musllinux_1_2_s390x.whl (63.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxtea-5.2.2-cp314-cp314-musllinux_1_2_riscv64.whl (47.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxtea-5.2.2-cp314-cp314-musllinux_1_2_ppc64le.whl (53.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxtea-5.2.2-cp314-cp314-musllinux_1_2_i686.whl (47.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xxtea-5.2.2-cp314-cp314-musllinux_1_2_armv7l.whl (49.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxtea-5.2.2-cp314-cp314-musllinux_1_2_aarch64.whl (50.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxtea-5.2.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (47.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

xxtea-5.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (51.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

xxtea-5.2.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (67.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

xxtea-5.2.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (55.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

xxtea-5.2.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (60.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

xxtea-5.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (52.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

xxtea-5.2.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (47.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

xxtea-5.2.2-cp314-cp314-macosx_11_0_arm64.whl (13.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xxtea-5.2.2-cp314-cp314-macosx_10_15_x86_64.whl (13.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

xxtea-5.2.2-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (13.4 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

xxtea-5.2.2-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (13.4 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

xxtea-5.2.2-cp314-cp314-ios_13_0_arm64_iphoneos.whl (13.0 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxtea-5.2.2-cp314-cp314-android_24_x86_64.whl (14.7 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

xxtea-5.2.2-cp314-cp314-android_24_arm64_v8a.whl (14.4 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

xxtea-5.2.2-cp313-cp313-win_arm64.whl (14.4 kB view details)

Uploaded CPython 3.13Windows ARM64

xxtea-5.2.2-cp313-cp313-win_amd64.whl (15.9 kB view details)

Uploaded CPython 3.13Windows x86-64

xxtea-5.2.2-cp313-cp313-win32.whl (14.6 kB view details)

Uploaded CPython 3.13Windows x86

xxtea-5.2.2-cp313-cp313-pyemscripten_2025_0_wasm32.whl (9.1 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

xxtea-5.2.2-cp313-cp313-musllinux_1_2_x86_64.whl (50.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxtea-5.2.2-cp313-cp313-musllinux_1_2_s390x.whl (63.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxtea-5.2.2-cp313-cp313-musllinux_1_2_riscv64.whl (46.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxtea-5.2.2-cp313-cp313-musllinux_1_2_ppc64le.whl (53.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxtea-5.2.2-cp313-cp313-musllinux_1_2_i686.whl (47.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxtea-5.2.2-cp313-cp313-musllinux_1_2_armv7l.whl (49.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxtea-5.2.2-cp313-cp313-musllinux_1_2_aarch64.whl (49.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxtea-5.2.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (47.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

xxtea-5.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (51.5 kB view details)

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

xxtea-5.2.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (67.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

xxtea-5.2.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (55.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

xxtea-5.2.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (60.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

xxtea-5.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (51.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

xxtea-5.2.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (47.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

xxtea-5.2.2-cp313-cp313-macosx_11_0_arm64.whl (13.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xxtea-5.2.2-cp313-cp313-macosx_10_13_x86_64.whl (13.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

xxtea-5.2.2-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (13.4 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

xxtea-5.2.2-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (13.4 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

xxtea-5.2.2-cp313-cp313-ios_13_0_arm64_iphoneos.whl (13.0 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxtea-5.2.2-cp313-cp313-android_24_x86_64.whl (14.7 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.13

xxtea-5.2.2-cp313-cp313-android_24_arm64_v8a.whl (14.4 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

xxtea-5.2.2-cp312-cp312-win_arm64.whl (14.4 kB view details)

Uploaded CPython 3.12Windows ARM64

xxtea-5.2.2-cp312-cp312-win_amd64.whl (15.9 kB view details)

Uploaded CPython 3.12Windows x86-64

xxtea-5.2.2-cp312-cp312-win32.whl (14.6 kB view details)

Uploaded CPython 3.12Windows x86

xxtea-5.2.2-cp312-cp312-pyemscripten_2024_0_wasm32.whl (9.1 kB view details)

Uploaded CPython 3.12PyEmscripten 2024.0 wasm32

xxtea-5.2.2-cp312-cp312-musllinux_1_2_x86_64.whl (50.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xxtea-5.2.2-cp312-cp312-musllinux_1_2_s390x.whl (63.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxtea-5.2.2-cp312-cp312-musllinux_1_2_riscv64.whl (46.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxtea-5.2.2-cp312-cp312-musllinux_1_2_ppc64le.whl (53.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxtea-5.2.2-cp312-cp312-musllinux_1_2_i686.whl (47.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxtea-5.2.2-cp312-cp312-musllinux_1_2_armv7l.whl (49.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxtea-5.2.2-cp312-cp312-musllinux_1_2_aarch64.whl (49.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxtea-5.2.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (47.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

xxtea-5.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (51.3 kB view details)

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

xxtea-5.2.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (67.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

xxtea-5.2.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (55.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

xxtea-5.2.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (60.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

xxtea-5.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (51.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

xxtea-5.2.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (46.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

xxtea-5.2.2-cp312-cp312-macosx_11_0_arm64.whl (13.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xxtea-5.2.2-cp312-cp312-macosx_10_13_x86_64.whl (13.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

xxtea-5.2.2-cp311-cp311-win_arm64.whl (14.4 kB view details)

Uploaded CPython 3.11Windows ARM64

xxtea-5.2.2-cp311-cp311-win_amd64.whl (15.8 kB view details)

Uploaded CPython 3.11Windows x86-64

xxtea-5.2.2-cp311-cp311-win32.whl (14.5 kB view details)

Uploaded CPython 3.11Windows x86

xxtea-5.2.2-cp311-cp311-musllinux_1_2_x86_64.whl (49.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxtea-5.2.2-cp311-cp311-musllinux_1_2_s390x.whl (62.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxtea-5.2.2-cp311-cp311-musllinux_1_2_riscv64.whl (46.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxtea-5.2.2-cp311-cp311-musllinux_1_2_ppc64le.whl (52.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxtea-5.2.2-cp311-cp311-musllinux_1_2_i686.whl (46.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxtea-5.2.2-cp311-cp311-musllinux_1_2_armv7l.whl (49.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxtea-5.2.2-cp311-cp311-musllinux_1_2_aarch64.whl (49.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxtea-5.2.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (46.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

xxtea-5.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (50.7 kB view details)

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

xxtea-5.2.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (66.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

xxtea-5.2.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (54.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

xxtea-5.2.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (59.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

xxtea-5.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (50.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

xxtea-5.2.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (46.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

xxtea-5.2.2-cp311-cp311-macosx_11_0_arm64.whl (13.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xxtea-5.2.2-cp311-cp311-macosx_10_9_x86_64.whl (13.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

xxtea-5.2.2-cp310-cp310-win_arm64.whl (14.5 kB view details)

Uploaded CPython 3.10Windows ARM64

xxtea-5.2.2-cp310-cp310-win_amd64.whl (16.2 kB view details)

Uploaded CPython 3.10Windows x86-64

xxtea-5.2.2-cp310-cp310-win32.whl (14.7 kB view details)

Uploaded CPython 3.10Windows x86

xxtea-5.2.2-cp310-cp310-musllinux_1_2_x86_64.whl (50.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxtea-5.2.2-cp310-cp310-musllinux_1_2_s390x.whl (63.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxtea-5.2.2-cp310-cp310-musllinux_1_2_riscv64.whl (46.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxtea-5.2.2-cp310-cp310-musllinux_1_2_ppc64le.whl (53.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxtea-5.2.2-cp310-cp310-musllinux_1_2_i686.whl (47.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xxtea-5.2.2-cp310-cp310-musllinux_1_2_armv7l.whl (50.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxtea-5.2.2-cp310-cp310-musllinux_1_2_aarch64.whl (49.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxtea-5.2.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (47.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

xxtea-5.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (51.5 kB view details)

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

xxtea-5.2.2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (68.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

xxtea-5.2.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (55.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

xxtea-5.2.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (61.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

xxtea-5.2.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (51.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

xxtea-5.2.2-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (47.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

xxtea-5.2.2-cp310-cp310-macosx_11_0_arm64.whl (13.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xxtea-5.2.2-cp310-cp310-macosx_10_9_x86_64.whl (13.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

xxtea-5.2.2-cp39-cp39-win_arm64.whl (14.5 kB view details)

Uploaded CPython 3.9Windows ARM64

xxtea-5.2.2-cp39-cp39-win_amd64.whl (16.2 kB view details)

Uploaded CPython 3.9Windows x86-64

xxtea-5.2.2-cp39-cp39-win32.whl (14.7 kB view details)

Uploaded CPython 3.9Windows x86

xxtea-5.2.2-cp39-cp39-musllinux_1_2_x86_64.whl (50.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxtea-5.2.2-cp39-cp39-musllinux_1_2_s390x.whl (63.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxtea-5.2.2-cp39-cp39-musllinux_1_2_riscv64.whl (46.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxtea-5.2.2-cp39-cp39-musllinux_1_2_ppc64le.whl (53.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxtea-5.2.2-cp39-cp39-musllinux_1_2_i686.whl (47.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxtea-5.2.2-cp39-cp39-musllinux_1_2_armv7l.whl (50.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxtea-5.2.2-cp39-cp39-musllinux_1_2_aarch64.whl (49.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxtea-5.2.2-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (47.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

xxtea-5.2.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (51.3 kB view details)

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

xxtea-5.2.2-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (68.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

xxtea-5.2.2-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (55.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

xxtea-5.2.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (60.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

xxtea-5.2.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (51.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

xxtea-5.2.2-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (47.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

xxtea-5.2.2-cp39-cp39-macosx_11_0_arm64.whl (13.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xxtea-5.2.2-cp39-cp39-macosx_10_9_x86_64.whl (13.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: xxtea-5.2.2.tar.gz
  • Upload date:
  • Size: 21.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2.tar.gz
Algorithm Hash digest
SHA256 eae53689460d8eafc145f8b35a26bf9b0856faf4a0ae570b0c94ad2303bab262
MD5 3253b535dd1e4da7316060e1e5818b71
BLAKE2b-256 ca374ff5c2c671ff1354c7560638fdab16ec5254aa31edd9e13969000359eb6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2.tar.gz:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b13b609726726996c42517db9dcaef39f1277dd48c1dfacb2260f7af6b9234db
MD5 7c0c7ffaa549b242b93121549e8810ea
BLAKE2b-256 9519b198294f4a94ba9f98c362f907141aee1b8db96a6d4ca277fe59a4816bde

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-pp311-pypy311_pp73-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6ab0203121f371212f5c647a0cae69460e5e91951715196ac5523efbdeca9b2d
MD5 33230d866291effe3e6c0ef04e98ec5c
BLAKE2b-256 4c79f0145250b4e2ff1d4a84f206059ae40b8300706edad61a6606c24b8f81c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0aa6ac794825d6d7c37aa62c7cc8a2e285eafcef64999a1bf75e02cb27d756a2
MD5 ee50ac6c04c3d535e4379b5a45a83e65
BLAKE2b-256 840fa7b1e839468a36031f23b43ad8642ad501529ab43452f5422142c4e6c71e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d9e8a3bf52898366a12c893ef44299308bd0e5fe45bd769038279786fe5889b8
MD5 3f76e4145efcecef921408447b2d0bba
BLAKE2b-256 d6fbf13907965f00b3bfdc15f83322824dcb920da59d6b35a9a22ddfa79db245

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40bc209f4b8c1746e10d48f9af5399dc29b9558a5ec33aec0dc85f6514201d18
MD5 aa180eb381562eca44bddc2fee405d1d
BLAKE2b-256 cb9bae9ae92df10c502d02fd55bbe553109243916a9546512d5edc1e8b47ddc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 80d060a7dd808b335074a82ad0ca27a465b780056bb6d30c37f2c264324ad0ef
MD5 71e1320a287ecab95755dd0dfa293649
BLAKE2b-256 8fda0c6bfb355f5f7aceda8f5cb0c45bdf33a3179f601592e19460e716358284

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f7d129f102dc6afd45e4f6acf66bec92680736b10771e5a75a0695b6c3c975d8
MD5 7fde5e1ccc80d9e6527b1fe082051141
BLAKE2b-256 b6cf8f4435e37a7d5a4563de4f499a59a320074ff5716798062f20ad51507ccd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-pp310-pypy310_pp73-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a45057c78b7d9d2ca3df65b92aa716cc19c524daa2081206797fbc34d69882b8
MD5 13a9471e16220e22465c6e715c43adc3
BLAKE2b-256 76688c289265aee2e1ed266da38819c7bcd35fbf5ea231859195bf529a83fa71

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d0e0a503f5d358ae5d5fb3f7e14677f3402bebfc1054ac554b1110ad5beaac47
MD5 a530ba01c3159d5223b7385c2e779b70
BLAKE2b-256 410249a048500f1e648687eac8b8fa54c2ad31268c7c9526fd8c10167136d06c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 363b66d8a3eef9d7ddd5d0303b036920e001bf95cace183e03fcb0c399bde665
MD5 dd83f62ea793086203ef87ef25d71266
BLAKE2b-256 9cbfeb6397b6526eeb1399791d905d4e56e3ea3453d377962f107b0b57ee9fb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88f94aefe9107bf38bc0194cad1e85e0aa5086fa8337544ccd0b6522867fd388
MD5 a28f0aba53ea57cefe40f6f096765e8e
BLAKE2b-256 3c885d81d11a97e871e83981d226c2683446b801282a4a8c143d69b36ed8f360

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7d5b164b1873ccac232e5b51207dc99e34861ba08bbf1a30285a098a08dd6366
MD5 17192478e8fc120dd74931d9bef326bc
BLAKE2b-256 b59bca7c6f04280307b6a763aaae66686dec4330bcec533bdc4f5c058f83947f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6a6a6610ad08ea09e69d7f322742f74bf9ca5bceac5958dedc2ec088ca63c617
MD5 71bf5a3a2bf911e816963807d6233860
BLAKE2b-256 cc00b8d7b89afeffcaa8527e559cb7071cb8dbfc6ad7f473b6a4b3239aad52c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-pp39-pypy39_pp73-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cecc38cc778805a8dbab11a7c0d8f56f7185cd3d51a029eecf61dd7d4f7dd2ba
MD5 5b29cc9a9d8b843da1d3d296764efa76
BLAKE2b-256 a16e74b14ced1c35fdbec1d6b63b5fe83a1dd4bce3bae13f6362a8ae66c675a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fcb5c140f72293dd3fb0aef804e48f6e7874996dd232a224889fa609c80933dc
MD5 9f6882d4456df9d23294fef0b3688e12
BLAKE2b-256 e4387ea5971a9adbbedf28bd793663dabc813baf54c7540cafa42195ae142552

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 84a018f220a816e595752edb8c04d1186889abbabe98905111a64d0aef9f8f7b
MD5 eab9a5b9a8a3f30680c3c65ecf6095d6
BLAKE2b-256 45fe981c9b60a09745da44bff48af3df7e0da389a1a3eefd6f452aaf1fa084b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 125f983eaa81059f445bc5ef0fb0fae43d3f197ca1d13989d8f25279fed5c5a8
MD5 8b0648c1c51b0402ac6465e2fa7fd225
BLAKE2b-256 d92e4aef2d871782a472d57d01e328dd9d6c41eb7b96c41e3fab6e7d4bf28d37

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9ba7cc04dae5de519a2d205383391a22fdbd3078e985975484d735a9823ec09f
MD5 c368c2a8a04caa62bcb856c9508e31d0
BLAKE2b-256 112cd2311b4604ce1c7617836d5085a214e9ca40d9f1f474a716ec2b4d73b2b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-graalpy312-graalpy250_312_native-win_amd64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 2dddf8e96e61d332616ea87bf5bd4186eb2c6fe535c09e394bd7aa021ef539b9
MD5 a0b0f5af6fb091bb80ede445eaa0dd05
BLAKE2b-256 a42c449ae7d097981b3ec8ae5ef1d59578eaa9cb08ce52caee47a49be512dd14

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-graalpy312-graalpy250_312_native-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ff05c28fabdf0df5cd9ba3ea86f743e8a98e3bb3d511e336cf8cebba9253d912
MD5 a79d6c99359c72698dfc4a33bb2a09cf
BLAKE2b-256 79476308533b7252aa87641c8cf391b92c1b024d7aabf32d6b74e9f12b72df27

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 daa6e8d68a0f5414f502e522cf8359875432d4a06e199408226732b9d49b4526
MD5 d8d5090c504052687fcc63bda3027b16
BLAKE2b-256 d8aa594192819ddd3346702dc6fb99ea4c0cff0818d0049ce7916add01f981d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d253e8ffb4026b0bd8a416e6327fbdfd478049c48131ee27288506caf9d26a2e
MD5 f5a2098eb0595ffe1d9599d102727ea6
BLAKE2b-256 d8f862e81dee9e1fc48f37a01b8d63a90e69823556ed913edc5eae3c9acf9ca1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 78760fa438488de08c2682c4378d2c907613ce87b2b55715a94a1f72745588cb
MD5 a7ffbe1fb589ecb3a191a8540e864726
BLAKE2b-256 ac328d736326ef57777e0970a986667ee43890cc947bd568e0c17166ca0e4bcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: xxtea-5.2.2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 15.1 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 156598eed132bde8e115578429c4985ea11c9a08dcce4c4a8fe4eb193fb9f453
MD5 73a143ead6c2604267c599bdf4639294
BLAKE2b-256 b2bbc806739520ceae77ce8ebe655239a0cae0fc194fb5db1243d87981a57c99

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314t-win_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: xxtea-5.2.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 16.8 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 bfad020c6d69dad5cbc8334ce085b0cc17970c3352be450d7314db0ffdf37373
MD5 709832b001901ee47fd32e3fa4e25ed2
BLAKE2b-256 ab6d00c802a759d2f280e420df85fa6eeff8f6ee9c4dafbcc5dbfbed7e1d5361

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314t-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: xxtea-5.2.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 15.3 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 cd40bc426e6a423fd71848bc14f7b9159950c16e2c45f963def367fd0eb0ec3b
MD5 a0dc507dd03de09bd6224ce37cb7bc6a
BLAKE2b-256 958cf443a48cacbafc1b48239edfda747820c8098db553f16f1a9b5b2526e5f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314t-win32.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d30fa943394c63b058c8db8c72be82f5011a4aac3874e71e48887891897ab47e
MD5 81f84cfcc1140b0de7582ade0b741114
BLAKE2b-256 73f8d7029f496510d494385e72d478603a58435c3a56928269d52ff716a3221e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6e7e454947db0532367104cbc197b02c8554a60a5b43dbd44ac0f24307a9d9b5
MD5 896fbb8cb97503d301dad5559c5bd08a
BLAKE2b-256 fe4ad2fb268bab8bb351014a97608d626af2f79bd8f5e668995a4a7a6d067c5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314t-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7237cc1500106af85d549407c08595776f66d51e974edc96d79c3e40beab0f30
MD5 cf6d48128d2c825c3d632566a62ed5fa
BLAKE2b-256 90bf6310db0fe67b7f7b0701347b8191b141a5e9b266f8752ee81eed620f3f96

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314t-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f6396d77142d7499c9c25fdc58d307b63f0666451008a7f6c08e89ba9c1ef4a3
MD5 f0addf082e5767cc7b9562b31820291e
BLAKE2b-256 1592a4ffde8f1753736eb66dfe159d3ace3a092e32126223b5b7d2fc960fdf67

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314t-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 62c4d8fde3ada3453f867adad9ae0db85e98790bfb9009bc370aab1d8c4d17ff
MD5 8f4d31bd35e180be6b56618590155f9f
BLAKE2b-256 088ca3dd8fc91c258c278dd6ad2d6ab58ad96eb01bc16ba2f1992829cb79a0ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9a67e4bbbc398407297ceb935bb05ce555010494effdbd37eaecbc4ba6242b0f
MD5 6059c4c80cd8aeb27b3a1e4b1dc24261
BLAKE2b-256 a7a063a4e7d8999a2b35d030c65a22fc749a8acd24dda6e961f5a6da52e51878

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7664705cc3efa77793200b19a9c20dd13e5e91384b8079f0b1713f1b727d052c
MD5 9670ab88e42dc2544b7d5bcaa5f4d5e8
BLAKE2b-256 456b226b8a9d2315cc38769fe9ee14dfd93efc0c9a69504290cbcb228f448332

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c72530b4ecb766b1ce61fdf73b8119bfc0736b9831a38c7c8180339edc2dd037
MD5 0f0c316d698120c33726962b64f4db15
BLAKE2b-256 d9cf286f8eb9031b6b6ef15e0041e457acf509fff9d921aa8e22604e182ce2b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c0013d4f83355a95271ca70e2cdd6d9ab7ed9447374fdeed3753c657f202b6bb
MD5 88bd13ff24abf2e28be0fad2e1886ded
BLAKE2b-256 0f004042475bd6e6aa6861769c57ef444a90919767ba420be3e0532cb9e7a001

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 20643b6ae1cd4e797cd244c52ec805cc66ff1be183bf3a78f022ee49c57299eb
MD5 972f327361720ecf1bbd29d04f4f1686
BLAKE2b-256 0b960f34ef07284c957b8d38d920783c7ed15727ed47cc4795e91d86a94a7129

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f03401c873f6a89c0b9e040a37f82a6d55c2bec360e125048513498827e95ce0
MD5 759aa8b266dc6e3f014d33e3cd7926c0
BLAKE2b-256 143959a317b72cf6278ff5e208a91aa613d5556c6a2dcb3095fb28eb06e5f74c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 9e9b9a121d6617819d7652bf203ecedc00eea47fc66ec613ca24508eea881e19
MD5 1ef46b8ec731777f86e5e729144848e9
BLAKE2b-256 675277e506fee7ae31e5069372cef2486215e2b0653a92f1e119e43e0860af13

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 243f1c520fdfdaa52518ed0a58aba6179049e76eae9a063dfc46e89ae021176a
MD5 a466e62c29fa0529b45392662b1871f2
BLAKE2b-256 8e6d2170d14d48cfc906c85e055a0b1da0ab55c02972d926b77eb2bec03adc44

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5dfa811f59fb014ee9aa72856c664466d4ef141292436e524a8fca77155dba1a
MD5 3a26ab88d04eb9ebd2ee6b881f0d26d4
BLAKE2b-256 f472a5bb00f6456bdca9182a22e6b1e55bc63208716fcffefdc120addf8e1f96

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0d6a3fdf0171c5b62ab334b11b141a87865ee2f3c457e5481c033c9fdc92eaa
MD5 4f66486ff8779e71b2cc0cddb0d26224
BLAKE2b-256 f3770d12966b2e113a534188b32c205594926fc5d06fa2171881100514d54766

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ced8bcd677f83ca93fd03b5b5506f81dd0d340bbcbaf2d370a324dd62af68049
MD5 c66bbb8498904406c273695a855c6ee3
BLAKE2b-256 798b84266ad7039bed03f052829e2c61e3e0fabb90835651610da19db4226b5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: xxtea-5.2.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 14.8 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 85dd81e4b120ca4084f474f9c50c6fdbbeb0ad2c82642089a9e5530cbe0ededd
MD5 aa75cfc2915cb93cfe243617215a1897
BLAKE2b-256 aea3affd01cf55b16cd418a44aede71c173e8840fddd94bff84834f58d65a9a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314-win_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: xxtea-5.2.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 16.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5a8d846c0cdfe37b71916c29fe10fa7d6ea3c59b5f50b15fc11741fbb6a1ec37
MD5 c123862282e9b977bf7211fd32a6544c
BLAKE2b-256 cc7491ff5040c0bb5d85cb13f9fcc70af961e029d4f121125c5dd45aa0d4c72b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: xxtea-5.2.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 14.9 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d34f90234b9708f41a7a93dafb836b3e53e6b3621605f971ef0c7487db903ca9
MD5 ad7bc06fdb312649daa8ae2f234c36f2
BLAKE2b-256 38e373927964bc0c76dbc6642b3ce00a9fdee59e3538eb37de2e540f3902e7bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314-win32.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 fce4888be60d0e12c3bf9158db8034e28c0fb0f3298a1a58352094ecde265d10
MD5 d6f53a9e89319ee6fbc6d623769605ea
BLAKE2b-256 b444fa8b8e6b1e5beae6f02983ec665877ba113e107d7e8de84a4fa68d1bbfe2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314-pyemscripten_2026_0_wasm32.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f5d8da35e62c0968262b9ed4d71db52d909cb98de899b81e720e909aaeddd2a
MD5 59473a7935eb497f890af748f9ff988d
BLAKE2b-256 49ee686b5a33810e9395630ad3beb277e877337652b7cdbbc08cd356c2da6279

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 01af035226e31c88ba1fe0bcda3efc46607d980efb683d0515d6cb86c64657d7
MD5 a03badbe8fc8f0330a4a019982c56411
BLAKE2b-256 7f3f8619881f1f11ee57a6b5fd696cb181dae3a58cab1e04d643842a7d6b2c11

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d87ccae6f32f5f1bced8c2f54b105c437cfd7753453a03922b1004813875936b
MD5 9a911aa349a317ad57d2eefcb12d8422
BLAKE2b-256 b79f70f721bdd29d7efdf014e846378f0badfb08b0e26498773a66ec95b88e1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 563c98ee2f7990e6c8674796ac46108f1d4045eb67264209734976322cedf8e4
MD5 c6d742743fbf596b757e6da574822b9e
BLAKE2b-256 1e81c8b414f7c4a51819ff54e0aa337c71d569bb57a54685418f09c4b6e7471f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d079e9393125178d688ed4279d842383fcda82c64dd683f7e8e2813469f83e6b
MD5 e70b06f5ed6e7147dbafaf27f77d0ed2
BLAKE2b-256 0d729917ff5f461aed841f955ffae0b932f97dea26d82097e05bb7bd2cfcf2a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 302c32e31cd7d76180cd6ac366dc4ff3ee3e8b92e223104bc7d66900e2e04e98
MD5 ebb3ebdb8496897a8ce0ec39f27f5014
BLAKE2b-256 f057d970862d16c8f54f25801bbbad79e15cdafbadfae62a873f23793d27086a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d41f139e89219c9f25597f8ebb3d037ce6fda8830f762d3907c56a15eee0ee8
MD5 2baa8ccaecf85285c1f7900aa59e3bc9
BLAKE2b-256 b5eafddb87dc2d64d97deee1be009007061d76dd0b808e777d27e313bfcf8140

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 de974f69720f1ed0eb909214817a4a14d9b388a7b0c3c7b27e9f4a49e6afc7d9
MD5 e35f92a56d89b80b8626d22a021b3d6d
BLAKE2b-256 204b77b67a95112fac7d71c693594a8e964609e0b8a3a49dcb692c1a8dee2d26

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eda8a4e507cc27dbed8ab01ddf578ef3a16b0aacfe2437e31221023f59c5f0b0
MD5 7df14c70c86597b63c24622df13e4e47
BLAKE2b-256 9ce8c02033dfe474372e5e7c426a4ff9e6ef6ec07f7bae61b39086cfe2b77e26

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 027816b74ab09ca504f8d0c8da2696a60163e807d90804671546bf7433753814
MD5 80da9ded1fee8219fd6740b50ab3c9b9
BLAKE2b-256 fd3f8b26de2859c48600ce703dbdfc0a3a26a0ec9b7f8739bd5ec1a51188e895

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 143a8fab477d3039e488f69b9a34cf04516354100c969dd9513056ab2ebd2aeb
MD5 d6746cd176bec5cdb9b3bab7d281a7b7
BLAKE2b-256 5d6f6dca649dba4fa737667550d85d9f4e8a086881ac33631d0ff8db482cf133

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 76c6b41595b107ee8eec1470e7c449b7f4ea53e0e4bf0d53159229c5973dc1ab
MD5 c555d6cbfc855ffbfa7e80c12cba5aee
BLAKE2b-256 c42dbf7e5a2c7fbc2c6869112c4c188a1c0fbadc41ae989b1ab4f86ca12910b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b55558044e163cb090a08dc9b56a5631787d27025a649c313cdbaf72092c7d04
MD5 b857d1317b2265dcb77ec981bd01399a
BLAKE2b-256 d2de1f4e491d52daf015a47c4a449ad1ba48fd5beef2bd02ddd279e69e068e87

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 187b33830440a41827c59371541f29027702dfa72d80bc44b163ef0fdda1c010
MD5 2bac1da8d382f7056acc28a50b04aa15
BLAKE2b-256 2090fb02992a36a2dbfb3402ed3cc94c2bff6d8b8583e3ef0534f9a5fecc4e1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c58221af48fac8a6a2513f044763d3096ea2fd459982602c3f3a9fcd61bc186d
MD5 66afcebc65ba16041750f1227d933a4c
BLAKE2b-256 5270631811cd35a4eb5f82ba0975bedab6a1ba1f8a4cd5fb48978f1bb4938e99

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 252ca184b91f869030ac673e934ccc9e0c1dbe8bf51ff69d56ad825930c8de01
MD5 6924879d83cf091359f1bafd83568ebd
BLAKE2b-256 77351a80cff9aea93c32aee53eb16bfe87209c214ea51c053c0c972d8b821366

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 a6ece156c53e890a13bcacb00055426af4cb66178c22a0c2d4e6421764755653
MD5 50594bad8cea2398beb1b576f98f4323
BLAKE2b-256 7982577e6f5de30bc98e6b8be912a4300162271edc1367670deb58e23aaca907

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 155f63b8af345a13a11511ddfdbaa602c590bd1eb5c808f5d0e5e868f9d10a08
MD5 b29b1571f68f865f3f85e1f58001a669
BLAKE2b-256 022abdeff6e695799cdfa97c5f98bde47e06737e40a60d8135f522b4f6d9c4e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 386dcccf56ee1ecb52a1de684a040c0ef3b2a09d22825bfe439c808af957b534
MD5 fad09ad9ba58a7802d57f754f6f50d26
BLAKE2b-256 bd1479cce3b278b040efd69a6ba60f1989632215d4a5be8a91510d5807937a59

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314-ios_13_0_arm64_iphoneos.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314-android_24_x86_64.whl.

File metadata

  • Download URL: xxtea-5.2.2-cp314-cp314-android_24_x86_64.whl
  • Upload date:
  • Size: 14.7 kB
  • Tags: Android API level 24+ x86-64, CPython 3.14
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 33d9586eb85cafc20995e77734f20d77b8d53f62128461e2096001eb14b57948
MD5 42c13d30a6a0013d762f7f3882dd670c
BLAKE2b-256 b3af7ee3cc3588e88cc74b03e643943d05abafc5b84a0501037597b01054971d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314-android_24_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp314-cp314-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 a974eab5ebf6706cf701db0dd8c10f50680d8965a9fcc1d1156cf8be6c631bc4
MD5 2383f4052a667c2ad1fc7abef72cbb01
BLAKE2b-256 6273285d052bdc31c55c3f1b89683a61e7a1e15326e0ccf1654cc7d076e831d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp314-cp314-android_24_arm64_v8a.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxtea-5.2.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 14.4 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 f0ab327a61fac610c32545353f9b8bbc2b04319106c8a38917d7e484bc179553
MD5 819c0da9358e9f49c82cfc80b62f1742
BLAKE2b-256 90562044fcaa0289ea7349471de19719942d6f6e487f8d87d61026dc7aafcff1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp313-cp313-win_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxtea-5.2.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 15.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 71d66b21a8cf82cfe3b36e139d9dc67b94d31916b508e6499b0a6c84eb657ce8
MD5 80a4fd596bfec9914ffcbc451cf12cda
BLAKE2b-256 a0306c70497af17daf51f8dcdf155dcb450f1c0c2eaf8181890f8ec1d2a19835

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp313-cp313-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxtea-5.2.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 14.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 340d89b88f0b089b2ad35078d592703c871a92f0408ef9a2010fd53764e00408
MD5 891b008846f2b1626813b19ecd4fdb32
BLAKE2b-256 77b6b38d922da9c38fa36b0d18914b80ce8cd250729eabebb1ba9ddb405c0e18

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp313-cp313-win32.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp313-cp313-pyemscripten_2025_0_wasm32.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 f0ff3d7356b53338faa2a62628d719d27ffc0007fda8c00d92e4b50a29a041c5
MD5 b9e9318a80262d018510302486fd8d35
BLAKE2b-256 e1cb5c423e5a21f57b52f9b36a6ee5bdbf1f6d270445871f0d0c000e44dc2821

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp313-cp313-pyemscripten_2025_0_wasm32.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df120e0b94ffdb1a1f25de672137dc6a4254ca2eb8a8e1ebeaf7098c49b53e6d
MD5 544710f07443a49a92ab2127b444f979
BLAKE2b-256 bda758d3fb116d05dc7734d60b6fa19c49469e39e9d6532a1aa86c6a48ac15df

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 56b610237cd74b25639f91a2a2c299fbb099b313af9fc5aec616b0db2bc90a56
MD5 29d700cf5f97dd161028ccb7da0ed4e3
BLAKE2b-256 2929d568dc4ad5e8a5ec22a6ed80daeeb68c64bd574c18dcc6a9a0424bdafbef

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp313-cp313-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 539ce659701d32cd6527ddca5206504752e658a1276595a7cda5275ddf8c3f62
MD5 f9aed3beaaf6f3ea805b1faa58f95498
BLAKE2b-256 c6d2c9bc9279578e7dc84556f9c4fcac9094a8fcda3b358f2756383b1f3b1684

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp313-cp313-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c3bf91e4e50c62ddef040cb0bdc4b60e816ae1d057ca5590561c0e10dac584ce
MD5 23476b90d3f9bcf1baa47dbf656d1665
BLAKE2b-256 9f8b2bdfa102d3211edc1325c8e5d4464795f903ffa5ef56e0932ca90965e6cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 67f6a2928724a3426528c13245d98368643a9586406968c18bdf7b523f27fa57
MD5 00a30dd6f572d334123c43fbd63fc186
BLAKE2b-256 a0bd7fa3ec795a53a2ab9ea1db92a33c75db5abef9b2f7783f5332f235ee798e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dbcf8416a0aa016777bd404cf4f3cd46a714bbdae02b0719f6004528b63cbece
MD5 66a23efa49cf8a65bdb6ef8b6591b772
BLAKE2b-256 d7e9cad8a3c29cacf314e62436f086b549d69fbed704c1bdb59ee1ca8037e75c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01685f30a1cde3dfa3f488f19eed651b9c3324c65833bb9ede74dcc56a399e1e
MD5 0b684101d25a9c6f570c9d5d263df311
BLAKE2b-256 e8712622cc055ca565008f1b0b36aad4062802de956e4ab13f2399dbb9f5548a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 72031bc4d50199e709772bb9fb0246656ff10c8e3c8061c11cd3301912761c53
MD5 c78eb728a18f936cca8219a32d86b1f3
BLAKE2b-256 520c7901d1693456f5bc8d7eb164f6071e3893796cf2aacdca47511a91aba4f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d56a4c8cb665e2ce2a097e222bce8624bccb65ce0f424f4b526924d7a71a0ec2
MD5 1f7432bca897d98f847f7afa50b45a81
BLAKE2b-256 f74caacaa339270a504a9d7ed5c8aff2fd9c483f323f360bebff761eb50fea40

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 cf8eef9a89891a542e1a8552fd6b14d8ba61f117b922d1caab75ba076e04fbfe
MD5 7dc38155947d34cd6b7df637178c51f6
BLAKE2b-256 d8a9abd5466917bab169f1d8e28adc0f6d34593be20235c5a5af5ef8bb3dd687

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 47ef05e663bfdc6f0a88dae68c3a7f05f778a182dcef792b2f5ff76db12c5180
MD5 004bd878bc458c455ba319e7e2bf54fb
BLAKE2b-256 33b2d52088b0e83e6f45385f9da59f528b7fd0d0a1c267092a02f1abd4e39db7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 39f90297740d449cceb12a00acbc0304a66e046b06bc8c5c938b526bde334c2d
MD5 17d97633c3aff9b97d18f69784047361
BLAKE2b-256 08d9638e0fb52d1f15efd1989f9f24c5758b056e5334ec13d9c45968281de82d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3eed5694cca923e460ac7f6e8cf7bcb1d0f0966ec7d12d38eb152a0f39d4a188
MD5 412cca746870f9393d310bf731277b27
BLAKE2b-256 ee2e95fb4a933f8f70bf1403f41abc88ac0634ca699282850dd6e96f84da2217

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 bb96cece3ac5b250ee4842679af25b9afb0750857dd415c07a45679a4823ac03
MD5 c88453e1c74b7fc563f38a63021f5ec4
BLAKE2b-256 22844deb0c549d8ea9d7d86de96f5eb5a4e94c1a9e2317ddb464d6889fc16b47

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 acd84b367836e68c880ea3b1527505421bc159274d3679c2ede60f831683df3a
MD5 7d3d1407f7fc3e1d12fd89ada70ed5ec
BLAKE2b-256 b249e1d52d792dcb224f1e886a97e062876bebd7001ec86c9ba4e068c09d56ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8111fdfbda85c2a421cd2beb8dc808182ee19c75a76c5a011763eab440dd1402
MD5 cbf0b88010c9bc6c78c47f54573c12a5
BLAKE2b-256 699f89c7dc504ea354a2a9d4014d7e7b463c06a020c4ba6979f2fde926535b32

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 ed8da14290312a8bc73182f1efbf1ffd453e0db31d179b4f653a5216ff357a42
MD5 b7675d47bc235b06e55d7c830c0c3c15
BLAKE2b-256 a6d113241e4f50973604c63c896d8959da2a0dc0553b09c05309691933c74f50

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 cf1c7713234d168d147a2fcd9397646b75031a547d8a4c54d749ff69db8f606f
MD5 191305039ad8719f053509e74d2216cc
BLAKE2b-256 44f33169b2b38fb1bf2ef9726be86d11ac3f3f4e53243d0ff0bc6a96b6e95965

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp313-cp313-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 f9bf67a51212499aae82687a14f6b9454d10407267bdb8a0aa9d1ccc3aae6d2c
MD5 aa332356340a1af302c714e2cf1344a2
BLAKE2b-256 1130068996fc41c2bacea451f1f32f3d5ef038a6aa4b6a93b13e2c1e01c33fb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp313-cp313-ios_13_0_arm64_iphoneos.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp313-cp313-android_24_x86_64.whl.

File metadata

  • Download URL: xxtea-5.2.2-cp313-cp313-android_24_x86_64.whl
  • Upload date:
  • Size: 14.7 kB
  • Tags: Android API level 24+ x86-64, CPython 3.13
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 16f89fb4fb84deb509b5f82db1ee05d36b2441d912fdd549967549b7d5a558e1
MD5 ac80b95e1d99388d1b57db6e3cc84aa2
BLAKE2b-256 efeee4803c20f91f2183e4783817686adfa8491877b659d95e3223cc60cf9a40

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp313-cp313-android_24_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp313-cp313-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 9e1e9a901153d73b8de750e9fc7a64d9aa09e7b2e643cb67bbf493e32f351eca
MD5 1a89f6424692802ea9dabaf871d9c9ff
BLAKE2b-256 2c685bef746f7a8d7b2cca724bfbb98ea7d3e8ccbe63e452327abe410d30a021

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp313-cp313-android_24_arm64_v8a.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxtea-5.2.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 14.4 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 559814072f42f9b2845be050ea9eaed29757c3cb1ccb483a5d54fce5e282c557
MD5 787aa1436450b30332477bfc95eca901
BLAKE2b-256 2273a2b6ef4e569eabbf40fdbb2ee73e730f4332f19a94bb5175a2e421aede95

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp312-cp312-win_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxtea-5.2.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 15.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3d7e68f3ca106016f8a608a6ec30f602dc60c7c6a74939481365a3369a77f4cb
MD5 f2051a04846961d2ed7b648987061fcc
BLAKE2b-256 1a553f3e1e1657027694167943db42afc20e0acf8e4224117e397f06cb5231f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp312-cp312-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxtea-5.2.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 14.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8f67489950d47f5ea859e0da3996c5feb1042b3984c936dfe18a4ca0393b121a
MD5 d207e7dac2ed98ba4d42d67be1d30b60
BLAKE2b-256 dcdf18e0ff7c89fbdf9b0d04d7369235e941e6a9c77f5e249f79304ccf44555e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp312-cp312-win32.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp312-cp312-pyemscripten_2024_0_wasm32.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp312-cp312-pyemscripten_2024_0_wasm32.whl
Algorithm Hash digest
SHA256 1c7dd4cf0a41f5e77a4a5bdcd0f7053dc31fad6ef90e693c6cf05821b53626f7
MD5 a11f4e3af34671c32bd532cb1041d925
BLAKE2b-256 cc1c5d357f272fb309ccb9fff3c967ebf58c3fbc1fe8f12a2939b981980991f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp312-cp312-pyemscripten_2024_0_wasm32.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2616427a33c4d8aa8f1bfe8a393dbaa00a6ca83ea0cbc05090f04dfb3356e09f
MD5 342cef28b6b8765bc5b0157b87cefce0
BLAKE2b-256 2a3d6666aa67409c8c10604062e0c811c5a183970aa69869d119f30d1f0e3fd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 bff09de783af3dd09a794577352a6c89f65dd28aa69d805c6e4328b4d67a3450
MD5 d1c561ca28d21e6eb332d1188acc2ad4
BLAKE2b-256 1aba2931b86b4cad0f3f266fc4803b797dbf7d65c84162911779e873b15cda4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp312-cp312-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b99783de4c85ab1ab055305a35b640a585499add738559aa1aa4a49baeabb86c
MD5 472e026bc4b073b379776fff53b0b59a
BLAKE2b-256 e30c3c2ecf321366fbb0ba55aae5093ba922d4e2f7d56baab37b9b4cbebcadf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp312-cp312-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7bbbf3f3176db23c3d95315b9cec19f6cbdfc6d272b724ecde5bfb927649de72
MD5 101b83a07dd922c98db33af294e14662
BLAKE2b-256 5a8c43ea6269de11c7f777ab862b76a33caad8345b069e1ee89b0657b66d64dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e2983269d60482efc28b8d628a44b7ce44703fa10a9d73bff6909f0a2d8e2c21
MD5 b78ac36ffa141ae3a2afde50dbbe5685
BLAKE2b-256 8602750b26374f2e28db6469a1fd2ccc5d9c2f2453de5bfb6bb589c3797dcfdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 93d87e7029d7868404ac915834ca74253a7167d1fb229c7db24ae617a47eb08c
MD5 5389d0c14fba8e33ac6a952a63b69adb
BLAKE2b-256 d33e9af8588ca827a900e8f260368f987469ed9b4220c45c986d9f480da5e01c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e13cb86fe98de181bd7976c15d3aee5dd14a617593eee644af2149a57af67f44
MD5 ee91ed035a195739e9b869beb47f8420
BLAKE2b-256 2902252ca87a245a4ae3b9c5df38b8de2be73c98396bf7b82b90f2a88f31bb92

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f7f79ff0decee9927e3afad9facbc29a9136f60904df7ab7d4da242d8c94413c
MD5 6d1951f2a359ebba0ca6a633ff650a48
BLAKE2b-256 64f76cfff8d92dfdc7a3eea43d348089fe4913bcd5e6d31efed35c5649a5d1e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eb7f382a6aee825c79e9b677859a242844bdeea2c156de52df2c8fef9bed4856
MD5 7e25a5271643f508200dac88f1e64c67
BLAKE2b-256 208c2ad4396da0138468bf033abe5aabecd8fe0bcf3541f996e8ea9bd4f31bb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 97d74a811f5744605998f0f0e5234d67f94bf8c5fa02df7d388b2cccfb2e5c2d
MD5 13e55716c6ebbb037638985a60865262
BLAKE2b-256 9112a3340137fd3e6c270a25308848a355c2c505bab797f719be022a042e33cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b091239c43a9ebd6dbb05dc8ce972b7da32e71e67bb736e2ed991325d799bac5
MD5 2001d2071bd81ce08d2690e9ddbf1ca3
BLAKE2b-256 efe85ab7afc89df7bcd9e81a701e9190bda22889e912948e7219922af7de80bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 fe1f055936017a885217b995ba42871b6c6108372c4477fc1a3f15fc9bded743
MD5 2ac67d29c137507a141efc27fe6dacf8
BLAKE2b-256 9620235c955d7cd9868efba75d9f041cde02d559631de019ca9acbba261e4da4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4de8a9106afb02e00c0128fa09fa6b7a97a1fe8a74edee3172b60de568f00e67
MD5 113c33c586a3559e4aabd8376e0dffe1
BLAKE2b-256 9e8bd8050e45e40689b971289f69780e1a308cbdd06457f33377a920250e1859

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a2afcde63c6e9fed2c49bb8d84c492349bf465bf8a7eb7aa01f1dcf1421f9514
MD5 95c9b87162bef6b6657f6ce8ff296d62
BLAKE2b-256 3dfb3b7cd845348c3bfc3aef0081ae69594dad09895082419fef72467917e2b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26629dd2fb62816f32fee50304fcefced223011b53d035a7e43865c04774ee3d
MD5 622ea5a2c856efeaafd6d0c0edcbcb9a
BLAKE2b-256 d3aea7a8320026e38c141041268a451758fbae2013549fa9540283551d99b908

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e6d7c615eaa8e5954abc28fdf5e832449fed8e491ad1b77f97aeaed30ce4a131
MD5 bf91a772fd2d7213775c7c378278feb2
BLAKE2b-256 c8464368bef4bb0a35b8e771af44eb41ba28fcb5068e5ce4dc48fb43f462d979

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxtea-5.2.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 14.4 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 5c179315c40cab37525073d29b9f1e7021aa84537224ec9431b8cfb6ee3f2428
MD5 8badcca3590e26162c980bcad340ddd6
BLAKE2b-256 0c1bec2a8b69d663c4a4ed407061f05b479c2167f0071ab749bed7868a0507f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp311-cp311-win_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxtea-5.2.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 15.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 844c8d1e5ffd379e08d6f29523c6c3593055acc9efd3fd2f41fc13a757431350
MD5 e59c9d0febb8e8e38b81dc3652356871
BLAKE2b-256 00bec514a0daa00085b58d1a5f359a05cc9b5cd9886500163d4af6a5e507467e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp311-cp311-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxtea-5.2.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 14.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 34fb5510cc64c42cea7afc320f1407deb1ddc77f56e83786d85413b6c2a7b6a1
MD5 ddc5d141ee5a2089437f08ec2d3fe192
BLAKE2b-256 33da073bcb174e908028231c40a4ee257320b5f0b4dfa020d283e78bbbd03e65

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp311-cp311-win32.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a0bed75415380db374ff05adbde3ad14f77003bbfe74e0fd5a72b4668e97072d
MD5 533486a7696baaa637c2895ee7aa4366
BLAKE2b-256 a0a339aabfecf08e028fdad6613f7b1d15a54b49220b915864820973080f4834

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 cb76e9f973bf6a741427e6f0f2d308d21b200e6e8c232443978c8b5d3af9d81e
MD5 3fad7d1c69256c5ae1840c0dd0d40cae
BLAKE2b-256 b7c4ac510f336f7c2bb43ff2088fb5cbaa7bae71d85cc096260116b7fe3157cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp311-cp311-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9914e7593e72a1cc9d28591d3962ca298041816afdfd5e73072345d1a57dae4f
MD5 76ada33f17542e33a4d486735afd6aed
BLAKE2b-256 748ac68d0a12333f5c61df2722dad333f3fbcb3e0dd27de5d41d9fa477181cb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp311-cp311-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f9815e9b456e97158fb34777dff894be7c57f4b6f6420dcbe096817d050359a2
MD5 2a2ec51da98e7ff1da24755dd1b9789f
BLAKE2b-256 bb20f78e294bd0cfbf697bb5208904fcc46e7903040b6904bec9c150c723047c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f487e6799eae05bf2420292ab1e953165aad7763b6f564f2478f1e0a06e5ad0c
MD5 29e77564eea4db2172627bdb6d3135b7
BLAKE2b-256 1cbc4a3550e73994761e4b436f1ce9de7db5a5d6d459b0837fe87e6e95f1e694

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4356442ef82310670c79e724a76be2cf3e54a60e24b77a3e4c58e465ba7d8824
MD5 e806245348c16c65bfcf6780857ec228
BLAKE2b-256 bf3edf0ce894a10b58addb96b99be6cfc19ec46284ed3a6ece659d76d0132544

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b2878ed10482fe32f032aba5919f0d143d99f3483c513fb262f03bf8aed6b8de
MD5 d9bf13415fbf4ae970c44e6d168b8322
BLAKE2b-256 a30f58e5f466fa0d1b6cd7eea0d8e9572fdefdd14ed3da5597a2c5c0fcfce2c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 cadb9e145ad0ae0aca4a5388ea706ccc0bacea9e65dab959609231ec5c0a0c7d
MD5 81243a40f17a35367e3d03d057cb3430
BLAKE2b-256 a7a4c09b8d264c750457268aab86681099aa684494db4e5077a24d0c881303b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b1c4ac5e21dae44f4d245dfa66bc22446d5fda434b13338758e761db9d0273e0
MD5 f8a6f07db971e3fc73bc4c6267e42bc3
BLAKE2b-256 da8e98f8d818de21ed5d5ec24eb4d2fd3d81fac5db2491cbefae6448be58ce03

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 08888fd13d374237b729bfa7fa750dc06066f76635714ca5a8a33066ea7dd87b
MD5 b7b01843c7ea7e06867b70b7725b9714
BLAKE2b-256 e18c73a45913a6cc589ccdbd3083c4bab92a86b96f64e271ed4d9c3f522fe396

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7f8d145312333ab14f24494802dda3bfe15e3759ce3c2d7e3ca9c94faffaba1c
MD5 f6ebae5bfa16b97423ea1ae179c7c734
BLAKE2b-256 f3497f096c1976fa46174c201b962e282b8421d6152c8bed0c4d468649c9cd31

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6df0be4041f389f8369d4566a525b1549c92cdebacb3f71b5d43e47532a88abf
MD5 e524bf026acb5323e2f65f5a009e9c44
BLAKE2b-256 865f59d27454d6cb598c75c1bc38f18e676a0a771cbc072a4d2403eee4f3c12e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a756e0ffb02b81fcc8307c85abab288a8c0e1f60c59ab8c34bd3533ee4c19a53
MD5 862de7a9ee5642793d6208946b842ef7
BLAKE2b-256 913b38e95becf6fb43afe1fa611e326c70cdbf51ff6e088e8f4741646ce1e324

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 57aad6517971a63cec850a99c6db8b6e763d603f9c3c45ae30b9a12873a8a510
MD5 4a0e6c10392cdb1f02d630d3cd0cb839
BLAKE2b-256 ad1400e7a3e7eda15926b473368eba4724a32fe882c23987e2f8e2c6f476d590

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0364aa139d7839d67d6395b82e33525003643948202f9e220e186b2a99dfedbb
MD5 c1bce550d927a0db31f8b33cc3de1974
BLAKE2b-256 0ac50f93365690c744a655157da9ab81c80ea6a212c4c24fed0601e8c46997a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f2c313e974e384bea570cabf3d822775db09a660b3852761ae31d9a47e3a979
MD5 b5fa3a2b166febc196d38f33755a30d9
BLAKE2b-256 5b79a19cf6e68c46039ff638f2aa1d692d71cabe20bf4ee5f118e6714810fe78

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxtea-5.2.2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 14.5 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 e47982f06f3478c9bfa089ce0ff6de149508757fd952a957e87799b893b11c4c
MD5 5466a4384fe36bf30f7d264961f34eb5
BLAKE2b-256 75aee7ce93cc240ca97595f9116ed08913294e07332f6f2de820c01fcc278b4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp310-cp310-win_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxtea-5.2.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 16.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 89b6d2f33f14acae2b646e82d123fba60aec71243db30304f13b5a6f369e7876
MD5 2a50373a68e2a1164710c8a9645d5c67
BLAKE2b-256 fb0de4f316f3bc0d35c8b538cfd083097fcd0fceeb5e5c865fc7b0f2f39975ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp310-cp310-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxtea-5.2.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 14.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f677c295fd3351899a970e1e12b99a6cbc088fa78829469dca743d25b6e469cc
MD5 743a8fb46022caea53bbfc80e829809e
BLAKE2b-256 2c70a9bced92df2c07874fe94fe16a6e69aa7d78730c6d4bbe589bff95ae28e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp310-cp310-win32.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f18653feb728809cd1e03bd4e4d1f48cd884f1196e1b4552352d726417dd884
MD5 f54c807d0fbfbf72f7be9ef8e70cde74
BLAKE2b-256 5beb62722c6352210f23b18a215c4ca2d2f9be555bd7d745946113b2292b3148

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3c67685208dc29f5e3378556cee3ef3795c83a16c8a51df69b306f01c187401e
MD5 973c7c89c04be7092ac4d136892a5811
BLAKE2b-256 8ff3508fdf0a4ada1df417a670bea09ba0f1419eaa435a13784c502716ff3a07

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp310-cp310-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f75c31e2a4d0461e2ef6439fd129fcaee7ef0ddddaf70a42d816dd743575ade6
MD5 4d1fa4d64e5793399c0b7acc2723ef73
BLAKE2b-256 1fc2600f6ccda0d72c5139bc43588f6d32d27c339da0078597b3706a9c957620

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp310-cp310-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0c21bc8a93ee389bba3e60029a356353693cde028aea7b30682dc95c1f22e8ec
MD5 458fd8c91ec893d96226c328e874be94
BLAKE2b-256 28dba29ee5b91f06ae90de77cc7c94d21377db7fb5afa10294b259548bad9189

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b9c2cc94c8912a9e618824a15cab7e4b1a6ce1710b448a93cdde9b9a0629b451
MD5 f79a55026edfbc7e8b367559984a420c
BLAKE2b-256 fcaa554ef77eeacba2d5616775136daad68c1a1ec9f1a6b716841ba5bf8eded0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e20f582165954f5ec613a7265ee028794be637244c2411903ba66a0670ecfadc
MD5 0146f4e24dc7706567d76f8ffcc479d0
BLAKE2b-256 6cd11da6509636d02de095fd583526941454982dbd2f8200d92648092f0f06a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a2d6100e8b42f76da2f646ee69ae8785575d6357522dc749ab3bb3a51794b168
MD5 d0625bbd35eb046823e30b6e2fa38ee1
BLAKE2b-256 78098cc78521ec7958a891ef89f7a39d71379bccc6ffe753d48e377ea5761433

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c158afe1c8c9a5f83594d7a488ebb909cddf75ecb630ad89ff376fc45edc8306
MD5 000d4a7e39a38340182b5367a4e27045
BLAKE2b-256 36bdc894ddd225badb947f6c6a20277b33117c3b80597727dd7d457c15e1063c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7b2b45f3e1810c572ca80bb8a49ba950e2e5bdf8afa806448f0e80235276b461
MD5 20c1e676ceefcbaf16f6daf3656a3005
BLAKE2b-256 8236dceae8687dd163a1db09621e648c40e8f71275601d2a77100bd761cd7e23

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 222bf482808933261690f03542a6ffd8945fcaf9cfd6c3d40e4c856e4baadd11
MD5 22ac43b86dbe55909cd611d8c27fa305
BLAKE2b-256 e23255e3a844b9c1f29bcd55382029c1149ae9ba6fbb4acb8f08060d57baaa74

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a90348178c1c45aebdc85305cdd7376471bc47d27a3027cc0ca9d6d15653dbe6
MD5 5c8286fb00d69da1aa8513721a5c258f
BLAKE2b-256 801f785055788fb4826f13dcfb053a21f29f57c2d2e545e14a8cdc6476af45c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 22e506470104e29618eb3288436883489151419abcfe9cec81b104f2edc55438
MD5 2a0aff8fcfbfd79eaf0543369ae9eee9
BLAKE2b-256 f5226b9f90d87cdacb1615e55c1988a9bfe903caf16776bdde0150ba59775e20

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9d9548b30cc6a9ffbb514097d709f629ceccac8ea57dc0006016cde80662ced9
MD5 85d58dd57f2b20326df4a35570975160
BLAKE2b-256 4f22b26dc8472797108430e2078630bd8920f25c979fa55101ec4928c9add979

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 3c0ec721171582d6d22129495714ff55250f3cc9b627d6ff3028de64f035bc3c
MD5 57452b56d515ad0145de299d988fe815
BLAKE2b-256 329240a43e27d59845bee41b352f4a864735d3884d84ca18ff4061c14ad3a0cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b6bc40ad4ded7e5ebca61fd2a3070d2ea81efdea2df7246f72d6c9c335dbe42
MD5 59f35519078605d19320083b132e3459
BLAKE2b-256 0f5902dce0b7e341caa23b49d3dc78e3efb5560b989c1790c1cf184270d6034d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 db5b2fd3dfb2f9996b40d6e73bc405f89e47550583bc4dfd7c5e2406b520cc9b
MD5 f5c2f7a00a54fc8f61290ffbb43a2ffa
BLAKE2b-256 73a464312c4141fd3f5145d01a04d4859998d9ae19fcd00a2f9ba68e4a463c10

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxtea-5.2.2-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 14.5 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 e72fc925a7b7de632f8214cd55fea68cdc30f7f7f11613a200046ca667366fd8
MD5 567fa8c6a5cd1345ba16462b59a73ac6
BLAKE2b-256 8319317a58dc89ac62b61b23fde01ecc7fee6612250db1f903632a19018fdc24

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp39-cp39-win_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxtea-5.2.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 16.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4017fc03f403e1f7fb551aaf12afc47761c491c5e35a45228120b3eefb1f25b9
MD5 d79eab3f5030d73702e08177b22c051d
BLAKE2b-256 6f42464630f85862291ba21a33c41f0ce5261dad5a70eb4f0fb46041cc03fead

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp39-cp39-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxtea-5.2.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 14.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d9aa12726468e041829175dbb6a9cf4efffbcec24ea76bd8fd2bd93921371c29
MD5 e7a6ba13fa6fbffe43f35265206ac792
BLAKE2b-256 dff6c6cff755a0a357b17a0ec00d39dc966b453882cb9ea13d4b56d2c4109d83

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp39-cp39-win32.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxtea-5.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 50.3 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a5022f13ff0e9e9625e385813be7e64127d19a085e0e47182b3f20537e41088
MD5 d0dbda300cacc033a4fc6886c3e7b904
BLAKE2b-256 154b335ba620c8740ff16d30fb1c3f0ce5d32f5bb320a1d77fad21228e68f8b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxtea-5.2.2-cp39-cp39-musllinux_1_2_s390x.whl
  • Upload date:
  • Size: 63.5 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e47b4c3252cdf99502920e1a3845678545dff7ec6061462d8d60c79c3e41740f
MD5 0df4236b71de6e96dd9038ee6fc9c1af
BLAKE2b-256 471d32c495bbdaaee36384720b3aed31b4426a6299a98f5f69d754acc778092e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp39-cp39-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 fed3c6085efbe0a210cf3b16f2aa10e2f647d940a9b4f228f3c53f0f24e5ee09
MD5 cff95a8070fe374447c54b5c6e1e829b
BLAKE2b-256 1a1f34dbcfac4e9ae5d670e1abdca5922ec9f94b189daaf15c285ae57f0b45ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp39-cp39-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a15b38463deac6e67599080cdf38a475b83662b3f45cf8ee1adab05e3ed5f6f5
MD5 464d150dd260cd1f5986ec74ee3b0925
BLAKE2b-256 8433b1837a6a65ab2246308ec34f70e1f0da3fa83bd350f59145ff32b9ad320d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxtea-5.2.2-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 47.7 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3aa6b9b30149a5f21e17d3d21f0c2809abcdfeb5cb9539a89271a76b88dbe0f8
MD5 197f2db60cbbd23a5388373d9310edeb
BLAKE2b-256 4bf729050b55b925bba09d3ac2dcd2ad7effbf9c6cd6bea04f25a7079c16bb9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: xxtea-5.2.2-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 50.0 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f2dbfa4ed5bb429ccccd271af78da605c339af99d93e575c5d44bc3a6f132610
MD5 b3b4e741cba43c55d1b30e16e379e9be
BLAKE2b-256 e19e2958db829dfbe2d917e759372fd3f4f51b2b85601fc60014eaa1b4eec944

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24b3e305c03a1eea81a90b7d9626be1a55958f4dbb0717589744365edc6091f1
MD5 e181fd873da5370192762ebba0465b1c
BLAKE2b-256 020557796a63511a21e3e2349d69714a6f1a0d2d98fc78780cac20c2e47dc377

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 38d028e08683001bdbb701970a15d4b09d539dcaef0b5f56b1bb558307b2a564
MD5 39c63501c94581194dba18624b09c2ba
BLAKE2b-256 457065f6fbb964bd8bd9ac8ac4dd11f69ffb4ab4eb74b2f44ed23081f1037fb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4bad601de18f688c776138d6d99b298a3d089c676383af90ad148623852b34be
MD5 c6f05a28db34da8ff6138963e114d261
BLAKE2b-256 7181d4f0d902ae54595bd9f43a59cc69cf82c5796182360d723fddfe0e0a9c41

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e3282d67b14b91c4c7515b99e45cdcefb8749789fc514c2485e17ad7d9c582df
MD5 acc2423066331d8b4b602f35c7743785
BLAKE2b-256 d1e4824c48cefd5abd5b4fffe7a37b7c5b639307df747961dbd19ecd8b985f30

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5be1a5c12264936eb753426de340ac48038e1dff6a7d7d4886fbcfe2f475b704
MD5 7670c8a6b545d83bd41ebc742ac46bf5
BLAKE2b-256 2230f15a3a2698ece951b414c825a18ccfa19a33f4586103bbc3af321ac94bda

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8e9171feeb43917264284db4cb7558ed5d687357f6679fa0fe78673a9da57cd3
MD5 ae8ea59dc997932d5bdbf59ca823888f
BLAKE2b-256 9d7af3dff3bb93a8db4f794c52d8ef1c06971431c0ab0d82e1501ed17039eba9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a974157da8e795b5dd8a0abdd569c4ef50dbad73fd990ee4af44f781f739fbc2
MD5 c5205cfdac2909a35a35260f625206ca
BLAKE2b-256 10028438e2d407cbedf0907a414cb5a5407b100e29e64815c273b8424fca489c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xxtea-5.2.2-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.2.2-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b78e98dd51117ed4ea7c87ef80321a98a77593575d9cd532de1e9543f0666371
MD5 db73009139d433f142b3ea87be51e07f
BLAKE2b-256 64c570014de526ee62916763093086c29788e7a7749e22542084087ca9410e1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: xxtea-5.2.2-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 13.9 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 858abddc4c588d87612af88e5b620425dc796b76ef08ae7c91c14bd4f5c00f6b
MD5 1badbadf9d2e93bab7e8716c0dade152
BLAKE2b-256 06a4ae78d81b49c4b788c2491df0654576dc2d8ea85d3037cbe6056b138b4007

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b9699e98c7614567238dcf49e4b6645b8e9ad449acd01c632df3fcfff124ddb9
MD5 f3d52bc438bb8645a1629b94118eecf0
BLAKE2b-256 1aadba0cf39b3f12c289138bcdb5bcd52cd160ddb5b07866ae0c2ec578bb98d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.2-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

6.1.0

214 files

6.0.0

214 files

5.3.3

214 files

5.3.2

170 files

5.3.1

170 files

5.3.0

170 files

5.2.3

170 files

This release

5.2.2 This release

170 files

5.2.1

170 files

5.2.0

170 files

5.1.3

170 files

5.1.2

170 files

5.1.1

170 files

5.1.0

170 files

5.0.5

169 files

5.0.2

172 files

5.0.1

172 files

5.0.0

172 files

4.0.4

191 files

4.0.2

191 files

4.0.1

191 files

4.0.0

191 files

3.8.0

215 files

3.7.0

209 files

3.6.0

173 files

3.5.0

135 files

3.4.0

120 files

3.3.0

136 files

3.2.0

121 files

3.1.0

101 files

3.0.0

98 files

2.0.0.post0

46 files

2.0.0

40 files

1.3.0

42 files

1.2.0

15 files

1.1.0

1 file

1.0.2

3 files

1.0.1

3 files

1.0

3 files

0.2.1

3 files

0.2.0

3 files

0.1.5

3 files

0.1.4

3 files

0.1.3

3 files

0.1.2

3 files

0.1.1

3 files

0.1

3 files

0.0.1

3 files

Supported by

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