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.3.2.tar.gz (22.0 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.3.2-pp311-pypy311_pp73-win_amd64.whl (15.5 kB view details)

Uploaded PyPyWindows x86-64

xxtea-5.3.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (14.9 kB view details)

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

xxtea-5.3.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.9 kB view details)

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

xxtea-5.3.2-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (15.1 kB view details)

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

xxtea-5.3.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (12.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.3.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (12.4 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-5.3.2-pp310-pypy310_pp73-win_amd64.whl (15.8 kB view details)

Uploaded PyPyWindows x86-64

xxtea-5.3.2-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (15.0 kB view details)

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

xxtea-5.3.2-pp310-pypy310_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.3.2-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (15.4 kB view details)

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

xxtea-5.3.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (13.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.3.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (12.5 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-5.3.2-pp39-pypy39_pp73-win_amd64.whl (15.8 kB view details)

Uploaded PyPyWindows x86-64

xxtea-5.3.2-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (15.0 kB view details)

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

xxtea-5.3.2-pp39-pypy39_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.3.2-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (15.4 kB view details)

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

xxtea-5.3.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl (13.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.3.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (12.5 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-5.3.2-graalpy312-graalpy250_312_native-win_amd64.whl (15.8 kB view details)

Uploaded Windows x86-64graalpy312

xxtea-5.3.2-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.6 kB view details)

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

xxtea-5.3.2-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (14.7 kB view details)

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

xxtea-5.3.2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (13.7 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

xxtea-5.3.2-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl (12.9 kB view details)

Uploaded graalpy312macOS 10.13+ x86-64

xxtea-5.3.2-cp314-cp314t-win_arm64.whl (14.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

xxtea-5.3.2-cp314-cp314t-win_amd64.whl (16.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

xxtea-5.3.2-cp314-cp314t-musllinux_1_2_x86_64.whl (67.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxtea-5.3.2-cp314-cp314t-musllinux_1_2_s390x.whl (65.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxtea-5.3.2-cp314-cp314t-musllinux_1_2_riscv64.whl (57.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxtea-5.3.2-cp314-cp314t-musllinux_1_2_ppc64le.whl (69.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxtea-5.3.2-cp314-cp314t-musllinux_1_2_i686.whl (66.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxtea-5.3.2-cp314-cp314t-musllinux_1_2_armv7l.whl (66.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxtea-5.3.2-cp314-cp314t-musllinux_1_2_aarch64.whl (64.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxtea-5.3.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (58.8 kB view details)

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

xxtea-5.3.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (68.5 kB view details)

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

xxtea-5.3.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (70.3 kB view details)

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

xxtea-5.3.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (71.7 kB view details)

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

xxtea-5.3.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (63.2 kB view details)

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

xxtea-5.3.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (67.3 kB view details)

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

xxtea-5.3.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (65.2 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xxtea-5.3.2-cp314-cp314t-macosx_10_15_x86_64.whl (13.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

xxtea-5.3.2-cp314-cp314-win_arm64.whl (14.5 kB view details)

Uploaded CPython 3.14Windows ARM64

xxtea-5.3.2-cp314-cp314-win_amd64.whl (15.9 kB view details)

Uploaded CPython 3.14Windows x86-64

xxtea-5.3.2-cp314-cp314-win32.whl (14.5 kB view details)

Uploaded CPython 3.14Windows x86

xxtea-5.3.2-cp314-cp314-pyemscripten_2026_0_wasm32.whl (8.9 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

xxtea-5.3.2-cp314-cp314-musllinux_1_2_x86_64.whl (62.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxtea-5.3.2-cp314-cp314-musllinux_1_2_s390x.whl (61.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxtea-5.3.2-cp314-cp314-musllinux_1_2_riscv64.whl (53.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxtea-5.3.2-cp314-cp314-musllinux_1_2_ppc64le.whl (65.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxtea-5.3.2-cp314-cp314-musllinux_1_2_i686.whl (62.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xxtea-5.3.2-cp314-cp314-musllinux_1_2_armv7l.whl (62.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxtea-5.3.2-cp314-cp314-musllinux_1_2_aarch64.whl (59.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxtea-5.3.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (55.0 kB view details)

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

xxtea-5.3.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (63.7 kB view details)

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

xxtea-5.3.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (66.0 kB view details)

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

xxtea-5.3.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (67.3 kB view details)

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

xxtea-5.3.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (59.2 kB view details)

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

xxtea-5.3.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (62.3 kB view details)

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

xxtea-5.3.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (60.6 kB view details)

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

xxtea-5.3.2-cp314-cp314-macosx_11_0_arm64.whl (13.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xxtea-5.3.2-cp314-cp314-macosx_10_15_x86_64.whl (13.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

xxtea-5.3.2-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (13.0 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

xxtea-5.3.2-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (13.1 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

xxtea-5.3.2-cp314-cp314-ios_13_0_arm64_iphoneos.whl (12.8 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxtea-5.3.2-cp314-cp314-android_24_x86_64.whl (14.4 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

xxtea-5.3.2-cp314-cp314-android_24_arm64_v8a.whl (14.2 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

xxtea-5.3.2-cp313-cp313-win_arm64.whl (14.2 kB view details)

Uploaded CPython 3.13Windows ARM64

xxtea-5.3.2-cp313-cp313-win_amd64.whl (15.5 kB view details)

Uploaded CPython 3.13Windows x86-64

xxtea-5.3.2-cp313-cp313-win32.whl (14.2 kB view details)

Uploaded CPython 3.13Windows x86

xxtea-5.3.2-cp313-cp313-pyemscripten_2025_0_wasm32.whl (8.9 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

xxtea-5.3.2-cp313-cp313-musllinux_1_2_x86_64.whl (62.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxtea-5.3.2-cp313-cp313-musllinux_1_2_s390x.whl (61.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxtea-5.3.2-cp313-cp313-musllinux_1_2_riscv64.whl (53.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxtea-5.3.2-cp313-cp313-musllinux_1_2_ppc64le.whl (64.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxtea-5.3.2-cp313-cp313-musllinux_1_2_i686.whl (62.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxtea-5.3.2-cp313-cp313-musllinux_1_2_armv7l.whl (62.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxtea-5.3.2-cp313-cp313-musllinux_1_2_aarch64.whl (59.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxtea-5.3.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (54.9 kB view details)

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

xxtea-5.3.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (63.6 kB view details)

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

xxtea-5.3.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (66.0 kB view details)

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

xxtea-5.3.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (67.1 kB view details)

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

xxtea-5.3.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (59.0 kB view details)

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

xxtea-5.3.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (62.1 kB view details)

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

xxtea-5.3.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (60.3 kB view details)

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

xxtea-5.3.2-cp313-cp313-macosx_11_0_arm64.whl (13.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xxtea-5.3.2-cp313-cp313-macosx_10_13_x86_64.whl (13.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

xxtea-5.3.2-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (13.0 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

xxtea-5.3.2-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (13.1 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

xxtea-5.3.2-cp313-cp313-ios_13_0_arm64_iphoneos.whl (12.8 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxtea-5.3.2-cp313-cp313-android_24_x86_64.whl (14.4 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.13

xxtea-5.3.2-cp313-cp313-android_24_arm64_v8a.whl (14.2 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

xxtea-5.3.2-cp312-cp312-win_arm64.whl (14.2 kB view details)

Uploaded CPython 3.12Windows ARM64

xxtea-5.3.2-cp312-cp312-win_amd64.whl (15.5 kB view details)

Uploaded CPython 3.12Windows x86-64

xxtea-5.3.2-cp312-cp312-win32.whl (14.2 kB view details)

Uploaded CPython 3.12Windows x86

xxtea-5.3.2-cp312-cp312-pyemscripten_2024_0_wasm32.whl (9.0 kB view details)

Uploaded CPython 3.12PyEmscripten 2024.0 wasm32

xxtea-5.3.2-cp312-cp312-musllinux_1_2_x86_64.whl (62.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xxtea-5.3.2-cp312-cp312-musllinux_1_2_s390x.whl (61.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxtea-5.3.2-cp312-cp312-musllinux_1_2_riscv64.whl (53.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxtea-5.3.2-cp312-cp312-musllinux_1_2_ppc64le.whl (64.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxtea-5.3.2-cp312-cp312-musllinux_1_2_i686.whl (62.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxtea-5.3.2-cp312-cp312-musllinux_1_2_armv7l.whl (62.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxtea-5.3.2-cp312-cp312-musllinux_1_2_aarch64.whl (59.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxtea-5.3.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (54.8 kB view details)

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

xxtea-5.3.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (63.5 kB view details)

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

xxtea-5.3.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (65.9 kB view details)

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

xxtea-5.3.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (67.0 kB view details)

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

xxtea-5.3.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (59.2 kB view details)

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

xxtea-5.3.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (62.0 kB view details)

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

xxtea-5.3.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (60.3 kB view details)

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

xxtea-5.3.2-cp312-cp312-macosx_11_0_arm64.whl (13.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xxtea-5.3.2-cp312-cp312-macosx_10_13_x86_64.whl (13.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

xxtea-5.3.2-cp311-cp311-win_arm64.whl (14.2 kB view details)

Uploaded CPython 3.11Windows ARM64

xxtea-5.3.2-cp311-cp311-win_amd64.whl (15.5 kB view details)

Uploaded CPython 3.11Windows x86-64

xxtea-5.3.2-cp311-cp311-win32.whl (14.2 kB view details)

Uploaded CPython 3.11Windows x86

xxtea-5.3.2-cp311-cp311-musllinux_1_2_x86_64.whl (61.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxtea-5.3.2-cp311-cp311-musllinux_1_2_s390x.whl (60.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxtea-5.3.2-cp311-cp311-musllinux_1_2_riscv64.whl (52.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxtea-5.3.2-cp311-cp311-musllinux_1_2_ppc64le.whl (64.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxtea-5.3.2-cp311-cp311-musllinux_1_2_i686.whl (61.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxtea-5.3.2-cp311-cp311-musllinux_1_2_armv7l.whl (61.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxtea-5.3.2-cp311-cp311-musllinux_1_2_aarch64.whl (59.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxtea-5.3.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (54.4 kB view details)

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

xxtea-5.3.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (62.8 kB view details)

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

xxtea-5.3.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (65.3 kB view details)

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

xxtea-5.3.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (66.8 kB view details)

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

xxtea-5.3.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (58.7 kB view details)

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

xxtea-5.3.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (61.6 kB view details)

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

xxtea-5.3.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (59.7 kB view details)

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

xxtea-5.3.2-cp311-cp311-macosx_11_0_arm64.whl (13.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xxtea-5.3.2-cp311-cp311-macosx_10_9_x86_64.whl (13.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

xxtea-5.3.2-cp310-cp310-win_arm64.whl (14.3 kB view details)

Uploaded CPython 3.10Windows ARM64

xxtea-5.3.2-cp310-cp310-win_amd64.whl (15.8 kB view details)

Uploaded CPython 3.10Windows x86-64

xxtea-5.3.2-cp310-cp310-win32.whl (14.4 kB view details)

Uploaded CPython 3.10Windows x86

xxtea-5.3.2-cp310-cp310-musllinux_1_2_x86_64.whl (62.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxtea-5.3.2-cp310-cp310-musllinux_1_2_s390x.whl (62.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxtea-5.3.2-cp310-cp310-musllinux_1_2_riscv64.whl (53.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxtea-5.3.2-cp310-cp310-musllinux_1_2_ppc64le.whl (65.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxtea-5.3.2-cp310-cp310-musllinux_1_2_i686.whl (62.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xxtea-5.3.2-cp310-cp310-musllinux_1_2_armv7l.whl (62.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxtea-5.3.2-cp310-cp310-musllinux_1_2_aarch64.whl (59.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxtea-5.3.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (55.4 kB view details)

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

xxtea-5.3.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (63.7 kB view details)

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

xxtea-5.3.2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (66.4 kB view details)

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

xxtea-5.3.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (67.7 kB view details)

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

xxtea-5.3.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (59.9 kB view details)

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

xxtea-5.3.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (62.2 kB view details)

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

xxtea-5.3.2-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (60.4 kB view details)

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

xxtea-5.3.2-cp310-cp310-macosx_11_0_arm64.whl (13.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xxtea-5.3.2-cp310-cp310-macosx_10_9_x86_64.whl (13.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

xxtea-5.3.2-cp39-cp39-win_arm64.whl (14.3 kB view details)

Uploaded CPython 3.9Windows ARM64

xxtea-5.3.2-cp39-cp39-win_amd64.whl (15.8 kB view details)

Uploaded CPython 3.9Windows x86-64

xxtea-5.3.2-cp39-cp39-win32.whl (14.3 kB view details)

Uploaded CPython 3.9Windows x86

xxtea-5.3.2-cp39-cp39-musllinux_1_2_x86_64.whl (62.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxtea-5.3.2-cp39-cp39-musllinux_1_2_s390x.whl (61.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxtea-5.3.2-cp39-cp39-musllinux_1_2_riscv64.whl (53.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxtea-5.3.2-cp39-cp39-musllinux_1_2_ppc64le.whl (65.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxtea-5.3.2-cp39-cp39-musllinux_1_2_i686.whl (62.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxtea-5.3.2-cp39-cp39-musllinux_1_2_armv7l.whl (62.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxtea-5.3.2-cp39-cp39-musllinux_1_2_aarch64.whl (59.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxtea-5.3.2-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (55.2 kB view details)

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

xxtea-5.3.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (63.5 kB view details)

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

xxtea-5.3.2-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (66.2 kB view details)

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

xxtea-5.3.2-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (67.6 kB view details)

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

xxtea-5.3.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (59.7 kB view details)

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

xxtea-5.3.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (62.1 kB view details)

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

xxtea-5.3.2-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (60.3 kB view details)

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

xxtea-5.3.2-cp39-cp39-macosx_11_0_arm64.whl (13.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xxtea-5.3.2-cp39-cp39-macosx_10_9_x86_64.whl (13.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.3.2.tar.gz
Algorithm Hash digest
SHA256 e07a8bb0f5f75f52abf8847fddc7c79f51980345f3b715b01869d0fd32e35979
MD5 ad1d5159d8215573c08849361fd1bbcd
BLAKE2b-256 059025fc655cd9dc5aacf42ad9e6ba323759cd38583b8931c50f16573447d077

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f60dc4f7a097ef50bc08515a01051107458cb8a384934a579151d06686ef57d3
MD5 7c4d252c8024adbbd58d8b695ace0bc8
BLAKE2b-256 adb95a5b961413d0671b746b53f427b58b86768eb053021541bfdc6289777e05

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.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.3.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4202b539594ece3ab0e441bcec9aa7f0ffce5d7a867cdff3d71ee2ba82d0ebf6
MD5 6ab29c4767ecff2ff0ad563f71998fa7
BLAKE2b-256 973cc1f8a3730441d2f673e96dd13ba36fae005caf8a93cab2d35cf4135830c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 af4bf1c36439d6f6f0ebbd43bf30b2585bb48f621db7c7ffbe817fcbc5f916d5
MD5 8ee7099425fe5d73c2bf3c8c50f213c9
BLAKE2b-256 ac2ce25cb61488e5732e93e6645669b6e84c62c9a95170eac099b239e42701d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 57993da392e20ca013e09c6f5e6e0ec9dc58206ffd026c2a384e79d42eda99e6
MD5 ade2a0f92ee1462bf28d81ce6d6663e3
BLAKE2b-256 fd3adc284898a7409f5f0241bd64d1ad60c53159eae9c068975f7bb02458788b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87f3c69c19b057da2d2ada4589979c8840ef2ba691260090862e4d774b497edc
MD5 33513bce9bbbf198f0485eea3d856526
BLAKE2b-256 acc9c09c8c6c0349b8fbd84951b2686c1418a2d52a22c931d739baba5554648f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9376c1465ecf261f2dcf6efc9bfb396dde24a1cd09531b41bfc8f8d5cdb070e6
MD5 408b80588c910b3b6b757c93e52164f1
BLAKE2b-256 8758b18420f69cbcc40177118f94a0d12914a5161693e690b5d65941ff5b566b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ec493875bdc5865b44c509166f89c682c0363f2232a51b2cec8211c89f5feb2a
MD5 3faa9ff282ae036fb7ea12b20eac706f
BLAKE2b-256 3eae306066556b335d3e89b457e863e10c8713ea5fb37e0f9a80c3718d08c21b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.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.3.2-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 334529404a9d038ce1ba9274db4c63b754c726f1068fb3394fdefff393548759
MD5 8d8fa33f51e1f9aa50b945859b4d6f1b
BLAKE2b-256 70c806c64580c0c8d96d186644a7363ff26a952dca2a64eb7e77eeac96a50268

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bb2e3f3037b0056353fa79cf27a54a92b72a83e898a4b9596d1bc9bafd6bde4b
MD5 a52bc27d354a3413ef7f9341e9fd6eee
BLAKE2b-256 6a3cb862fa32b46a598d54060f683cfad8c2bbd8eab31a669ddea485b597c3fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 cab93b28005b7be1c132dbeb873635f1b7395d7a0ea5ef9721f576420966ccb3
MD5 2e2cbbee35c077415e54c347cfe11267
BLAKE2b-256 3ae6fcfb3ed28b0e96d2d31f8d9006513b5e3b67fe080f655a882b55dbd43fa6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6ae76f578df41da920f232c18d2eaf52299d21fd422d45c5e8949d72ef4187e
MD5 43ed1a11256938be6f564ed598cd26d5
BLAKE2b-256 e119839449f868dfca40c540dffb6631bcdb3da056cd2c045a2934e7cd9f920e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a6249ab7b33bec61b1e3e67b2127026e0ff5c6d4e3384082cf786091b67cb891
MD5 dab011e3b268c81d86ecdfb5f01c601e
BLAKE2b-256 59b4cb6235dba97c9d33f53ef2112a20708a4bc3e06820d81b539b8a88ee26ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 eaaeb96f61dd26a18fc8bb36c4816106803a43bb5bb283078841da42f163a1d9
MD5 8b9ae2a836ecd62976a6a60cf43d2465
BLAKE2b-256 6034f821fac4ed3b67c6fae4f72167c703aa8475a01e159048d7feb37e1ada06

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.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.3.2-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dda612005580486318fbc15f0189322f3c09d6ee654f87cd84f625f140f3e65f
MD5 137a83d6cac5db6c4dcc20ae1c404232
BLAKE2b-256 a8a986e8903e60b64fc44580d184ccdb0ad94e43835250ce016765ade8e1c07f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9e614586e64221f653a94070a89292b24bc0f99b3e460fb7bf608e68b5306cc0
MD5 31d77c4013c8752f72c722e5062e3890
BLAKE2b-256 92a9738c225cd98c2426c68635456b01629ab00716a2b415ec90d10ecd837db2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 09f064f55f2ffce0d92fae6899d6b1bebeb00080652ccf69a98a2298fb060aed
MD5 228522bb827dd504ab1040fefd06e117
BLAKE2b-256 0ceb43aca1f3ada8b450dbd6eb821c3d9562cff4e977d2acd5c7fd95b3682d43

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 815914e7e714f3120af5dd293798655e8416b134be00abc58b18bc06769635f0
MD5 64e04451fd5b5e3899f9ea3573c5ed22
BLAKE2b-256 1c532ae4aff904c61d092f37a37a08e46a71e190b7b4e264e374e50e773d8069

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8f768c4ad58c44219b00322117473f7bdf69f5d154e2cd719419a819542d104a
MD5 3ce4797085b9e6a9d70f6996b540308d
BLAKE2b-256 50c56306b3697133e47871279ee435998b02a568161e902456dff9898a9334a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-graalpy312-graalpy250_312_native-win_amd64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 d84d457f928178ace13a37805a512ff1b6b6a104ce6022efcf75d9b62cf3a2ba
MD5 657b9c45ef959c39b66df453f49202ed
BLAKE2b-256 ba26478bea71d7a785bbbdf25ffed1cc18782e10c1e73a2315ecd21362036d7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 10bb79d65c84f8af65ff3037278c807c349b6b3dfaf0b27465cbd2a280c7d4c3
MD5 e58ad939b3319d6ce5263d55fdb38f25
BLAKE2b-256 3019a473dcac77e76467899fa778086c38924b38ee636fe7768d123a16e1db53

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.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.3.2-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 35df37bafb86acf48f4565e633e7982d986adde60d77a0b3b4ca55b71ac56b24
MD5 73b5d3b184988baaa733932cd51d0998
BLAKE2b-256 4988715ec9916e4342910193692c84a6bc7f9038e70a625ace6fc683cc73d212

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6db8ee4f216adf03c5071b6efb47b2a015a5e67d5d1d1143310d3c4586b44ea6
MD5 eeb775543c37729e6fb31e2bcf472180
BLAKE2b-256 2bb4d3996c84a15b9e8d7f0a513b7e05168481f358330737af39a46e59f550b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1320836679eeae2df476ddd9adcd41ad396d493e0cfae0c8ffb316ba48a178df
MD5 48a151ca106db87ce4970935f927201d
BLAKE2b-256 7910cb569aeb4ed66689535667f9590098f404ed717d7e04e6432b4d41d54f8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 14.9 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.3.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 4bc117397dd68b120d0a8628ceac80d8d15f5c848990599d208ef14b56e06323
MD5 f6f2ca48e0d01466030a6593a434ddc1
BLAKE2b-256 167a0daa984e5c846c514cbd3eedfdc5ac6d0becf915f759a9e2672d7ea8db8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 16.4 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.3.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b6e86360de44accc39b0a25834ab35d011a0e1f299c2166041b24cb32c419606
MD5 ed3eb75a40e885bd8cb26e04ef342a9f
BLAKE2b-256 c08abeda286b661272a77a8af82b21a49835ff3ced20b19856310ce088c821fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 14.9 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.3.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 e05896f38c128cfe545ce6da34aa28cb728b83341843ceb9a5bf64172a156072
MD5 ff233060f0a95b8c118c5530273fbc29
BLAKE2b-256 e3e63c3bba33237cbc950d873c89ab4604e9ae7b28d0a247672a1f2173f7eb11

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f075a86a267118da84eabd393bbffc4a281bfbb648d3666a50541cebf77ecefe
MD5 a5e6f19f875fa1ba149288fff2d9bb79
BLAKE2b-256 b5cbde5be84733add31564be52fefb322d77165a9887a41c4c84f5127cf0e2ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9c53b93438b1f5daaaed539b300e119eb3bff539dd7c1fa77dd65ee57d642992
MD5 4f1e6aeaab8daaa020a0b88a1b63fc9a
BLAKE2b-256 18c694901ad2c7d9c4d5ca332883ef63977d113633e83190e63b0caa70304be0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 53cd79d77df9151dbc7a7438d1d8feb3c51c387a640ee1d1068bfbebd3fd79b5
MD5 78731c889c349fd48096eaefde8d5a29
BLAKE2b-256 3a29ae5271f5240f6962bdf51423995ccf812ff178aa59bdd6c4024ad31fceda

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 08c9da0af56e95ac4533c3f06a63cc70b40d44115d766186980cfd3e2e7e5c2b
MD5 bf85ba4cb3355cd6dcc697ae3650f081
BLAKE2b-256 e22f348e054938b0d855e344fbf7d43882ce7295d9fc347d3a74d55b3a375dae

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1e714c6cd0f3ed71be6f439bf90e4137337d21e9937a8fe2bf9583606f101b8d
MD5 2fa07bdfa3105393965efe1c7c15a57c
BLAKE2b-256 99095c9b196a5b49d92af68ac48d80efa6ff7f8345d46bb50d5c058d3ff50e88

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 49db2338b79fa319ff129688fb5d1130a88eaa4028d922b5cd013d2a2e0c70ed
MD5 bb051658636b672e70c4ef9e80bede6e
BLAKE2b-256 ad4fd4510afeded29013ca89a9cfaa7802f8367f1eec969c1a0278e20407548b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47b0ac92d3497e9f5c511766b3551b9bbd67e55ef4ae55b12bf495cbf156ba9d
MD5 2b49e69137d82a7257ccd3cdfc97b37b
BLAKE2b-256 d274f2cf8ca728942dc0a40c80517422c2e3268d65a112443d0ab03fcae534c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b443ec40729b6f2618b2d3a39c2c4da144108210cbd74a02c1a91132317ed16c
MD5 39ca51ad542f34579408bc0505dcb775
BLAKE2b-256 23fd9ad63870ade19468592403696c556dcfc6935e3222af83de34065c88e815

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.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.3.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3f523ad671d41129f05080b193b2a1cc13f6f383200a496bfcbfcc4ab93bae87
MD5 5a40652d4c23f6e3b2f48c88073f6b17
BLAKE2b-256 f500def524ee2b48ca10a30b35b7e3a4f6bcd78f763da3128d610dfd16244d2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f3b4b070858190d2f6b35e116a7fd0d78b8ed5bc4c6744e80ee95be237549b54
MD5 675eada5fbb064f357a3bc11596dc50f
BLAKE2b-256 829e19890fbc25329eb1251063cf4e0b59a5931edded2556fe48132861d28d99

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 fd29a1d1d1060f31ec9cf11a5457a52cf8ba96835db397371f4347346f3c2493
MD5 70b9490da1421992d48bde9f1bd8029c
BLAKE2b-256 3226346e6fee6eeba42d6a34067b2b14ecfc4a84806e6d99535548df5f051fd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2e6f41d2d3f9207bc73b50a1720e30f81ac8cf17a961c130120eab93e77564ec
MD5 4fe50eedfbbdfb095a0c16b0b1a502e6
BLAKE2b-256 39ecb4f95f8310219df3508fabfa1d184bf46b683c050cf1fa90bb89f1bf4864

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c33bb2a83335a293feafbdf0a54193064398df0e2d515d2cf3d0d891b51c5a45
MD5 a3ed5bb26495133561f6b7e4b4e8adce
BLAKE2b-256 730bf2dfe5a912713eba7d71b1778d671a6b3befd4847424213a62fcdd65c305

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c1fabebc69b12d1284a3e706b846e42afbe5159d1d166a497c724c5919b02579
MD5 563093ffce932cf2de6868ab90a3c2c5
BLAKE2b-256 779dbdba756cc31012f9f8c546f8f61dd51b191c18761b437df0c40e607f1b59

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41a97521e26e64297b29aec3501f2bd3ff47507dd3b15a7e8d057d06c6cd13b8
MD5 b50c328e23cd2d3ecb0028c8cd775588
BLAKE2b-256 ede72e4f1e33d1540dbb579e79adfc354361a9820613cc17e7dcedd4b73818d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3af06a1ab10a680ed47be710f1843fb728185b0bd1389695e1f713fb76e87c48
MD5 972264444d8b4882b03e4f4be9a1a5da
BLAKE2b-256 02741f1202341a0b25c987cb47303112818620c2763f19b126712bb5a2292097

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 14.5 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.3.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4b1ce2b9876f69e71225be767a455dea90df80e59170a0df41e31ac9efc6d06f
MD5 6b7f83cebd7e68809b63fdad7074cd58
BLAKE2b-256 0c6ff930de57672ce14115c4e46d693e756de225eba235e895d3cf7a326b0f10

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 15.9 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.3.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b1367f2544850521d8b8b0246cb42faebc782043e421a4cbb18e864f0f637f13
MD5 2c4a2d732ca2971596aa1cd897cdf77f
BLAKE2b-256 9d8ea14ec11d222aa0f7108cea61dd6190900b3c370919a98966d6f4a9c8535d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 14.5 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.3.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 82e8fbc956a9f8e5a59ac0686a5b7f6c67cf76a90c4c6b36417d05d357fa9961
MD5 95704fadb1ae88afe26449f34df37a76
BLAKE2b-256 0049c99c957246d8cc6ad4328c34c94c01d1b00cf40792766d8d7e793f2bda31

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 4045f76d693570ac1d6083cd4af9b92ba48e92520839e5e833da1916afedccca
MD5 04cce818cfba6271d6e75401f7101518
BLAKE2b-256 ced51ead5419f4168e9910b94744c2c23f858bc19c73b9d4592b701d2235fbdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9319359b4e72a689ae08cfd1b075782a9c5a3f2b0d982d93dcda8d812c4cdd0d
MD5 76349c1c1c09678a3776020b00637a46
BLAKE2b-256 ccad51e35c8f272330f493d8216fabca63f665200af01a1225cfdc5b7f67273f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 19f49968e1538fb8281e64bc4987c27080de6c55b87feca96de785474229c611
MD5 dc593482a71812c6bd6d9ff180b59667
BLAKE2b-256 5d5d8aa49fab13159bb337f1fae5bb5ea9a5445b156a16d80affa53a8e3c9852

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 79e285da402495ec4454a6474943d120f861116cafe155f7c07f167b57422899
MD5 253ac436e478003f4b1b201b78fcafc1
BLAKE2b-256 e80f23668a9239e4509f1d9efad59744e050b7a434fcf3e0fbeb00c0c767ca55

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b120caf01a3d7ea507323573e589a0276a9a24ba052fe647361644ca8658e179
MD5 39e09354c7949a51db85c4de716d82fa
BLAKE2b-256 e8ebe6c0d603b2e7588a6536447c054390896364f0ca4dc2f45abfe02fffd09a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f9582c1c4afb76dc8b2a8496c98d69ac914d14445460e921b2a71922463d27c8
MD5 25f1be71b7d65993788eb56be333ca25
BLAKE2b-256 4afbef7d4d9171bff2f1be9b8625acb54d857e0f00ca76d14d2de58f67b5ce97

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f48ef2e378dd6acab1bd6f5c166eaef28ad65069bcf5c00a21edb66886661a09
MD5 307591f4cfcfda455526f75bc8a33b04
BLAKE2b-256 b92a16022cca298d9ade88d3727a6067056334a226addcf5f0eaedd4c2625cee

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 134448477d12ff1c1ce205ec8e0cfb0bbaa888c5da979d4d45afc351cab04d27
MD5 65a4092fb2a34f68e84f5704f12528aa
BLAKE2b-256 f60d7487e83a236219d39399df177b872aa1b550efc29f74b05a25736139d7c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 173dba8d52298a70f6b587f75b1bfa8effc09795fc81e25731f5416b405320d5
MD5 99995ca2eb0e1fea068359c3b0ac218f
BLAKE2b-256 db15bcfcb4f9d866762fe72d7dbc888c0033ebb33a0f842c6bae107880bac02c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.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.3.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d72eca7aacc25f95f2c9bd04279bd1eff3a7276ffaff3aa5277958c7cf168184
MD5 77d3fc17216944dae50c799b09a0585c
BLAKE2b-256 72e58d0e0c59d9e2d1c9f972aadec1e474d50a8327ccababf6ee3257c8112a7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5cce7b247d0d71f05839d748727e13ef1588effff9c381b77e250348a55952ab
MD5 97c1e0c782d3ac8442ba7cbccf43a570
BLAKE2b-256 b418d61808317505d14d0f19078c83bac71cad15fbc42dcfe47b17bb8fa3328c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2bf0dd62419e1fc7da3cfb671ff62041d0dcadb09a90c8ffddec4b55315bdddf
MD5 e21dad41c6e60200875382b4f489a647
BLAKE2b-256 c9de525b8b5801ec8544b916b28ebe8e043c47138b6615b40e32fd3a6088f9f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8fc1a73f1cff4561d3149732da1dbcfbd745db799ecb5eac690dd1766347da2e
MD5 6356aab7554afbf676cd4e3c97875bf5
BLAKE2b-256 04e5c34132603f36f746affb6b42e41cdc15a2be031eb1f9a3f40efe135fc15d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fa9b04133251e5edf928a703a0de116372ef6854cabf66dee68127223d5d9ab3
MD5 c2468ff887b85840eb63067023e73ff6
BLAKE2b-256 8b166b77b12ad9fe58d263c970f8302ce89074856d36e214cbf3662b818fbc55

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f4934fa8321dd3beb1f6554f70b854f7d8dca643138cd97553ed1cba7eab2183
MD5 4152f5598cbb5f0ae94e5d0fd25d859c
BLAKE2b-256 ef0abebd48a4e2fd1ac9c35b6e4d48aaf7aff101fcbc084f1014808fd269d19a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de6eb4469ff8673b739c0a7c4e38f21e3982ce984df5092de16a960411a75a62
MD5 1a4786812c7aa0499d196cd3b139025d
BLAKE2b-256 5b1f9998251d50d9cfa6c54f59acee109edaa1866f22e06e309fa88ee2ec44ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 04d9a4c45916b3af69f48c820b9719f87c2dfa2f3163e65aa3c7d6ab170cb671
MD5 40ac57b023f67ce8ba285cdff45a4d16
BLAKE2b-256 fd7dbebecc13a3c4ad4fa4a4058b444d13a4fb43fa05c289bbe625b820914f4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 17fbfb8badb5be3fb45eb9a379161dcd2bacfcdc5cf6bd3f95a00bfaf31ba496
MD5 779ae132b328e64fac0a109d450a7ccd
BLAKE2b-256 933a2fac48cb843f8edeaa4e963e37d8a1a1ae2621dccae008e0c60e5b1e9356

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 9d662fdb83eeee12888653984c6564e981654a0bd70b01eb7dfefaa51f0abd08
MD5 340f90d559eefdfcc88918751a9edcdb
BLAKE2b-256 d00c94a3382c73d3e3cf7937931dcbf94cbd04e3ba49d725ded05b8a8c0110ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 327b6bd423036ee1109567e36adb72937afccb120c2f01841e698892f2eef87c
MD5 2f6568b384efa37cd8cc0a70045ee23a
BLAKE2b-256 097771fe534043046d4805c606ff66435a5a4af6dff80c7d4657529308725963

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314-android_24_x86_64.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp314-cp314-android_24_x86_64.whl
  • Upload date:
  • Size: 14.4 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.3.2-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 b48f825e9b7ab448e46a4ecfaf7129bc1fc776e3a24423e8518a9de91a44554d
MD5 825d1c89a2a7295f98e972818208d0e5
BLAKE2b-256 c6a7ceb8fa2df997185954c0debee12adbe57afdf2f05db3fb3608f15491e8cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp314-cp314-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 29aaf55d7154e2723fb51dae1ae0239a4c3efc269af3f2b53e2b40c4d28086f2
MD5 8cc38548a21fdb67933d2701a3ac7700
BLAKE2b-256 f499b0021e24a34658633d178b55636b654f00f87d44b3260d641a21aac30654

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 14.2 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.3.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 cb814ae882d767fc061553083a8abf3b7fa4c4062f5945c95d9fc7d37a29290a
MD5 d3b65bdb5d24a69e9def9ef28123a133
BLAKE2b-256 72dc6465b6c31542bf8bbd5f2740f4593b3ca27ad35959188f7a45d14a844cd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 15.5 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.3.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b59bd3deac24bc4719c338a52ac91ed6fdaf5e9b5e727a302f2f288c8f51bb86
MD5 065c775a1a5516c86ed926a2fc7609a6
BLAKE2b-256 3cd4c3f4bf80e279dbc9b11c32e956620a0974882a2706453cba0134e3c2029d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 14.2 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.3.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b392557d8a685141410785baf94c917ea20c9b7c45a9578a4ea3b65161219a31
MD5 8dd62f87991d347eb7246fbadd75f7b8
BLAKE2b-256 00748f27ff04f7bc57de8a474d584cbd1cf52730f1663d117721e68f0e1fd0dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp313-cp313-pyemscripten_2025_0_wasm32.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 98eb51e0887ada6973a2a10af866f46dae2e80e99f7d294394992741a55b4906
MD5 fb6c7b762848e119b644273fdce424de
BLAKE2b-256 73f356688dd6d712e2554eb979534f52120bb79106227fd026e49eec3c5606ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c08b0f12b6321bc0022447bbdfa22c44ef7b147d2d4f61b75148a18d0f223fa9
MD5 5090dd01311953415f1aad34cd6054ec
BLAKE2b-256 d51b1aa806297f416520724ba83b1d2d6f48d5f27d02334a644ae19cc0aa9cd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2bdee1d1abb1002d32d24b2bd5e88f362ea447e70d75218c8f7a189a30abf82f
MD5 fd9d4e3fb8f883870942b0abd0d041c9
BLAKE2b-256 ef88d0d6c70ca20e412e615240415bc73e5f82b74d3e2fb6213f4632db835ae7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 fda702e677704025e26e6866b71f2fa0e3de96bb61b168d06f81a7d860295e1a
MD5 970a2f7ab31158c239b6318e095416ea
BLAKE2b-256 4f0cb4d0e742f75545c06e1e7954a0bb48dbf02cc1b400d4d875c26ca634e2ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9a59cd4cb6dbead1ed4fe16ddd79f95f4d2e95c0d200ae91d7f4761a37bee521
MD5 44c871e49f4f11c8813f3e9340389c8f
BLAKE2b-256 5e7f70e051c89f17fa8fd09b77f0f02658839ab310f555dcfc4cae23b90e59fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 286b3d89b77e684a57c3a9ed0471109f1206a2256722819c4448de3b7c505208
MD5 73666075e137fffcf02ec2f2c593baa1
BLAKE2b-256 da7118915ecbdfb88e2feaf5e35b458b985ce90ab6451bf913ceeaecdb100cde

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c5d152b9830c96919d06cc93015ea508ecbedc19d4722a85c4b1ee0cd1cd6845
MD5 2757e15ef60ea8ae2a4dae0bd6e60724
BLAKE2b-256 a57f5a8cce08f75020b7d29b09d515cb6a3c2003f5325874917f787a5a91e4f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 042115d58f59764412de06684c9248b75228dd287795194161c68f4738d72e97
MD5 99cd54abdc71fbf77bb0e54974aef586
BLAKE2b-256 38b0d71d4e2245eaeb7f7963a1ccd2da0d66fa8d3b13e0b0ca27783b4cf6018b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2725ab4f24cad1c32281d8bdd9705da51afe16f7c20a4edf0ffd805704ddc5ca
MD5 7efdcbe883db539063e41decb9a961bf
BLAKE2b-256 5a2446f55820222af96f604278291e64c2d9673a298396204fdc011f2450620a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.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.3.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b42922fccbf9205862c2105d0fcac1360bc786e89c86e930abfa826f70ae5929
MD5 da5a6a74e7bdce8b32d9e39a9e217195
BLAKE2b-256 ffd8bc5ac11b035135fca0ae91a9ca41a72e47b29ba50c8acc05173d1d943009

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 7ee3563329a1014494e3af2a9586693474bea73a26ef120c285c8a2f8c053592
MD5 25adacff2ea95a64fe6b6cf0b23de6bf
BLAKE2b-256 8e7c00bfada29b768f76221b29b737f92e0eb7ab4ac4a18bdfafc3c0cabb404e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 35c16d14aa3b24b2b1edc840f6a30533b3325f70b52d067f3ff7710b92495918
MD5 46c5e58c146ed97d5360d38d73d77763
BLAKE2b-256 168b13b38e72acbe1abf3ecba29dfe1be47512c6ae6fe9ee6a306a8f08bfa4c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 01e2e972a303f12150f028d5ad869919a9b67d8a4f2c87b6a1c8fa9d535f6fe0
MD5 f7150ce9df2f627e123ebba4ee3d62f1
BLAKE2b-256 0ff19a214e43a63fab01799c1497ec6396fb452a3af9537dc71ae62a338d2150

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2ce86c563174b6d4a9a880f91fb79be1d9f0bc5aeb652410d662ae4118e6ca7e
MD5 f78af82405c9a15fede1ad94dfaf1db0
BLAKE2b-256 9ccf68d45dd49c3dc193e288f648923690da09a0aabcdf384cfed2631d22f3d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d62994febfa2f8f38e9829e648e77966919d92c4fe4a672858718d663bebea1c
MD5 8d19d372951e0c872ff636cb30527e79
BLAKE2b-256 576ba98036348b6e73b4d22f719ef926a8f3794c2b1e7de2df65c881d1d6967d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6b40ce2b3d5fa31ca81ffe3e8a2b947269a225562e1e5de968cbf05d0f057a8
MD5 e9c98511d95e9ccbc986824b403a9fd6
BLAKE2b-256 35ddb8b5bc77a9b382d541cacd35520f3b963095517386d64faeb357ddaee41c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 73f8d23748907ffa65d8f504fa9fe095ff5e9c60262af72417eb9f59a228cf5a
MD5 4ca18cd58a8ec936bb2f5dcbd23f036c
BLAKE2b-256 3765e4d40961e620ddd7baa38b6f9db9902f43878b9da862ce7a84960c2d387a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 b8ccca6cae7283d805e97dc5f90444b875146941f90740c3c626b67f348f22ac
MD5 2b9ad314b9bc243710153416f7eb1364
BLAKE2b-256 32e915b77c6c8d90c754808378f698183447a364d73fa74961c42813437ef26f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 853cf67c4f34e25496650530153562202b4f80d4bcc08608962f9b52d43a6373
MD5 3a5e0bd5254fd34d41f1d4a5a5ee5c0f
BLAKE2b-256 24338ebf951083d4405654805940019e8ff76993dfa887674c1197ef9ff6a00b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp313-cp313-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 c473fe2344a97b4a1eab85d6862a082307cb9923fe06e6818fc06c45273f8f0e
MD5 8cb6faf497d9e5bb05d7f4b82d4cc308
BLAKE2b-256 4e09d982edab9f4d75e3dbbf50a1bf7d25705ebb92e795942eacd2aa78d23c86

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp313-cp313-android_24_x86_64.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp313-cp313-android_24_x86_64.whl
  • Upload date:
  • Size: 14.4 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.3.2-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 87625a60fdb8cdb1bba489c40f642df87229471071ee031b1f5a35a65bb9c0c9
MD5 196f0f77f1fd194387ab6e1ca45d6e4c
BLAKE2b-256 f7a9d98a7d5e2de2cc5f60454c1de6430508c5579df03500927840f4c18b21a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp313-cp313-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 2466e8552ab2b89cb0589a4205fe2d8ac5564ef1053018d4cdeaf2ae6e697892
MD5 edf1e70e31d21d020946e1e6c06c8fa5
BLAKE2b-256 1ee2f4388c9d33bb667f5442bcd2294e6451a13a11e332ab57b2344546a8f07c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 14.2 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.3.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0674749b6d58e4bec2910842e7ce3fb0b8071bae7564c7574f362272e1f26107
MD5 48d8ef5e1eadc297c01b9252fc781c2c
BLAKE2b-256 7ea7bd068df39135bfa57e2e584976be2be6dcb48d537f0b574aaddf625542e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 15.5 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.3.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fd7e15057579654d9ae2b71df3842e84c651befd16825f501de50f69364a482d
MD5 8afdfab30b19bc956468147915823405
BLAKE2b-256 a3ccd85b925be2fb94e7fc2823b94dd91b88371438e8566de01fe3986f46fd2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 14.2 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.3.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9f3d2b3e65781ad473763260ab5323ddbc1dec925eeeb2778dcb9d5e03d4e950
MD5 a513f5324afff3a675b680637840c261
BLAKE2b-256 c29c1f5893baf69dd6214c2f9680d798b30dc3c4b37e07f03c6dbaa39384ff7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp312-cp312-pyemscripten_2024_0_wasm32.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp312-cp312-pyemscripten_2024_0_wasm32.whl
Algorithm Hash digest
SHA256 71e7dc3bb17d0a774fcb2715ddc824174831b64a34e1463bf148adcbb0c4ea05
MD5 63e08dbf1f6f91852a2c0eb0adb21d46
BLAKE2b-256 9358bcd46942d507f028aae66deb56734615071335f42e6f18e2070070653e7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b63a3384ca1cd7aebbd0a4686662b547549433d5d9a3b2fcdc02f885abb2f6d5
MD5 947da866b85d20533a0d4af384f46eea
BLAKE2b-256 8a8d82450906a1a4d5ddbf66d3d29a1e0df2fd3f76539f868d115c11c7b2b57e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e335a9724ddd1ddc5deb48f60152f9b10793b6ad595107c7c4b89c76587477cb
MD5 f3d18191abac41b422b7ec776e0f2616
BLAKE2b-256 cfd44b98275eec189b050e80be32f1d6824018d52040c6d490ef1e59d15c777f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 faf155db8b091bdd87cda30a05a4ce2272ad02458c7af40d6420da4f385c62e0
MD5 63b9b4dcc93de9963ca56ddb74b19ffb
BLAKE2b-256 8a0d7af4a169e4a5ffc0d75ab16994c5792f4a4c7b7879b4b8353adb6977eecb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4c35a65b3127442515850e2dfff3879f0c889883a256b7e040dc5299662788ee
MD5 7838f9b3ff7a9cac346f63b2d2a83135
BLAKE2b-256 214f84251c542847f9d97d129e002de66cc2d669836cbbf82a5734c4eecf5a3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 adf6109fc8c7938b49b1adae9f0c1907bcce434c6b7b18344dc6de075adc48e6
MD5 fe51cca77b354402ba2068a278315be4
BLAKE2b-256 4ce600c7a105a23b24aed022033f4573d88f3e01684be3b97e1f19a713878ac5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 927d117933d94296d61b171fd62930d6603f30ef66f8617fc7fc4a6d0b6cdad0
MD5 e42371d4a339fdf10c2bbd393354ba30
BLAKE2b-256 cedece889c8ea519d47e9001cc60ca13f9190c9820f80a4822e23d38cb6b8f50

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9ef5287c911d97394e5b50b5cd8fe21115b702eb40ef0e950f9358f14ed7a0ae
MD5 ef4ae982b563fb680084f7368f2baa20
BLAKE2b-256 ba6acb541d69ef452f0211ec1598544a1fdff0f9613c7b13ba9f767258933426

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8dc8f5c2ff906e84e570813749aad1011f46f6515e958f611d980e2e487576d8
MD5 d04614012807dab28b207ab492a9e9a9
BLAKE2b-256 9ebdef8076bf877183f6e1323a2d2066b16ad15e73bb92f7891a2ba3c4610b23

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.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.3.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bcc8ae32fe6831bcad702e85dd4dfa7a709f7d6b9a4e96b0786260fe0d476060
MD5 5b528c98429847d7e0937454738843bf
BLAKE2b-256 ed11f8a01e914411ab649d21eed031538caa005361a96ac8fa77ca70c0f3ee35

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 be85b3ffe0d93aa59fbab2c969e5563fa3a6e76f38f8caa9be458367aac6e3d8
MD5 dd3b94962652a44bef9e6836da28c091
BLAKE2b-256 06751c6be51c30ff9d820c453b6615552425688c025388f4bc3a466a8034c76a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6d2b34b9a15c1d8443ea1b5d4e4769963dfbe8fc986d44ac3c18c1a4b40ecff7
MD5 0571a6f4baf1105676786ddf4223c309
BLAKE2b-256 fd95ff1270392707d62fe7a54b30f879f0cc7a591dc2b4e1be0fce2a2896d8e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0989ac72107d3fdbccfddee24b0cfb0f4120e1701561c1ea6c9181dd93721def
MD5 4c30d773993d77cdc7b9294ab109a079
BLAKE2b-256 a26d62a054682e82b2985c23e814b6cb9dad34de33999c9891e0390366a08f98

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a9874d602bde90ef69c7602117f6a0f9565893d3d9611a144f44aef4ddf5617e
MD5 db53699ab838bc134b2b53dd4ad1f624
BLAKE2b-256 2f53f9ae81f675f18f88c3a84b0ea741ebce9fb954c739388e98774152b2b0af

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 975ec771e16f003dc6280188d700b02c28c5d010d4aa029c699939ac7dc7659d
MD5 7e75433cc27ac5eb88871c410cedeb5d
BLAKE2b-256 4c9772143ccc4cb4fd1f538997020e0e14824528b260afdd5dfaf1d0bb8563b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c651c5c953bccbe7c2d79be5f821aaa1162c2e6aedefb1091211d070b17d637a
MD5 a9e9377f60b351137bef0824ab212c5f
BLAKE2b-256 2df89f7ddb716bbc48e6d43def038bd660f9f60cb829f61cc8ba7eb24b8ce0d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9bdbc570302c5526945ad7ab4b0e58d9864e9c09605c42f9bfce80a48e455824
MD5 595a385e1f5f4e8d26f6a1aa870e8ac6
BLAKE2b-256 0b2f5695e5c50ca7213ac74a13573b84b792136a68917200b5d64cdddd575bf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 14.2 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.3.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 e46f2662391e02f757f37a00629d2ba3acef623026eacd3349dfeefc14e4e867
MD5 95c42ef0551eb90a6de5f501104bec77
BLAKE2b-256 131b7b4573e21a03d9789745525d29ab7f683b3b97135c20eca8128dbc31233f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 15.5 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.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ed934a5fba95b90d8e7bdf100c80a4399206c54dfc8c2f51cb62ce6196773002
MD5 0a3fe2133cb10e7f0860a52b6828196c
BLAKE2b-256 ae098f6a569de47183574f7517275014da979cbc3487d43ffa3605c0e8497dce

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 14.2 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.3.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7eb9dec432587bc696138a83924313245759c1e0d803b32fba9ca8055b0c6e04
MD5 3c6f31bf5266289800a101cbe4ec9870
BLAKE2b-256 dfc440d3b3380c675b043b17b38b70f1ccfe38cadef0b516dfe2eddef2b6408a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1412de516fbacba1d5d27fdbc9900f6aaff27dd97ede6493d3088bac2249bfab
MD5 c93c5d98e0e37cc8b239ff16cc4a2b05
BLAKE2b-256 5baffc1cab3df971eff5c22f7662ea0a497153500f2e5fb460f597511d2ab242

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 44d17b0f01428b28c9473abe7e008832738a7b5255df042648ffdaee12310fdd
MD5 878b3fbda4c0a0ce639d24b614c737a6
BLAKE2b-256 0ed5390cb54e4f7d8dbf849a7ff92d488bc99c364bc3d00821398bdafb9fdac6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 aafe42b7e467fd95c81debc31f44edf4997786fbe380fa607b7b32e214101ff2
MD5 477410f76edb6880cabe1fab4ddf5945
BLAKE2b-256 232a1ccad94a183ac83c94a30e46055605bf826607f037d1877d80771d33079d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 94e6082eff8b53e098748b2f2a15615b9a9586eafb27913931441ba0230146bb
MD5 4807456f57e4a96eb6dfab1fab3202f3
BLAKE2b-256 c8303f89338ed52728de2af54514b5b864fb258e1a6d602ee2c7efde894a6c21

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 68cd69fa1dad123e5aebf1fa008b2235c5e4545868cd9cb9fc45c8611ab9ad68
MD5 72ca9633a79cdd94070cd40fd9ca2df5
BLAKE2b-256 2d5e3e8ea5d6f6fb31ddddffd3ad8d7824f1a824156ed80833ec6a69c6d8d290

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c1672bfb3b0d34fa9e204ae6a108ba912a4e9cb8a40c21d09aee3fbdbec85b9b
MD5 42be22b12288f5a06058d8b9095c4cf5
BLAKE2b-256 650278beec02c88a192f12a81e70e6dbdd642d2e93e117eb4a7fe2caf3be38f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 655f31eb10df4929366b25b1334afe845bcd91fb56c2b7c5428b69f3ab0f1e6d
MD5 0e6b79e7ccbfc4efd6ecddf5b7879220
BLAKE2b-256 e7cc1e08d5f0b62c3404dd029c116038da4fde2a60e683e98209c6751128ed0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e282c01a8fd8474d53ff03d9dfac2a7169fe3cf8d99f9476c27925a6d648eb29
MD5 813a44b5f5c041f64a4f1969150bf043
BLAKE2b-256 0142a6ca5456cd1882839bd7dfd78f9ce3708f7acd8cdd13010b675f39cce43b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.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.3.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0959fbea3d7f728d8d9923fa459ca565671e063381175f31c1fa91c752bee14f
MD5 2c5683618ab62079cf464a96bef688cd
BLAKE2b-256 f5a374c98d1c16cc69cad6828fa7beff1540f7fcb4f4e0eeae36896ea7db34ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 24d80bf5a918485aed63aeaa923486209c29aa36abcdd153cc2efa2e0e710907
MD5 9453f6c8e01caa46809858cf9759e368
BLAKE2b-256 eed11a1828eb9e59773186bf257ea16e845598740ba6c79814596bd623a1e60b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3814bec15135ef014b99342994e4dc0a1573befca034b502e2ca2f0e52973b4c
MD5 90154744bd6f5fcec1c5e31a9e04666e
BLAKE2b-256 47a98f43b250a9e6d0d6b2f3546df487dccfa1cf9532a18dec9c32355c725263

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2e901b92c742f4290e2c0da09b481e76cb657574c6b31b0ef843c9317bc86b8d
MD5 df677b691b2a4b1735e1cf27836a2e4e
BLAKE2b-256 0bacd0aebbb9daafc7a8769a72a09100190799a2a9ca909e9f66df9879671936

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5b1adb0f828c0523251279e099a3c7f3b5468fa46b35720399db27221fd36985
MD5 2d2d6386efac483a31d1a8c1b10cf11d
BLAKE2b-256 fc7819b791ad99ec3104d0654778d918bc035cafaa0697d7e34f683cfebfc9e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5dce3c3fcd161631c476e50a7bd60f39036680d77f1ed9b2562f30c829c74714
MD5 b97dc54206a14de5e47c0367daee74e4
BLAKE2b-256 38a2a242ec8e36c1f9bda3c818806657ec29896d44d3170f0b28932658a694da

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32728bfe2b85674d775663d40c94eced6fec3655a15427e444541f841ddfd784
MD5 a5b345514f24afd12c6d1a3eec711fc5
BLAKE2b-256 e12816592cbd56fb9ce8450cd9bfae02a9f886f23bb328a0aadde3f9eaf31144

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7e9cceee3564aac803d2e905d7a53d18e0ed855d91af4bc5eb91ac1ac86535d4
MD5 c47d88f7031fa12f355959ecc38736a9
BLAKE2b-256 2b3c4ad1975c02a079e13a3cf8a06da06e6b421309540f9d1ac1990a6c113b10

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 14.3 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.3.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 c4fd9c1d7bc48d2982051ac8dcd9597b146603a791bf9f4ad1bd65cf22e94ebd
MD5 4656f6d0900267521b916587db896ebb
BLAKE2b-256 c67bf5c6b0d2f595deef832bc386cab2fbdc074426161b24f9e942f6f1d50758

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 15.8 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.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 018ca88ec1d263d0141c37da867d1dfc86ba50e0a73b0d103df619508c1302ad
MD5 318083073b83a963645d6b8ee2310f43
BLAKE2b-256 e493c8b6bc97a212033ec77bb610c97ef6a7ca99d6b57268db6799ff38bb6e63

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 14.4 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.3.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d967f21041bf91f0702aaee05e6795681f4f72a04f8d19934a8f0829e70e945e
MD5 4553fd29d8861d75991c89a4a0ef21c1
BLAKE2b-256 1578b2774acf205480e4e2a3547584e66f8088dd8a3a2b28396bf5dbdbf7ea62

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2fb61ba9a22e93270043fa41b0ee1462736d383a28f423c70eea9f350fd3f9f3
MD5 a538bd561eb5dc30a92918910f377413
BLAKE2b-256 f811d7ec118119e7277a8fee0ed1d0c891a5d6e8a38407683d1d98aeefdfc0bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4c6dd2e5241e37295d8c176222d020a23cf53c0e33403508c4414d5dc337701a
MD5 33e956b84f1f28db0b07868168ab30a8
BLAKE2b-256 6fbc8e80bf2dc89bf28c172c9b1bef7361118d7e66ef5bebbd8fcd50c8a3661f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9bacd0e80bd6018f28e6a4c19f0967487773ac63eb415844327052038feea0b1
MD5 e2a61a4ac1919dca73a72eb365ce7920
BLAKE2b-256 29cb13652ed18fa588713c103ad17e3e578250026b52670c3633589fb4587c3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ed327edfc1810d720e03bec95224342ca3a920cf0483e03b3b794d3715561ac5
MD5 90bd450e085826becf487d7d8eeb437c
BLAKE2b-256 12a4a095105052526e0510d125bef1420357a963894edbd1ce49954b957255c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3643e4edbffbddf982ab601e32cdf61848a4bb659130631ae3d4b01e77b7c2b1
MD5 01520ae4c4454732bec19743eeaf929a
BLAKE2b-256 43726edc633857460dcd06e9e1cb11545f169d33040574b7efc4012ba86f6c11

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ad88ef7a7c3a45b870c32161dcc5be12976ecacfbf8e74dcc7397469fc8fa388
MD5 ba6510299b7cd5dc24f2f5a0ba27d899
BLAKE2b-256 fd726a360f0da430875cee2f114094c7b6f6f62e3dd44501729c5d209205008b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 931e2338784779be73b673ae78ec872c4a410a3212301e3a0980b19035e8a77d
MD5 59296be19d865df61d50fdd5abf111f7
BLAKE2b-256 7d35023d1d0764a39b219bf9d6dd3dcc488b3c403cd55cdc4d9ba54e242831f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3bd753437228363665c6b94885c433ce716ee86c9e2be104ce052f60aaa9a782
MD5 905bf57b586c0c6931c7fd99dd71e0f5
BLAKE2b-256 b0e621665d0d0b0cbca13ef63b4f9e07a8749dbd4d0d88a477557f6de4102a41

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.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.3.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b40d56dca280be0136723bdc251fc81c018de19c3d3da61b5c61b368653318d8
MD5 fdd44df1b771b9599c1e8062ba0c48bd
BLAKE2b-256 e3834e93610842e3ed6bfa1c8d43d8befaff4d06db20126a72fd47b41eb4b834

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 592ee1313401d5d45d0c5ef21fc5038354bcacf5283948fba0db88a843b2e254
MD5 d6214a56646cef042c6207981f29be32
BLAKE2b-256 3758d066306735c4a5450f1b4a75967fca23db0328fc68cadcfe9763bc328292

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3fa675864c680338afa9f87d9c7004d73b0e9c2d5550b06cd12bee3baaacb6fa
MD5 4678fb12c7a542a1a03f0421486edbbb
BLAKE2b-256 33b4b5d3ff313886c211a3a8a0497bb2d59e50da1256daa4f9c09d6cc29e832b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e922ea386c442291d9f40302842396077cfc23ba08337f4b38baa7cec63315d3
MD5 1fc52c7948e4f4106be166018e2b8abf
BLAKE2b-256 07755e1c2982a16dc960403abcd80df88421fca67d3920d615b9d2c2c62f66c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 509cd2a2b3d0c6f354f19259004b9f589191e33cbe2179058530e36306f9b785
MD5 71c511742e3a551357343b3bbae873c5
BLAKE2b-256 9c468d31f293eacc7134708bab2765c1896aa5fcec09e9f53dd50bffebd00309

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 759a084eca296a35bddf5efe9c2a5dab0a59b1c90fdf44921d886ee954572715
MD5 96518ccd1a8a57fc5b9c89d9b2254c93
BLAKE2b-256 2ba19b47059d1f66200186fbad9ba30fbf5216f33bbb94d18ab9997d67c5f1df

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8da6d6f866af289de7c644ff64bddf3a9ca3a181e9c20944bc31691edb59a01
MD5 6d5fc2e57db260cbce0a5b438d8263e4
BLAKE2b-256 0f7e2a72bd7e33dabe8166a352135108ce683bb2631c1e0b9d4ab64acf7a4dfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 22f9987002859845a875615d9327b61a0ff06432238644f0e6b1074c1b044875
MD5 d0bd4a44c2b06083ee53f018cea78894
BLAKE2b-256 eb72718f395442dd922612fcdd8a9cdec9e0b1038db43c84877c288003b942b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 14.3 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.3.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 5a595fd73dccc44aee6dc5c49e9b7a0e392043dbd9eda5fe573c83da405118de
MD5 3eeef35159263a9a21060dd9050c527b
BLAKE2b-256 22b7708ecde111aa9265e2e6020c759e4e7f889aa182c63ce56815f69f2b76e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 15.8 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.3.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 be60f916bb3f6c19d7f819e268191fde4766a3758dfb3196e4e62d8ea9fd92c6
MD5 a854c25afe24bc046892d52ec4ef124d
BLAKE2b-256 91ba665054f0a8383937912e545d3825212f23f033f57b4557277e05a7f8b75b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 14.3 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.3.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 15f61ee3fc6c491bd11febd3a7e83df200afabb577bbc646fdf99f0ec76457ca
MD5 dd0266895ba693aa595f0eb116ca1121
BLAKE2b-256 73a7cb3e5cd5e200b36b5f700d11cd5a86aee2f6a473e780e46ed493c4f5d655

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 62.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.3.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1edfeafd78e9cad86b6aea197f7a266dc23d6ef728cf68843d6a396f87ebe642
MD5 baaed2c590646d2a35faec187ea8f489
BLAKE2b-256 eece475986a5b4d0d7c07118a240174c39468235fd2597532a08ecf8210d0049

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp39-cp39-musllinux_1_2_s390x.whl
  • Upload date:
  • Size: 61.9 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.3.2-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9cce1f5ffb357c0c00bea634332f55fe7bef35ca385fe53e1c430e3fb17ca491
MD5 d23c88e6fef83fc4db6ea7d853e0660b
BLAKE2b-256 fc4e87e18d4abadd631b76301e07715432af45e49cc303a9662b6f5662c2de9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 eb0f5f9ee7274f7284fa43a885308a199009ae8525a8f107fbc046ba631d7167
MD5 b5c38c392d78700ccdb6f71442dfe5ee
BLAKE2b-256 440a3f29426e3ffd87d9772fae32b74b04f7128b3a20866cf9c116a3b7ae715a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c3159f4652ef27a5a8d251749d40546a644027e16486b40c08ea606223199c2b
MD5 8bb141aaaf49a96cbea9e067e763b07b
BLAKE2b-256 fed4bd4931f7b9a80d5c20e05bb9e885439aef7c196fd8958c94a12b53bd9ce5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 62.1 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.3.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8314effd8e3e2ff5cfb2ca733ebf6305638a51be30eb8989b7937cae733a6d8e
MD5 8c3dd3ce780619648555cef57411263e
BLAKE2b-256 38cc71c7a432c449464d0c2784d76634f15a220a52f535abc06628c60a5b3cea

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 62.4 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.3.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e0d0056fe353d8af5070d19b3bb9d780e7bffc14a3cabdb62bf6d61e6256aeb8
MD5 075c803cecafaf7b5753ca0fd7cfa040
BLAKE2b-256 160ebad82839d5e5d82106fb0e76a2a872c19eb71937738545e6e6adf06e48ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ebf7ff5f9c4656626e037ee91af448ee11a2258e788dde0a79060dd111e4a39e
MD5 109c809ae600d6377a257de2fbaba977
BLAKE2b-256 963176782ac9734d8b1139df41f5372bdb4777d87147238470da913a686215ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d3af0e8c702feffa26ada66359947de85c9ca3d1f29b3c7a585d4fd93f8ccb18
MD5 b84e9da5437142849c26298c8615c4ce
BLAKE2b-256 13c13769fe82e5d3ed935068709c63706e889874894e2ae2113aa23e783277f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.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.3.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f0bca3c42cb0749fbe129b74acaddfbd09354835f34c9b8cae5078635bff0bac
MD5 687d1937a1a3e4c875c74279e9304521
BLAKE2b-256 4f1b1a62903bdb36918fb7b253aa938a8176f4ea005a84b9e5c7af8844e5faa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 9afab1791c1ecdd0eb994765ce0b0a88b151b358da892d4103e074eced93beda
MD5 069a28a19d13300198abba7d13007c82
BLAKE2b-256 f3977729b87b5f16945c0df07abffccb4a8daccb7e49bb0d1b9b098a95eedbcf

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b94f763f10ef847c2d6fc9d35f2d5d71a4cd15b10f0616b2e3f55973d0e01327
MD5 f0e676734bbbab53bfc80c6a19fe84d2
BLAKE2b-256 fff8ac5d70757f31d7d5c07033a2c55d21fa3d56cf1aa9744e1009f6dcc5c482

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7a5abd29acadf2375d986e4f1553e46cec3e5eb1e26ef72e6638ba71a47ec8de
MD5 e19f1585e1b0f2a8884a383a30fe0754
BLAKE2b-256 ddfd9afb934807ff640058b41e5f7c92dfb8f1f508408efb33f2f860beb0a35d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8fbc3dd8a66642ceaa4f132a3213854fab4b0a297117f356d7e4dfd5aa9456c7
MD5 29620863075aa3c713b73252a93046a0
BLAKE2b-256 654af05eed0332eddcc4f95a023fa4b8e8e99aacb86110ad8f803dcea2d6b89a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 1a56ac7e64a779015c597236acae26453a015aad3c62812c72a0623968593a8d
MD5 331db911003309758f37b0154923f536
BLAKE2b-256 d567f31ede88e7a80197fabcb9ee687a511902aac0893dd185bdef54b55c5d43

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: xxtea-5.3.2-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 13.6 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.3.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07c1a2f258b9bdd29539defa3d96aa8b12b6052bbffca5a6939334251e18bdc1
MD5 aa2df257291fe0b8c4da1b3bc002a886
BLAKE2b-256 4646de0cd7b4deb0607d75be8447488f5a3523e01d54ae7f9b7bfb2594c70132

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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.3.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 395dd0b296bf79a0cd499cf2072c909f67ba16652531599c99cfbc9963630b09
MD5 ffb61c7f83d715dac48470670c209353
BLAKE2b-256 c012beed36c717020070e100f23ec3a8c38ece8b86610d65002adab3d608fcdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.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

This release

5.3.2 This release

170 files

5.3.1

170 files

5.3.0

170 files

5.2.3

170 files

5.2.2

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