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

Uploaded PyPyWindows x86-64

xxtea-5.3.3-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (14.7 kB view details)

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

xxtea-5.3.3-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.3-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (15.0 kB view details)

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

xxtea-5.3.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl (12.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.3.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (12.5 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

xxtea-5.3.3-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (14.8 kB view details)

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

xxtea-5.3.3-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.3-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (15.2 kB view details)

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

xxtea-5.3.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl (13.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.3.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (12.7 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

xxtea-5.3.3-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (14.8 kB view details)

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

xxtea-5.3.3-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.3-pp39-pypy39_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.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl (13.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.3.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (12.7 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded Windows x86-64graalpy312

xxtea-5.3.3-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.3-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (14.6 kB view details)

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

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

Uploaded graalpy312macOS 11.0+ ARM64

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

Uploaded graalpy312macOS 10.13+ x86-64

xxtea-5.3.3-cp315-cp315t-win_arm64.whl (15.0 kB view details)

Uploaded CPython 3.15tWindows ARM64

xxtea-5.3.3-cp315-cp315t-win_amd64.whl (16.3 kB view details)

Uploaded CPython 3.15tWindows x86-64

xxtea-5.3.3-cp315-cp315t-win32.whl (15.0 kB view details)

Uploaded CPython 3.15tWindows x86

xxtea-5.3.3-cp315-cp315t-musllinux_1_2_x86_64.whl (66.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

xxtea-5.3.3-cp315-cp315t-musllinux_1_2_s390x.whl (66.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ s390x

xxtea-5.3.3-cp315-cp315t-musllinux_1_2_riscv64.whl (58.4 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

xxtea-5.3.3-cp315-cp315t-musllinux_1_2_ppc64le.whl (69.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ppc64le

xxtea-5.3.3-cp315-cp315t-musllinux_1_2_i686.whl (66.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

xxtea-5.3.3-cp315-cp315t-musllinux_1_2_armv7l.whl (66.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

xxtea-5.3.3-cp315-cp315t-musllinux_1_2_aarch64.whl (64.9 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

xxtea-5.3.3-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (58.8 kB view details)

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

xxtea-5.3.3-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (68.0 kB view details)

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

xxtea-5.3.3-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (71.8 kB view details)

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

xxtea-5.3.3-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (72.4 kB view details)

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

xxtea-5.3.3-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (63.0 kB view details)

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

xxtea-5.3.3-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (67.4 kB view details)

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

xxtea-5.3.3-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (65.7 kB view details)

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

xxtea-5.3.3-cp315-cp315t-macosx_11_0_arm64.whl (13.5 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

xxtea-5.3.3-cp315-cp315t-macosx_10_15_x86_64.whl (13.6 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

xxtea-5.3.3-cp315-cp315-win_arm64.whl (14.6 kB view details)

Uploaded CPython 3.15Windows ARM64

xxtea-5.3.3-cp315-cp315-win_amd64.whl (15.8 kB view details)

Uploaded CPython 3.15Windows x86-64

xxtea-5.3.3-cp315-cp315-win32.whl (14.6 kB view details)

Uploaded CPython 3.15Windows x86

xxtea-5.3.3-cp315-cp315-pyemscripten_2026_5_wasm32.whl (8.9 kB view details)

Uploaded CPython 3.15PyEmscripten 2026.5 wasm32

xxtea-5.3.3-cp315-cp315-musllinux_1_2_x86_64.whl (62.3 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

xxtea-5.3.3-cp315-cp315-musllinux_1_2_s390x.whl (62.1 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ s390x

xxtea-5.3.3-cp315-cp315-musllinux_1_2_riscv64.whl (54.3 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

xxtea-5.3.3-cp315-cp315-musllinux_1_2_ppc64le.whl (65.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ppc64le

xxtea-5.3.3-cp315-cp315-musllinux_1_2_i686.whl (62.4 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

xxtea-5.3.3-cp315-cp315-musllinux_1_2_armv7l.whl (62.2 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

xxtea-5.3.3-cp315-cp315-musllinux_1_2_aarch64.whl (60.0 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

xxtea-5.3.3-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (54.7 kB view details)

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

xxtea-5.3.3-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (63.5 kB view details)

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

xxtea-5.3.3-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (67.8 kB view details)

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

xxtea-5.3.3-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (68.3 kB view details)

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

xxtea-5.3.3-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (58.9 kB view details)

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

xxtea-5.3.3-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (62.4 kB view details)

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

xxtea-5.3.3-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (62.1 kB view details)

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

xxtea-5.3.3-cp315-cp315-macosx_11_0_arm64.whl (13.3 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

xxtea-5.3.3-cp315-cp315-macosx_10_15_x86_64.whl (13.3 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

xxtea-5.3.3-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl (12.9 kB view details)

Uploaded CPython 3.15iOS 13.0+ x86-64 Simulator

xxtea-5.3.3-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl (13.1 kB view details)

Uploaded CPython 3.15iOS 13.0+ ARM64 Simulator

xxtea-5.3.3-cp315-cp315-ios_13_0_arm64_iphoneos.whl (12.8 kB view details)

Uploaded CPython 3.15iOS 13.0+ ARM64 Device

xxtea-5.3.3-cp315-cp315-android_24_x86_64.whl (14.3 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.15

xxtea-5.3.3-cp315-cp315-android_24_arm64_v8a.whl (14.1 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.15

xxtea-5.3.3-cp314-cp314t-win_arm64.whl (15.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

xxtea-5.3.3-cp314-cp314t-win32.whl (15.0 kB view details)

Uploaded CPython 3.14tWindows x86

xxtea-5.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl (66.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxtea-5.3.3-cp314-cp314t-musllinux_1_2_s390x.whl (65.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxtea-5.3.3-cp314-cp314t-musllinux_1_2_riscv64.whl (57.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxtea-5.3.3-cp314-cp314t-musllinux_1_2_ppc64le.whl (69.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxtea-5.3.3-cp314-cp314t-musllinux_1_2_i686.whl (65.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxtea-5.3.3-cp314-cp314t-musllinux_1_2_armv7l.whl (65.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxtea-5.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl (64.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxtea-5.3.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (58.5 kB view details)

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

xxtea-5.3.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (68.0 kB view details)

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

xxtea-5.3.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (71.6 kB view details)

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

xxtea-5.3.3-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (72.2 kB view details)

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

xxtea-5.3.3-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (63.0 kB view details)

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

xxtea-5.3.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (67.1 kB view details)

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

xxtea-5.3.3-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (64.4 kB view details)

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

xxtea-5.3.3-cp314-cp314t-macosx_11_0_arm64.whl (13.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

xxtea-5.3.3-cp314-cp314-win_arm64.whl (14.6 kB view details)

Uploaded CPython 3.14Windows ARM64

xxtea-5.3.3-cp314-cp314-win_amd64.whl (15.8 kB view details)

Uploaded CPython 3.14Windows x86-64

xxtea-5.3.3-cp314-cp314-win32.whl (14.6 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

xxtea-5.3.3-cp314-cp314-musllinux_1_2_x86_64.whl (62.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxtea-5.3.3-cp314-cp314-musllinux_1_2_s390x.whl (61.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxtea-5.3.3-cp314-cp314-musllinux_1_2_riscv64.whl (53.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxtea-5.3.3-cp314-cp314-musllinux_1_2_i686.whl (61.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xxtea-5.3.3-cp314-cp314-musllinux_1_2_armv7l.whl (61.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxtea-5.3.3-cp314-cp314-musllinux_1_2_aarch64.whl (59.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxtea-5.3.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (54.8 kB view details)

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

xxtea-5.3.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (63.5 kB view details)

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

xxtea-5.3.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (67.4 kB view details)

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

xxtea-5.3.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (67.9 kB view details)

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

xxtea-5.3.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (58.8 kB view details)

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

xxtea-5.3.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (62.0 kB view details)

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

xxtea-5.3.3-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (60.0 kB view details)

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

xxtea-5.3.3-cp314-cp314-macosx_11_0_arm64.whl (13.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xxtea-5.3.3-cp314-cp314-macosx_10_15_x86_64.whl (13.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

xxtea-5.3.3-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (12.9 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

xxtea-5.3.3-cp314-cp314-ios_13_0_arm64_iphoneos.whl (12.7 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxtea-5.3.3-cp314-cp314-android_24_x86_64.whl (14.3 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

xxtea-5.3.3-cp314-cp314-android_24_arm64_v8a.whl (14.1 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

xxtea-5.3.3-cp313-cp313-musllinux_1_2_x86_64.whl (62.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxtea-5.3.3-cp313-cp313-musllinux_1_2_s390x.whl (61.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxtea-5.3.3-cp313-cp313-musllinux_1_2_riscv64.whl (52.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxtea-5.3.3-cp313-cp313-musllinux_1_2_ppc64le.whl (65.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxtea-5.3.3-cp313-cp313-musllinux_1_2_i686.whl (61.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxtea-5.3.3-cp313-cp313-musllinux_1_2_armv7l.whl (61.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxtea-5.3.3-cp313-cp313-musllinux_1_2_aarch64.whl (59.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxtea-5.3.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (54.6 kB view details)

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

xxtea-5.3.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (63.3 kB view details)

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

xxtea-5.3.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (67.4 kB view details)

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

xxtea-5.3.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (67.7 kB view details)

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

xxtea-5.3.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (58.6 kB view details)

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

xxtea-5.3.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (61.7 kB view details)

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

xxtea-5.3.3-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (59.7 kB view details)

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

xxtea-5.3.3-cp313-cp313-macosx_11_0_arm64.whl (13.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xxtea-5.3.3-cp313-cp313-macosx_10_13_x86_64.whl (13.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

xxtea-5.3.3-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (12.9 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

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

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

xxtea-5.3.3-cp313-cp313-ios_13_0_arm64_iphoneos.whl (12.7 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxtea-5.3.3-cp313-cp313-android_24_x86_64.whl (14.3 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.13

xxtea-5.3.3-cp313-cp313-android_24_arm64_v8a.whl (14.1 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12PyEmscripten 2024.0 wasm32

xxtea-5.3.3-cp312-cp312-musllinux_1_2_x86_64.whl (62.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxtea-5.3.3-cp312-cp312-musllinux_1_2_riscv64.whl (52.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxtea-5.3.3-cp312-cp312-musllinux_1_2_ppc64le.whl (64.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxtea-5.3.3-cp312-cp312-musllinux_1_2_i686.whl (61.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxtea-5.3.3-cp312-cp312-musllinux_1_2_armv7l.whl (61.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxtea-5.3.3-cp312-cp312-musllinux_1_2_aarch64.whl (59.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxtea-5.3.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (54.5 kB view details)

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

xxtea-5.3.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (63.2 kB view details)

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

xxtea-5.3.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (67.3 kB view details)

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

xxtea-5.3.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (67.6 kB view details)

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

xxtea-5.3.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (58.9 kB view details)

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

xxtea-5.3.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (61.6 kB view details)

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

xxtea-5.3.3-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (59.6 kB view details)

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

xxtea-5.3.3-cp312-cp312-macosx_11_0_arm64.whl (13.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xxtea-5.3.3-cp312-cp312-macosx_10_13_x86_64.whl (13.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

xxtea-5.3.3-cp311-cp311-win_amd64.whl (15.4 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

xxtea-5.3.3-cp311-cp311-musllinux_1_2_x86_64.whl (61.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxtea-5.3.3-cp311-cp311-musllinux_1_2_s390x.whl (60.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxtea-5.3.3-cp311-cp311-musllinux_1_2_riscv64.whl (52.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxtea-5.3.3-cp311-cp311-musllinux_1_2_ppc64le.whl (64.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxtea-5.3.3-cp311-cp311-musllinux_1_2_i686.whl (60.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxtea-5.3.3-cp311-cp311-musllinux_1_2_armv7l.whl (60.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxtea-5.3.3-cp311-cp311-musllinux_1_2_aarch64.whl (58.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxtea-5.3.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (54.2 kB view details)

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

xxtea-5.3.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (62.6 kB view details)

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

xxtea-5.3.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (66.8 kB view details)

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

xxtea-5.3.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (67.2 kB view details)

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

xxtea-5.3.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (58.2 kB view details)

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

xxtea-5.3.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (61.2 kB view details)

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

xxtea-5.3.3-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (59.2 kB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

xxtea-5.3.3-cp311-cp311-macosx_10_9_x86_64.whl (12.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

xxtea-5.3.3-cp310-cp310-win_amd64.whl (15.7 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

xxtea-5.3.3-cp310-cp310-musllinux_1_2_x86_64.whl (62.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxtea-5.3.3-cp310-cp310-musllinux_1_2_s390x.whl (62.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxtea-5.3.3-cp310-cp310-musllinux_1_2_riscv64.whl (53.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxtea-5.3.3-cp310-cp310-musllinux_1_2_i686.whl (61.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xxtea-5.3.3-cp310-cp310-musllinux_1_2_armv7l.whl (61.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxtea-5.3.3-cp310-cp310-musllinux_1_2_aarch64.whl (59.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxtea-5.3.3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (55.1 kB view details)

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

xxtea-5.3.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (63.4 kB view details)

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

xxtea-5.3.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (67.7 kB view details)

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

xxtea-5.3.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (68.1 kB view details)

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

xxtea-5.3.3-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (59.3 kB view details)

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

xxtea-5.3.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (61.8 kB view details)

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

xxtea-5.3.3-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (59.8 kB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

xxtea-5.3.3-cp310-cp310-macosx_10_9_x86_64.whl (13.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

xxtea-5.3.3-cp39-cp39-win_amd64.whl (15.7 kB view details)

Uploaded CPython 3.9Windows x86-64

xxtea-5.3.3-cp39-cp39-win32.whl (14.4 kB view details)

Uploaded CPython 3.9Windows x86

xxtea-5.3.3-cp39-cp39-musllinux_1_2_x86_64.whl (62.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxtea-5.3.3-cp39-cp39-musllinux_1_2_s390x.whl (62.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxtea-5.3.3-cp39-cp39-musllinux_1_2_riscv64.whl (53.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxtea-5.3.3-cp39-cp39-musllinux_1_2_i686.whl (61.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxtea-5.3.3-cp39-cp39-musllinux_1_2_armv7l.whl (61.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxtea-5.3.3-cp39-cp39-musllinux_1_2_aarch64.whl (59.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxtea-5.3.3-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (54.9 kB view details)

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

xxtea-5.3.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (63.2 kB view details)

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

xxtea-5.3.3-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (67.5 kB view details)

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

xxtea-5.3.3-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (67.9 kB view details)

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

xxtea-5.3.3-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (59.2 kB view details)

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

xxtea-5.3.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (61.5 kB view details)

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

xxtea-5.3.3-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (59.6 kB view details)

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

xxtea-5.3.3-cp39-cp39-macosx_10_9_x86_64.whl (13.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: xxtea-5.3.3.tar.gz
  • Upload date:
  • Size: 22.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3.tar.gz
Algorithm Hash digest
SHA256 30e3613247d536ad0c8199ee2c5ccdb3f663beeaecaab39ac5db776fab86c991
MD5 d1810db3323f29de0b437cffeaaa1de7
BLAKE2b-256 dfe55ef2eb9f481425383be3e44156b70fec7e78031a11db05283eb33c940005

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 69c487c94f72ec2111a560cfb3877dde2117d3f50c6356b1fd6a8a7bf4f997ed
MD5 e7b75b93a34438e293298c59e728017a
BLAKE2b-256 dae0487b87bf6f62b7a51693817bbcdec71794e205854e2d5baa30a480a7feae

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-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.3-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.3-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a734f475147ceb1730d503ac272aae9d5f8169435e591080456c9300c4025358
MD5 d3679c2188989e50f1a098a80efdd1bb
BLAKE2b-256 07f355d24f7929f4830d2794abf925c15781a8fb4f443721da48283722362938

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1390dafc6dc50ea45aa0dbde38a3c6cc227fa834e48791416f7a923babeb9c35
MD5 08bfcdb41430cc1bf2f72f4cd182b62e
BLAKE2b-256 0060e74ca5dc415c8297ff96193a6befe341f1bb8dfa736775cdb54e0b200548

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 bbe2431ace2ae7169f235684cd5bd284fd9b2084e3a9ba41a26766f9aaea2af8
MD5 dd1040218f9e435d873e4a2572e7b262
BLAKE2b-256 75e34c994c0e398d0ce204b11c3e1e0dade4be08999c36cf1605988811ec09f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 566c72e7e73d8018dfde5ad7549290c20782c7cd39c36e5e56a6386ae7794768
MD5 ca149874e65da6cfa98d04168cd44219
BLAKE2b-256 255f4f660a3414a8b07814f16a802071f4d846fe812848dfe076f3003eeeb8d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c653cae6ea8bd4e6310d1d316a02951151868a30ff339b3f4114e1d282d51a93
MD5 cb302a97f8747bb5e44f6fb38cb24989
BLAKE2b-256 ebebf57340f011db0f0548dc25b0541bd82a450ccfb463e4b2dba3c39616aad2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 749a3c614fe9517699cd670f1ab657d6510942f2fec05b7d2390a10b6b1beeef
MD5 dbe39b2860c2e3fd9e09794e3c91615a
BLAKE2b-256 1a502ab5e199fc0c94727895e5758b796b04e2144852140ca32c3f3b5c2323e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-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.3-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.3-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3457190e3eb1405c2f0545b8eff45e9fe2d2218d88782b9269b65162d8e733f8
MD5 c634119da74b1e116ebb6fb44e424f89
BLAKE2b-256 0a982bd1a9a5c36c7733380a30bbf49b73a710572e9057b1bd9923b84b9f61a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7a87d4d3cf093d6a499cc996af353287d51f262be0e923caa0954b921a1527d3
MD5 e1181930dee88f4d32fb9da4b40df19e
BLAKE2b-256 2570a685c16f11b03bf75f841faffbbd3ff1a169cf157e2f505c64fecad5f070

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4e0cbfaa4d142cb4dec04da73800ea0dadeab878a2559002e830d65ed1fe51ba
MD5 d655d6b91baafbd86e1f333d2908a280
BLAKE2b-256 3e025a9c6c1c289d99dd55ac6d1cdb47bcd5d30ab3b4ee822f4a08a1b6be1079

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7469b716f33d6e4a4dda024fb27254ce3c3298ff2e17f17d4fcac8a16ab20d88
MD5 e156edf4656f7cec6031987e747625f7
BLAKE2b-256 cd09f91c47b04241cabe360aa1ce9accef1545a5b75d729add6205de5e5f501c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bd528e03b3a26939487da71a18d03c9691f444b9344c40ebf1377186029eec55
MD5 d0bbfe9c4778627e1db1bd32b86a7592
BLAKE2b-256 4e5c77bcf19ef151f6a283fabb1785d30e6a995010d361b066f22dc95a10b61c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 37c647ac0add3323f14be299a5ea162ad3b6e4acd1ece2fca0e821e7fe12fb23
MD5 9c538e83f6e8921d62bfc0e54c23728d
BLAKE2b-256 f4251ffb53b69e88d1de4db63b21a0de455fe4b732692bf0f7c8c4437ce2c2b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-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.3-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.3-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d7c8def7f2f37ed1558bcff479ac6f80a4b734acd6848ddc398e9ca760326422
MD5 fc81c5f0ba99b56611d83e96cae84a7f
BLAKE2b-256 e9aa3c5d2233db40919776bfb3122150f40ebc002bf86e9361063e519077ea3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f604779dc06921baef07785850f08896f8a3dcdae867e158fbdab75c2df78d66
MD5 255240315a19404287b6619d69d85a16
BLAKE2b-256 d8273f4aa6e8c756402d5ff3edea4de429ecc6faeff41d2e7d0873ab73e9e637

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9b605dfb3f5a39f4f12729a3f66f1809dee2e063b6ce26661edae6790bcf16bc
MD5 ca5cd925e397882757fce447628ab38c
BLAKE2b-256 b73fd7ac7707b5fcf6b3775f7b560eef61e190af6aa6e365b4745f75fa6ebf9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47d5eddbc6e2e8419df72e711ca3c702eda082b96024ec56b4b338475e058341
MD5 9b968b295690569674424e9d8f80b327
BLAKE2b-256 9343656819d5cc067d9c0096e245f15351ef2df4e82aa7cb7ede7d34da3e24fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 713c48a1204803b5c38b760a550fabf068e39bcb6090e7cb015a524a37f3a117
MD5 3709e6a777a636699d25a71178543295
BLAKE2b-256 426a29d82e115ff30bddfaa0d2f02d83dee6b2cce8f6945a12338dbb541a9f9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 8ad982ffd94b4fb432df96217a4b55f94b5f4784ad1dbd31b316b82eb1064b12
MD5 7f6224c47e1fd33ee4d79174ad4d3c00
BLAKE2b-256 2ed7d94d206f8a7363ab6b798f5f8100fed8c22f171ab2cd37ec71e402e6f4f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 408b2f4743bab6b7cb1fa9c1b81931e72d8ee27bb5e6f5bacb23683b281f9879
MD5 8d8bd868157580ce93d6503f6a2d7988
BLAKE2b-256 9e59a912717db3e7dad6711b895f31ebd2faae8caf9ce679996271d4d0765758

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-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.3-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.3-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 916385da9cc59959f782b1e7fc8b62d6b8c2dcbc4e98d56dc3faf1c29c66f0be
MD5 2e3b78cb645672c6c890a295381723a0
BLAKE2b-256 f24b666868dd92f5bc23fdde60ee5370faa91c66d84ceb7ba42ee42452f2e3a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b060a5325eb7bf1dc4f2cfa8b76c292c87ca37a92211878cf40a6bab3d955717
MD5 130e036c3dc7ccb5118c6c669859d442
BLAKE2b-256 25a7e959f201ecca60df0174874a0b91bf3e6123474afb11ebc0430efddd2db8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9f2e1a7ed9955873550429be5cf2ddfd903234c01fb04f74f2d6613a936b4315
MD5 03e82aadea0207b91770ab8d95c576e1
BLAKE2b-256 9319973ae5807574f6019c19a1c71b2485f75da13664274dfd623ab7774167ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-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.3-cp315-cp315t-win_arm64.whl.

File metadata

  • Download URL: xxtea-5.3.3-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 15.0 kB
  • Tags: CPython 3.15t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 5ce827818d9b24573c0d5fdaf0cdc7a414dc1c782904c6560eee470735b1f41b
MD5 e5f9ece0de2422e75b7aa1cdb3646387
BLAKE2b-256 95f4d4b71803336487137ab09d468e8204c6f73a6a280ea007aef35826d32f2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315t-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.3-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: xxtea-5.3.3-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 16.3 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 a4b59210f80e1f8026597a3531412258a08cfd565bc8e75477ec1b1c7a029816
MD5 a09f623b1a64b86a0cf28a44b439466e
BLAKE2b-256 89269f9ae7bfa4a631c1a57e359f2be512d968a5abdf8689c130c7d07ba44871

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315t-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.3-cp315-cp315t-win32.whl.

File metadata

  • Download URL: xxtea-5.3.3-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 15.0 kB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 ff6d68531b3772657a4e0b5924ec220b98489e91bd09ba18d8397c83b3b35896
MD5 555c95937ec32f411a3b8961f93e41c9
BLAKE2b-256 d821ff6b3ea73c7a64e574fdd6d65baed4be1a1a25815e50aafcffaf0d69dd79

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315t-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.3-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 82e535c142fc6084acc31df0cd05bb567f09b2fa42e453304c1c072f0b9f9e39
MD5 8ee82c67285cb8a8b636028669b79099
BLAKE2b-256 45bb50158a31a580e85da45f36bdb7b364913bb56d8f26479387919a60c7b39a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315t-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.3-cp315-cp315t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4e52640754c4ef6cce6a272e3452ff2100c447b157e287dbce9cbcec65ad2e43
MD5 c227f10a5f70f36d196bfa4b9849cb83
BLAKE2b-256 aa3d616aff54b43e51e9f99d511d14a538d587a35f1006b1dbae0c2ae2bc50f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315t-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.3-cp315-cp315t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 333f774fc153c0c815d1c903e5dfe195104583fe435efe5e21253b50fd80aa10
MD5 487bddc35ca4b95d4b1e4b1d9b454d73
BLAKE2b-256 c086208beb8de8c7f2f3ee9896df8daf972bc6e5d3c00ee46b947c86ef747ed8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315t-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.3-cp315-cp315t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8a214fea4fac151d7fb2ba21e0357fd8adf1d4053a2cc6b7927d708ce200e68f
MD5 9e8b9489b3972b7c44e3ce472e11e0e7
BLAKE2b-256 d2620869e60f7fbf0b16510afcce6591de57e6d39a98abf0f685dc971f3c9248

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315t-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.3-cp315-cp315t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0952276ebe658b8ebc6a0e8f4bc4bb25cbc297be7ed53bcb7dab5808e0dbf567
MD5 bd22cfa64ea4fb3979025189e5f7ac20
BLAKE2b-256 0fea033a7ab5a6cd4ebb150880f7655e6dd8b87369df78ddfa8de07d768805d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315t-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.3-cp315-cp315t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bcabbfe5e7be0be107203f97fd4c77caad0580f252d592130343edc48095ab45
MD5 6ee8899644b50fe78548341784d02883
BLAKE2b-256 75ba2ddc11bebdc0cb3847e04f676ba0386630e264776e52aead73eba20ff033

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315t-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.3-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea5fe8838556f59e1e97ad383bfd2afbae22dd7d0d7a3921b2a39d3eaf7f1b0e
MD5 f8ca0a6b5d394353d828d31b59c7c11e
BLAKE2b-256 2bc30dd3b17be6fdaaf6ee29c61cb8a53281f334f9f7434249414d77b55b509d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315t-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.3-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 42eb282dd165833cf1c407b34a81b986d5f715a9ca689a0218d2e51212150137
MD5 6b5e7cd9f3f6a7b84c5c40e4cd424fc8
BLAKE2b-256 da09ce54dfef3c1f313a2bcae1b76c21841dbc42f43088341ba23304f82a87b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315t-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.3-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4abc7af04d0f2eeaa7af02a12463726c4f87074171f96e948a6026df951459dc
MD5 366a0de191a002c07c3ec496328012fe
BLAKE2b-256 581501ea292dd95ecf86d7f927076624d549b68bd795a8047116a73f6eaab92b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315t-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.3-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 ddc8a2714eeefad6075afc748e7cd101417e35a097380c44da4f161a35f3c0b6
MD5 872b954f3d846115f82c60e1de4c38f5
BLAKE2b-256 b4604d42730dd7f98af39927ad1939a4f498b86d5b38159e0d08e2981dade36b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315t-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.3-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e0e6f681534270662f36592cb327a6114091fe9ea5a32cc7f31d1663dda0da7a
MD5 7a367b43ca5b9209605810f855b45beb
BLAKE2b-256 5575a550a63a5dc506c2a75eb9487a0beb49111bff635c8c8f91881f2d4b8c03

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315t-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.3-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5bde4ca6733ec2ba27cc500adb3b24c8bc80bf0a9c183e963b9459c316659f85
MD5 d6785b77bd533d5f788c342151451189
BLAKE2b-256 60e1704b7940f0de44f8d08cfc986aa5aa55ebeeb9b4e523ea02419bcd700a6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315t-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.3-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cea7a84bc006de0383effde87bb107691fdf02c772906df57420144b0ba948bf
MD5 86f94acc319019901b18622735ce74c5
BLAKE2b-256 7b7537fd293e0376d900652a666ed32726249b9b4506d6f148183bd41b71f51d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315t-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.3-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e390d4772583a3225fa4cb61be066ad6e82e1cc3097351b1d381519e73f3533c
MD5 af1aa227ab05977963dcdf8122632970
BLAKE2b-256 451c5025bfebf88e1c350acdc163c410d9ec0d8d255f963812557df13c6a6658

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315t-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.3-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 907dc3ab0473657b7076d65e2cf5b0b31bb37b5f2f713ab39283198db800e412
MD5 b7067a043bd8af293a45162163d6ae97
BLAKE2b-256 bd03f6266688f76bcafd842ae295fb93cab48a77804150e6ff9057eb0198a29d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315t-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.3-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 10cad815f016f43c069587e8fc479db87624b7f32ad6cb0c99221b1f95a92abd
MD5 180ebe85f23516a266314d77dce54b64
BLAKE2b-256 948ca33e19b9dd2cfa326c277cc2edbb7366f37630c569a35b841f7cfad4e88e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315t-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.3-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: xxtea-5.3.3-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 14.6 kB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 efe8ca6636e1c915c4889747f3e4b985b54ed10c5b3a94c829883e0002165692
MD5 7dbb38131bad1140360da711953cc445
BLAKE2b-256 4b4caaabbc5f463426b92ca61a86f5533514ec35893fb1288131efb9c53a6fb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315-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.3-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: xxtea-5.3.3-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 15.8 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 00877ff3e4309ab5d1c4958b8e0e068ef52af56494946324320cf97e9c893a76
MD5 92408cfd6fba87c79b85089fa22b7bfe
BLAKE2b-256 aa0315cd9b6d17751e68b7e7c13f32fd215da4dd6e45db1e54012d36fd0d92e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315-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.3-cp315-cp315-win32.whl.

File metadata

  • Download URL: xxtea-5.3.3-cp315-cp315-win32.whl
  • Upload date:
  • Size: 14.6 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 5181dde9f112f3ae8d5106c087e1c02669addaa3a3878e2ca0c930622ef12cfa
MD5 b4fcb1082fc3a61b374c49f251553464
BLAKE2b-256 1530fffc94e993245668c72d0788d5317507b174f56bd8b82fccf0ba911e876a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315-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.3-cp315-cp315-pyemscripten_2026_5_wasm32.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315-pyemscripten_2026_5_wasm32.whl
Algorithm Hash digest
SHA256 0aa9ef23fd4dcd9b2d56de283954a9dc8d70ec2db967a59884646242b4ed448d
MD5 f28489c77ec7d21cae9cd7f5f2d6b4fa
BLAKE2b-256 ea9b611da32321bed87f82321ed9fe4876596a2ad4ed27af84095547c4b38ad9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315-pyemscripten_2026_5_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.3-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 138473b426a095ee015bd8d3894490b8ff32221e6a73de1cde1d28b9dd855f42
MD5 3552bb25e1678a7dc970a3027563fed7
BLAKE2b-256 b0fb170b5b6371a383daa132f94ded42c20f79a8864dd6db58ca6dd377ac845a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315-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.3-cp315-cp315-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5a89588a0294ca54252e73932ca6e2714a51cf650fd29d54f497b47bd52c5ad4
MD5 5b04946a6a5fec97ec5cda74861a5f7f
BLAKE2b-256 3f97303890d6838d24c86bcfadcad135d971daf2834dbf5d7114dfc7b8a4fcc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315-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.3-cp315-cp315-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2a8f66d832f88caf5d226ea45bbebc1ffa1ed775a058621729e7e109bf535cfc
MD5 f6b6e039d045b1e4eaca7491c4814031
BLAKE2b-256 9bc7db485c02b70d8794e9ada2699fb0f3fc770a612e7ddaf90610c022bcb514

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315-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.3-cp315-cp315-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0adf528ec3a73b129a170852bcf861d1cb7017cd67fb92f62968d9cc12cdcb51
MD5 068d140d0a3891ed1f148d7448cd88cf
BLAKE2b-256 d1c92208bc5f747effe322aa3d4ac04062b4d2ccc7ac69ad7c40a394628a8cb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315-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.3-cp315-cp315-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 de0b17b8dd532473ecb8953a0dfa9c6cc5cd4578e38ec56bac7b8239a788c7cd
MD5 d550f030c77d49910664c8c86a3d25c7
BLAKE2b-256 738b1d7fbe44a279b3defe538fc3d77fa06bd3699881ae88492e76b870ac66b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315-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.3-cp315-cp315-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a1a3dccb331443734ce70572bf4d398bd31f820cbdcea586abae1a5aaf47a014
MD5 ccd68774746bcd89da944f142fea6d09
BLAKE2b-256 5acd3f83656821f6b771a7615bd5573465ad2f5680ac94eed16a9fadc4778df0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315-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.3-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 854db61e464662fd3394b4ac9e3cf69fbad10ca9ae3aeacc48c62eeff8fc1e6e
MD5 443df44c9b6c568b3b9bbbd44f2daf8d
BLAKE2b-256 09234be5fddf32739b3800fa718ab0d3edd5c141f7dbcfe2a08ae631836e6601

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315-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.3-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 bb71ccf99f1ba0867d65930812b51165ed016a02fc90917e712b3a10f853e39a
MD5 28cf4998ab30998b161e20191a64987a
BLAKE2b-256 1e987121109b7eeaa581363d9bd651f5cb5e00435a8af9af7941f3c438883b78

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315-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.3-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 edda3d29f23543393cb873b8baa8356c0a83054d8502d2a245efc13c07d45717
MD5 621904daf323c5fd3bd6c77077cffd1a
BLAKE2b-256 81ee3726f1975d923ea5281536063c9ff3d24e16952659d346b262c0fbf4845a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315-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.3-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 84c0f15bb94025832b32c94845469a5c2814af95a260d64a8e2a326997ef81be
MD5 2965a86f9322bea66ce0ac4af3b25f4b
BLAKE2b-256 49753dfc07576391a9bcd2fdb8c5e633cec821038e437354b1d60cb1b8a91d98

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315-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.3-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 09ca02843664d708609868c029583ef81efa22476e2c70998474815388d6c259
MD5 e1c8d7bf1b5f07c1bc316a3f75309ae5
BLAKE2b-256 6c504e541aba24c33dce6e38e1c157ea7c8d35632b628de554b8d877f35fb9e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315-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.3-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 bfb324440189677d74a4aac157fcf678529a474fb7c64a8b3fe216033b86951e
MD5 2a8b6bba6653ffa4f864dbb80005779d
BLAKE2b-256 e7256fabbb7cc0c93ad033cb3b7d2ba2a0f5de05f2be6b09e96cc70d52f2be6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315-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.3-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b3cd51a33a5ff78baf48cafdd05078ecb54dcb878f2e39506acc044f28ce1902
MD5 27fed38490f05db991b927ae3db137d4
BLAKE2b-256 1b41df400e88fb40eba92f109f065d67bdb82841b42252313d36875856239dd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315-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.3-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e1e70290af4ef386fdb63121f4ad14ff5999f73db8c645d1409cbc43a9648532
MD5 3c38ff926b6c2896b5623e2258906faa
BLAKE2b-256 a4cd55af0cceba497c126ad0b71f01d2490479c426e07c234e1e1e5ba5bb5b3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315-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.3-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db44465881518bf0acd0d14b5fce095dc068885f90b4d533050da1086da703bc
MD5 eaac59d97f9d2e1c24abe25b09532a80
BLAKE2b-256 27b25f906af955f99334ecb144fd0807282d20cf5cbb4f499abd4a85b0f81e8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315-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.3-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4f272d5139e0565c55d6d241d2e1e2b952ce6065dbe78d59d5dc6784af7e254b
MD5 68ab085ff7f91695269f365bfb6adc5c
BLAKE2b-256 4a83f50b28fdec46274be21ed83fcee3a60e363e5fa44aa0325c519b4fc78eba

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315-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.3-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 42d0b6ba372ec749c51bb4e1ddb40ab50f01e8746aaa62c191459a5240b634fc
MD5 5a7f3fd6f106ffeffb22016f10307197
BLAKE2b-256 5239102bdfb3b76a502ad52ac254de07a8a17c78dd453e28945deddf8f21efbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315-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.3-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 1ce47f4ac413e7d644c0ac57a5b0bf8dc7981ff071601888eafb81236ae50dd7
MD5 0c0c3e35d10fe5a7fb64695d2a401a34
BLAKE2b-256 4910b01537a234381905a869cb50b985f8cff8277c6576e9857f91119cd03a43

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315-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.3-cp315-cp315-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 b4d79b9e106e524b1a76a37c3cc4d39f51d77e8070be0e026f66737fc360ccaa
MD5 60c47a3cfb91833adf864156cd504e29
BLAKE2b-256 0fd9722fcbb1bfcdfca5905a9a284f4f35a32dd06138ee58afd36b2d55ae6535

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315-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.3-cp315-cp315-android_24_x86_64.whl.

File metadata

  • Download URL: xxtea-5.3.3-cp315-cp315-android_24_x86_64.whl
  • Upload date:
  • Size: 14.3 kB
  • Tags: Android API level 24+ x86-64, CPython 3.15
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp315-cp315-android_24_x86_64.whl
Algorithm Hash digest
SHA256 00a52c42567d8725094b34ef20c65430bc48942f6f0fa4b74ec336f72d8430d8
MD5 33e351bbfbd24eca3d7ad8f2385325d8
BLAKE2b-256 a77e5fc5482d45ae8847de622e103726790ee4cbc6a55072dbcce76cfe46d20d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-cp315-cp315-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.3-cp315-cp315-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for xxtea-5.3.3-cp315-cp315-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 483a7dde162e87f8d3d56561a337439fba4ef602509c514f2c5d5b7b86a3e31d
MD5 a0a833b8cd8a03a7ca043b79c6a4ee9c
BLAKE2b-256 4da08c86635cdff59c02a645b63568e9201753bcf1289d6237b9b897530f914e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.3-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 15.0 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 7f9a7f9ea44946d9d71a9734233b13a33c11322d3eb1dd23861c1d4181a467c0
MD5 3aafa201e879e89740cebae52bf97fea
BLAKE2b-256 518003f7b0a1ad92e156bce89b71b7208543a27df4a7b02740148b7c3f7b5050

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.3.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 22d8ef423140212596a1e1ceda1ab8020e1e28ac76d5ca7ca705732459e8ed80
MD5 5f41224e6db311767e66807bf3dc33f2
BLAKE2b-256 f8d17805af05cb54480114070685673c4e27e264460622d3fa2d4bee965b0954

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.3-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 15.0 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 7bde6505431c3f2b295c9f5a8023d6152ce30ecbca66bcccf5dce8d045129eb1
MD5 8de9ada0c8c5a164a592b3b8ea9b0b2b
BLAKE2b-256 d36fba3199782259292e23ce31c375049457f38e2c4e693de9e0828d139b1f75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c4bc50fe9041103f5b4b13ab5da6abf1be42b4bb13966046a2e6989be96909da
MD5 ff3a3f1947312252db8439809b02a615
BLAKE2b-256 09dfc22c9ed17eea6591ebd97f399f08fb0009e039da66a6a8241cf38396a5fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 47ac27f7b5f1a55bdd58079138e7b14dbff09940073fd897b53b9d361a2991d5
MD5 9cb8934bf184bc741516a4dc9c100a4b
BLAKE2b-256 efc54dd82f8ad9a9eaffcb7fb12b9d87c026d7dd7235910716cfd4639778c2f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c55dd55e031704d5d0f40990a01bc18f08699832b37ce4314dbfe38a05f121cd
MD5 4bf71703f628f0f10a47080ecffe52ba
BLAKE2b-256 716cf62d2b8b6af9f5760ee6b0090b36fd8022e505e22ab7fbfd2bf02a141883

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 758a1b73fa53a4b27410e0ba6ae82630f239d012ffadac807912d140e9773dab
MD5 811dd71b3b00ab33cc6cf8dc92cec345
BLAKE2b-256 c9f6141c456b76c9e13687a366742644e0505cec82d859322a2c43ea145583b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b89d73dde077cb56096515f36aee1fad2144e5d03cc665cf315703bd3471a984
MD5 28c7c726ffe14a7d4dbd65c2350bca37
BLAKE2b-256 99a27d991b00ebeea1d9bac3b32eb5093c1a64911229d52b8a1f444fb39a009b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ab8c9b2d745738f005dbee69e04bd29837cd1a9fd5ca13c92971360077c8a8f3
MD5 979afb6f41c2184fc16aa8384f9d5796
BLAKE2b-256 fdb3ca89caafae3a2d6b288534c60572c4ce3b43b2f74203148358e522080c7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49f2e05290e4dee109bdbcc842e35412e3c293c2d5554ed789031098a01fc83f
MD5 757f622247805d1eca653907eb40e828
BLAKE2b-256 e9033586816096f1b8238e33f4893e4fd54acd0f60e99ade9d46afa0525111c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 337e35ae16872adc6e4d92a9983adfa2a3961498cd2b34a548e18751e902b3eb
MD5 4a43d6ea8228da021bbb1ca992f2b91b
BLAKE2b-256 995a9b5bc0c0fe229ee914bfb571e39822ef57384ac6cd607da84753bccff73a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-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.3-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.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e7f2efbafee72205b163c00967876257dfbdd964ae9379d8ab4ecd8a8b7447a
MD5 348cfd3090f764516ce38bca1324eea1
BLAKE2b-256 2732e2797e72c7ca21cd43a65cdedd4f2a151cb3a4bb1a77c33b1b20f5a9a571

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3845ca46949a69072880bad7d2f92020c8d8eefbad1ac334685c43fad99f6408
MD5 ac689ed98798d09377546b29dc826f9e
BLAKE2b-256 db11ee5e31902abe072c699a7d41189c37fb4f5966bab07c3510e519becf82dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b84a0f656adede10b1bc41638e3c5c16876c025c106f964c24333695154e8901
MD5 fde6720e78406a38cff4b7c7efb30fe4
BLAKE2b-256 38f239213bd91484e3d476ef50b3fc6f6bfc401c3045e3cacbbadab189c8e895

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b8b68e766610e296c1ef5684a5bf822fbb1bbfce63a9f63c413d9f7486290fbb
MD5 cea2caa0c02271163cdc0a1d51863a51
BLAKE2b-256 e2e090c6bd1000ae1e01b94b73247e72fbd7b196b40c0f01124aa86d3d35574a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ad77042c9884464ebb5c225f7149ae6f45cf1a599b441e1d74f63379824131d
MD5 f55ffe8e0fa9ad28ef7c57cab03f116e
BLAKE2b-256 04efefb6d1d1148f34b29945a3a7bbbf513ddb50dfd7a85afca0c8284ecf9e55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4f220c66ba6858a92e4a94d71fe9ed824b2c333e4860868d9d6fca3758822e7b
MD5 ea0b8248ea37f6fec2cbf0c2ec3a587d
BLAKE2b-256 7d55519770e65ee48f25ee455307ab83a4c92b5a23e609655cff11b4815bfe3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1a7feace0d92597fd4b8708591eea4daf2fd3ddefb2b21802a3aa69cd7116b8
MD5 ed6cf28fd35bc83e5bc305b4ab2296ce
BLAKE2b-256 28dceb2ab119c3079235c976a1ba7fd0ba717266ff12a20f35d0b1bc8cdc46e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3b701250100ad1a6cf8fe8d78531ffd45ef1fd3965a2611f2d0326447992bab7
MD5 49f0b2c2cd7c781db0866afc0b4b53c6
BLAKE2b-256 29ce5c05fb4b0240246c75bacebb7ae88b26e053831a8cf6cb50b8414325d3b9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 14.6 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 7edde99e9c4c25d169d29fa554b0c6dcde50f3772ddb49310a508130c4799629
MD5 765d09cb4585dbafb92946e8561e31c8
BLAKE2b-256 0ce1d4336fa06ee57623ddb3e14ac85e6159d2e3f95d531b4495944e512744fb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 15.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ba485a70277fc6acf58090e1381285b8298baceb4b801e07d2dbb2c81e212669
MD5 1119e8d1a7909d204b7aa6101df1bf7f
BLAKE2b-256 ff7c6b2cb343548202b188fe8b7f3b9575ccebdaaf2bd6d283f9d0643aef7baf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 14.6 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 cb4ffa8a33da20bf01b0f9a655b0a6a4e2769fb5368b79a51d9170b044eae04a
MD5 c70465c78192207cecce0e26e93f1d78
BLAKE2b-256 f77037e005d791cbae04c2777448dbe6b34af3e27a52bb31f0c30d8e2dff297b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 bf198d9ed7c414b08fed01e85aa74b20df86870f54b47209a3bbf2db40e4ed1e
MD5 265031745d12d3be0e5c9db7e6f2b19f
BLAKE2b-256 1bef0c40ec6809c5f7ce063134eddcee9748e07293f7125ab41b2c5a597ad87f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f95e13182c9837ff3ddcf279ffba760aeef430d57d3967cbfb4f0b15616a2aee
MD5 b0970f1ccedcc5f2659e1294cedfd3ef
BLAKE2b-256 ddb26712ae3731c8468e2274fe08a9b5c461d46b9b48565961b5d1c8844a05b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ac8783aa71bc72c8010b1c0e7fc453b1144c721aca78cf843748a0a2063b0d67
MD5 4c23fe83f94faf312a5f9ced709de981
BLAKE2b-256 7a553de6dd70a5ba56474bcd9f64762cbb4d8169b7982744ff14b4b267280486

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a711867c18d6bd249e350231265035b4304fbec0e9ac6cac121e07353df5b6ff
MD5 bd6503070bd6a9bed9cb79aa12af4e87
BLAKE2b-256 57ceebfb76045e8f52a03272705121af165437fe8f37548eb7e61b930d57d75e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 940a88283ca303efe127b18b4bbecd2992f25ad8e6657c9aa5021c725d31f191
MD5 db1ebb2c55771dc7219367192e015ce6
BLAKE2b-256 9bbe1056b40a1ffdd53754e5e850f8fffcfca865f5b24dfb06067f87d31126be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 324afe41209437387b833e7650c652e5be23d524532d3b9d01c65203575460d2
MD5 5717c252eb9b02825dbc0d72f0f29cf1
BLAKE2b-256 a0f1a16475d42d5ed78dbaa3966028a734ea6fa8b8db5ddd42c0e30221b87245

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a052aaadb79451b5607777c4449fb082d3e4ac622804629a4b0dcd4bcfee8815
MD5 b4adc1c3a6a5aa8881a830e37d67a93f
BLAKE2b-256 89464fd25ebd1b45b39d10a718ac268cce87c20c460f5f82a3d8d14857514463

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c4025ec8958d8ed04b7ed73961666875e48ce2035032e0984526250b13686a7
MD5 e424ec868b476239479eac842c12c81d
BLAKE2b-256 e08f3961891b79274a75efc15dcffdc89fd8345e97ec32922142adaa99b61286

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 da5960623ed6a2ce1f2fb4724f9fae89bbcadc0ab52eb110d4d908b90c6e2369
MD5 f42109ebc5d7f1d3e598c77489a537e6
BLAKE2b-256 9f37532be575761c50ff44a8dec63fb9985254f3065f1af3e08f780558e50f80

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-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.3-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.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 03ae41802c9e7e7bffa15bf6bf9afad3a76a2733cdce2d2b7293610ddb018734
MD5 68cfb1eb5fe5ad9358e56810085881ee
BLAKE2b-256 1d13279e415ecc5ae1693e8909cffce4a36559962d875b7e1d940eba19324f3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5639da3245468f9b87df099cd688d0663ee59e1cd609d192a47a7677370298d0
MD5 900ea6e6f300fea155c57b374307365a
BLAKE2b-256 809e55550ba0630fadf6195fc944bb37e88814346e0ac5b1557f4756e87cf43b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 efdbf936bdcb3227a365da7cbcfc628850d19783c9737dcb34654e79fc517ae9
MD5 faafab5cc8860b0f4602fd5af3902027
BLAKE2b-256 1283a9cb5d018a3884747f8b9511dc9c991f4d81176e2dba22989047560316db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6d3c36f97147ba28c349de89bbfab5d35e2053581814cc5326308565e4cf2e6d
MD5 3157141374a91b0803e8e9c93c6959e0
BLAKE2b-256 1bfce6df11d6e85099d629918989b3885ee83cb895f0cca5efc3e1d043600da0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6adf1cd2b2a0365770400d05e91ec983838b8ca5f4ebcfb50618ea271ee9d57c
MD5 11836b6cff84b1d7d50327daee76ef08
BLAKE2b-256 cf1c46e23c29779fed2679e6c36e4c57803087906f8a2df23c69a197b3983a3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 cfc57527e618daaca70724a3badbfa77d2a9bb928c730625275e1f95e6983482
MD5 2ca3da807f22c36fc617f719907c1a3e
BLAKE2b-256 24226a01d7c324bb9fc231b0feb93203bdd817c588d10ef7c6e6026c8d6d8f4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e310d26edce6828c558a81d733371f79da3e4b77313f7da6ff178081b4ae99a
MD5 263d6a110dc249f1f4055160f7d18c1d
BLAKE2b-256 f8083dfdd80d4d966d384b2902a07f74e29d48ad697adf8e9a2f389e1d8c18b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ec9b87a29e8fdab1faecb9296ad12aede98c9eee466b0fff54b3c8b4c3f0327c
MD5 9d717500d42a611c34c69c271d524f53
BLAKE2b-256 fff4c86e7344f294b44de325138b09632eea9358e6c1fff35153ae9310861512

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 39ae14fa6a27ac2823664c78fba26d33bd2ed20198671583f2b8738c1d02db1e
MD5 27b77dc718de9fb1807d4566e84a31e4
BLAKE2b-256 4e024cf1444f16fe88f3156584e4141996b897dce0ca1c4fe7b2f12dab008b2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 fc6c4650f17f757d875953b0a345ed6d9303a2906b5dd79f3f5390f3aeeadca2
MD5 26ed2e98b70fa98cf6934e1d455cc89c
BLAKE2b-256 af0a55370268d965faa47e984a06a5604213fb274e333b5942114ffb1cd1799b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 035fa1891354627d002ae92dcde0fb6baedc8e9d78a7ab80bf05bf020cc8f656
MD5 6fceba2163f1c782455e4d421d34fb98
BLAKE2b-256 be16392774937942c29fc4a25a32bb3fa63add9340533a61079eb03835c3ebc5

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.3.3-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 a3a8a656c4a955798dd1a0b6b6e863fecf7fdcd474e533eeb6467a853659d50e
MD5 19367ca476dc565ab59aa4b2e7fab5c3
BLAKE2b-256 21bb9d8cd32219387868747fbb9a4562bbf9a3351e856d2458efabdac6218a08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 6216d1e6f3e93da1ff3045e1b292cd676f8df15d611da6d297b6c86dc2041e57
MD5 3764bf661d6dce3096a2074070e8ad93
BLAKE2b-256 a31cb16ca6c95910f365cc74a4983451f83d7258a2187aa7e1312863aa0a26e5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.3-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/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ee4ce600290a511ac702cd7b171918549244d3c2a4d8a535cb046c4648f5ab45
MD5 82d0248299d9951654194c470f52d18c
BLAKE2b-256 169b40eaae1b3cf641b164a587ef0743c96cc7b1d286d52701bede8d37196891

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.3-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/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ee9ffa817aea9669ba8570cb981cdc77a8c2ffb1d5fdedbfb2c48303790fc885
MD5 15084ce72f1f68445616f87756a8c19c
BLAKE2b-256 ba8e5d5f8e7a9bd17dca68b69986eab5d3e9c54b499b89756fe90de208048d18

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 14.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 269c00b982a58731c3e04168407dcd5ff68c8e672e500e6fa3d1c09f2a4449ca
MD5 ead1544b79f6d67737e999749f6008ce
BLAKE2b-256 6516eb322d6d91c8a089dc6b54c1de8ccef1f718be7fb74b3ef16c107f33e2d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 05ed735b2c8aca8e33d4533b467ec348f4341c56e96cb91b2e096dddb007a46b
MD5 0216d0058af8f67bf2aea3eb5239f76b
BLAKE2b-256 3f143d16629b90484d0b1b29726f86df101f1fb0aa6409069fe80c8f9b637fb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 020b121eb47e1e8c4a80ca8de427856774cbdb7ec7f249e6f93437fc7bd4d8b7
MD5 0a9b5b4d31bdbb29e3f074b3e509e6ff
BLAKE2b-256 4f485e75e6d91cc04eab86b1efc500653570c0dd3adf280d607265129b429173

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 59ee29185bc0b59a276c58f806fac3db2c998b93386a1c4da280ecdcefe70a66
MD5 a8ce9504d6e652f52dd414813c6450f7
BLAKE2b-256 0893af54a60c8a9a163841c8b1744d08b8cad5527c7ad39880ed087f1d3eb3c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 fce91002f1b5ca1adc52a38afd540ddf327320df2d74d2054c62b6e59d3ed82d
MD5 14fb9aec0719354873fb8cd8c61fad52
BLAKE2b-256 1da022d98a5ab753f53356678ecb5ffa97ade7527cd629c23395f5fdd64abbe4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 cf2a7e4ab16fd2a434211473fab89791422fbd11e76372b81e4831562b2998a7
MD5 921f573dbf3fa5e673ca5f227dbaa0b7
BLAKE2b-256 da1ce5b352b16905e375bd509ea5e27a97c5a4d4108f069ca24b71a2f904f286

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 137ad15e6804346c3d4a5ce9937cb33f55f6acbca6721ba740f5c0ff146a8743
MD5 d63deaa4a6551f25a3cd0ebb9b8f962c
BLAKE2b-256 2b6befc6cb8dafb9a1ce0812f3f8b15f0c7585160022b7cfd0b1d6ed435d2fc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 af8ffe5b18f8a16a49989571f0c1639617ea5b9d12b44b7cc644a13670913f54
MD5 50270492bd934c7ed548cd3aa8a03344
BLAKE2b-256 7035551825d197fb3420aadc7e60bbc9cef976216c9c3b3a685d4d95df7a118e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b50870737f736b27c42b3316dfacb99806a5c7fbb37466a83099d1ae21e6f39b
MD5 bb7d7c9c1a95be4afe74ff2ab10dd6a8
BLAKE2b-256 defb1456eeb09a0de5630d6c10f48e3a5be95694cf8a718755a328bd1caef98d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 cabbe3f8e8b2a2f82ca1637aa669e3facabc5a157919b3a1a36b771a0e601b87
MD5 6b746e198940f1c856583a661cff168e
BLAKE2b-256 a58a2fcc44e35ac07082bf9c267231a8d62659124940de96ef14fd5fb776dc51

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-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.3-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.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d1ad64b10a4c3ad2262b78bcd962d3e018ac15f1bc2848b110d8440266988817
MD5 e01bc8c73ef1d6377e411e4d54812e7d
BLAKE2b-256 143a37ad946bf8f72358ff59fc12d3f9ba78ca7c7f834bdb7868638575af8ffa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 58e40322e50e671ebdc5830bec28d28c5b3802f687d7a392ad7b57ef45e606b8
MD5 435b6bad6e67035522a3a6e099d3be8d
BLAKE2b-256 985701d1a17cc533671ddcbc81b7d834c444ddc2d51351d595ac9f9671b1254f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6c34afad1d7d5ff39ba284442d20d904596b7a6c45e6bc35da4a99b3294f8b3e
MD5 8cf07e04e82eaf1d3d20872d81c2397f
BLAKE2b-256 9465b21d42a41544417602335e70a228c51b5880f3031199798b872d3a7b4954

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 fefbd40bb743806653d21f7f39caa1b0be0c535b369518c6e4ed247222edd89f
MD5 28ca8c304a5b39ddcda50c4a3a5dd49c
BLAKE2b-256 0eebb3fa527c29072e270c9a4e22cca897408a8b364a83d62c217568158e68a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a53b7e33c72e6b8136c383cf45902025ba98b104d7b3e17277673f64be64ab2c
MD5 4bad25177520eec92dde60f955a24dc5
BLAKE2b-256 4399ae044b4881ff94fa09ac739fde2c1638aefa3c444d5ef0c4f5b7bed12148

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ead2844f4b8ecb7a24afa18d526f8354994a068658adf009cfc79a7625e946ff
MD5 5379a58b16a4455cc1e23d49f2f1bc2a
BLAKE2b-256 5565a7d196ff1976a7c09d7589d1a16bc96d388a5fabc9b0583a192b427c83ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 646d54bbf46e22af5996dcfedc92f9b6b6a810b5a24280340c65df5e23b8005c
MD5 66581587419a72fad12353da90ef7109
BLAKE2b-256 f1eaacc5883d5b1391b282f31b393c471972dbf4a4ba1cc678943e6128866a3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 28443ec8c7030e43d22bc9258d5442fa21eae48d0d16d17d4911365351fc4386
MD5 c86f1d636298d61a8fc1dcc15c091a3f
BLAKE2b-256 afd1cd8261b0d75551a4885b8387809f4637a985c4f67cf361695a6378153ac9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 a21d2a7a466fbea9fa0d8a221b39a681084f533230fa2e00dd514d491ef141b7
MD5 9411ab5311bd50cdb3bfb3f0aec72aef
BLAKE2b-256 820a179af21c5b1373218bbe4270de11288de22dd55c8d5cf0f784b56f1fc8ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 ce88d33115bcb7d53814f370289e7cd23cc24cac377c270e8eb5aaaeb4c862c9
MD5 9d57b4f1736d4659643d8d9266a1afc3
BLAKE2b-256 5eb21a56299b7a74f20a991524027bf837ca93e4f1cddce262549aaed01a196f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 90f865815e6f1733e87e5bb4996eb01f1aec937d1ca74088b4f7a31dd3dd1740
MD5 e507036ca985fdd5cf62f87ca374bcbf
BLAKE2b-256 423b8c85e10623098b070af4beca32a79545ab9d0d830b964331d710b3bea5f4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.3.3-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 1f489d068b0c2f573214babc9e3cc3bb680c901d6cb044909207505193c9cec5
MD5 2153d5503e2305ec817c626b6526cd9a
BLAKE2b-256 37f67144f52aa4a551584a9bb621afa008d52c24eef6cada617fca432b3e8990

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 53353e833c0bdd0eacffa292900dc2edf772ea51a00570f0c62e9411e10c22f7
MD5 be0edc1649b42e968ab75989aa52faa4
BLAKE2b-256 639128344ebebbbe47242a79adb3105fdbc35d52308c8bd81daa11fde3d1af71

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.3-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/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b9cedccc82a131414b73f2823e7c294ca2bc9c8a377729316803800ef93d678c
MD5 24ae55cad99a4b00d374dca32d638b90
BLAKE2b-256 8e8d280a1b8179b2e6e10dc507a74a3b6913de76a5a691b6dd9bc25f79708b91

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.3-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/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f1a844ba9b5977cd683e39b66966d65f98a8b46a9b0ac9c76bfa98651e2988ce
MD5 a6de275a2b5c91d44c0bfe5fa8f403a8
BLAKE2b-256 97b14560f2ed5798f943202e022543ccef16d990e5d682238965a28e7e2e8e75

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 14.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 862eff7fda950889270a8a962890a9384de3ac186bf7566b6b8c22c00aae4e9c
MD5 ffdc9a4ea669959f70e7575b3d86406e
BLAKE2b-256 61d385ebed8a25a6c41eeb5124ec9aeefd9ff9669dcda4131a5dac594a40f220

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp312-cp312-pyemscripten_2024_0_wasm32.whl
Algorithm Hash digest
SHA256 78ba73cb958cafd2c00512f91fca8e0544e78975fc2cf6a84bd6e715289a0cda
MD5 8c828a7525d5cb667c968a609c4c20c1
BLAKE2b-256 c97e5275b47a1eacba13f9235f2ca142033f5cec600acbbae7a707a80abc37bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a55cb3706b7df5bc14adcccba5b3b3509f37312637cb21bbbf2ef1e5312155c
MD5 f0b7d27f90f6825a43043a5c7c8e9aa3
BLAKE2b-256 6c716afa650058d3a289449025839df59214dd29b1b3692ac76379a20f4b7d6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 21c78d67e9fa9cb0c6dc3b739cf9804993c7392abb7d08c57441632b7752d0d5
MD5 69fa57246aa9b7dc6ad2070d8a1d4ec4
BLAKE2b-256 fc731bd044f1dd060a17c27dfdc23c524a8e36a99e90e50380b872c706dde6aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b7afa246975e23100dbb306ae2f9a2bf1b058ad861172534b338bf4d291a2524
MD5 98ef36b343b4987ebe048b0ebd8ae8a0
BLAKE2b-256 0449ec2413577ca5de5e38149d428bb0713506754e0e5b8b12b660c8231b6809

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3925236c999babcfa14819f08945c1cac5ac54fce8d588b11e2dd1dca8af754e
MD5 7221f60447a50739cd3e1608ff34ce9d
BLAKE2b-256 aa1ed02a27133409c3129c9eb6764d772523d5d51c710615f8f84733aeb0dbf4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ba114afb2ee8029c54850af4de53fafd410a2e88dadceed99889623253fe445d
MD5 00358ce2b9a4480926d53a0e80da8634
BLAKE2b-256 c6bbcc54847674e6f572572ed3c6bc7ed32a115036f5715dd87ef27f1d6e2989

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4d0c69a8f1ad897b1811c74dbc9299409112dac1c341208377f76657fafff146
MD5 7ada842c86f4b085e2cb9d6a73b86669
BLAKE2b-256 f0483325c066daa9cf4d33cccfb694ed54df70141cf698afbf25cf177b9d4784

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 962a4a656cafe3345dcb9af3372f258a9955908af8e5e87ca53cff9529dd9222
MD5 e954631067d6f04739364922295bec54
BLAKE2b-256 b64e3ff9a2f54f52b417c571c5a44e2f7feb2f4d3a293e4e386956e928b8da6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2bf51750df13f57fba8663345c061867892131a6d6ee7e8855721fbbc9b05b6f
MD5 325fae730f7c547354a8cbeb9e9ab302
BLAKE2b-256 88041b35e01adc72525a8661f93610d2066efa0f9a70574655cd90ac33d84033

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-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.3-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.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a854d694f2c58698431edb1a0e39c970e50eb5164043eaaa04958fa45e6aa75a
MD5 339360bdbac090d340cad82bf74abb17
BLAKE2b-256 a3448250bb4b26ada0502c2c5d3fdfc1147654d6bda4a7deced1c073a69fc95e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 afebe1dd4569cfba92e69016ca4535d641b2c38399f2deacc7f5c036c1ff1504
MD5 71b6b46eaf9a712f37291a4b83f138da
BLAKE2b-256 194d5ab67489d1df29768b8f716e929898c1c05fe5495c7808437aa300bf6be1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e26e1f86b8fcf22fdd1680e0ffb7b143f385d0c3d5d72f761ac6feb43919c2d0
MD5 0a95c0ceeb0ff1498eb4bea25e806d52
BLAKE2b-256 01e04af8745772ec6d1d037cd411681557684ef347d6f07ed8d6de81c85d4fb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 54ba7fc79e9207c16aec4ef643498c92171a8bdf090ca00a82f01da4a0efb00a
MD5 bddbc069ed1606284156b3167bfd3945
BLAKE2b-256 64cd2905aa68e92921598c6fb82657f3c8fc73d778e3a6c6dde466a411ac172c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e8861b868588ad36cd30e45fad5deef5ea2d0cf1fb5abf8e9683c9ed313aa6e4
MD5 e5c32540db9f2ea0b32ceb98abdccf30
BLAKE2b-256 ed025320a286052345a47377a30a52d0b9e58c5e68ea609b0e74cf427f82b168

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 1b97016ff224a8e89d92777c8ee63d590b8ae1092b465801868151c6ba93c7d1
MD5 a9caafd5836f4601b800d79372c5bea6
BLAKE2b-256 7ebd29230d6944604f968de7483b354bf2d5ff2d6de66b8eea6bb9d957255be7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db3d5fdf237fac4fbf5d264fd4d8cb20266a0153f3d6ccb84cc81e7c4df347a1
MD5 5dff73216da1681125babb75a54084c5
BLAKE2b-256 c9e7ea1ea61637274d8559d61a04e980a681a3fa4e6ad6dbc30b2fda2bdc084b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d2b9a9a59fb92a9ce0f9ec9097a385f3f1c7b7dc187cf065dac3ebe4425901bb
MD5 d22a0adb640669d07f6da8006b3af8cc
BLAKE2b-256 65b12f443e02c8b341af18586f0ba577fb39211f74c8c49fc49428dca320eb10

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.3-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/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 07c66165b476ef6ee1cfbd312d9b68489257e5b26ed713fad466ee07c26c9605
MD5 34480143484e03e738ed261a335334f7
BLAKE2b-256 ac3ca961bdf855b02a9be3ca9b9809ac73926f42223f31506e1d8d403a3974ad

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 15.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7804241e66b6470df0003e63938c62b5db09c12a5a282fe50ddfda340c8207d1
MD5 9a9d676e44ba53c5d411b4883e573df5
BLAKE2b-256 d4e323dbb7addb5d9642bb2e4c2d9b7650bf3382f231c172fb3c4a8e874777cf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 14.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0e89d9a7a837213427484132bf98a1ccdaf28f40050bcaa6bbf11c1e1e8d6d1a
MD5 f78efb2b4003f2053ac2f19e02cfc99a
BLAKE2b-256 be44a1fca244f7968826ebe5f4d74261ea41004e41faeae977974419fcf7e287

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03765f260b5b61d1c8ec95bb9d99daab441a18db2c65fd0524f840287de110e3
MD5 7b7d71a8678dd2a471d1a50e73b8ed56
BLAKE2b-256 60ffc3c6660f8f201f0faa2eb49bb00be0792f3d8b84ba3f0e82307846091daf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f06b928136b67a02c0a1703d27abb807082320ada6adeb96e3257fb347c7be2a
MD5 7dd931737b5ae35fad5a01919cfcb9a0
BLAKE2b-256 a2959de8787b559ec7359b6f3b4f5f668394e97908e3ea3836ef120cc29145c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 00423d4fc373e1cf0b0a429b5d75915445ede8492447e215d8a1ed0179ce5eeb
MD5 bf84bde235ed3d86690220fb00496958
BLAKE2b-256 4bc0cbf6a4a5b579cdc94041791820a2febc24ccf456b63b078fdf043fdd8aef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f2c43565e41f894ed8dd8cceec29386075de3cc0b108325493249bc8ae658418
MD5 aebde19ac4c5e868146d915ca571d0d3
BLAKE2b-256 5792e671748ccde8cf56f70708c963a8b4fb4d1f334d069d640333f9d3028f3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3a5b5e0a776c19f17b9e9d80ead37ef3dd46461f44a8212446705ef5e16d6be0
MD5 fe33b09e4c383b9e563effe3aec8b4bd
BLAKE2b-256 d505235c891cb5ac040ab2650188e707a3f8fd37fb8e165a91da55193ae36164

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2d7412b4bc232f69a4bd8747db83d6368a5024858c9bf14fbf557f3a320a9b7a
MD5 c0ec3b5a58aa0e3e66322822facae003
BLAKE2b-256 4cf00edd4c7ebd763ca84b9acf6c25c52805a1ffb98dd4d77b0017844cb6a9ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1ed249d76cd289a5be5e48a5306d468a9cb4765a17c3b7435c7c3cc4dec28b0a
MD5 2355e48bc2b4bcdd1485e4907913ea62
BLAKE2b-256 139bf7f8082a7b287e5a6c26f801da1fc0b96356a92d9e89e19e1fe32c18a317

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3c6c0c38c60b2d4363fc27674360888b9a930b81bdc567a12734a0d95b0864c9
MD5 7687b88ae3b2429555c2c4ed9fa5c116
BLAKE2b-256 e63e0d05eda83ee292e14c2ea8253f4c77884d8bb2af1322ffb94724bb5b12c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-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.3-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.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4343af1f762157721febe0808513a2d28121d892f38245785f5f9655b9f50a05
MD5 7cd7a43eae65631e16b2cb4ffe8493dd
BLAKE2b-256 0c33da93e7a7e8d5a871086276e77152170aee93b50e52f40db9b1bb57ed8837

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c3a80f83bed7dd91fd7cd627de0141bf2b7636e955774000270ef67f90bd84ca
MD5 23a193dc3c1c97a5dc8d735f760d7c0a
BLAKE2b-256 b36f84f595f56253544caa36d6231f97c65b1c65da007b82a702eba2b995e720

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c71025f3664f171305ecdd9c0813255c0343fd8a63d12e2f26fd262bbb7c45d4
MD5 3e1dab1b67acde7e3ef7b424028047a6
BLAKE2b-256 3850b59de6f74d4b8389fdf491eb931a2a517f36cb35c9e5f09a32a6de3bb4e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d4b393360ec11f1824182da042b3bbf91c3d78755c5bc9508d7a1b0dba4b2138
MD5 9d124305c44dac985ae8e3c3717e51aa
BLAKE2b-256 2809f1d8882922fc5b1f7afd04d4e0e2094ea7c8935592ef31a35c0fd995998e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 725f0d95c29e8141745e4ce427e17416d82c245d5e074c261a0e1d9157079ab3
MD5 de5877c611f49cbc50fee9bcd0165451
BLAKE2b-256 fd8a2232ef33a8bd5ce9db147773d69686f124d952514262bf0e231992871399

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 2ac1b8f1f8bfc6a5f01670eba25a7b3e26d4540065be24fb510f91ee57728037
MD5 59b8e5814eb4adb1182db8e1802c916e
BLAKE2b-256 3b567f0ae9780234e2a5f4df73b6135d851b11cf45e2cdf6c633a71ec2a52894

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d30427190a3d4f3ed97353afe2166299172c626c6075edf08e53ecbd1e7589e3
MD5 60ce7a902c6e19993688bb2908b26d02
BLAKE2b-256 a137e1b2849744ac67c902649fc6c7bfeea05d529b8d39d8ca23acac00b83b3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 df9b427c1a5839aa6189bbed7867fda68d90f69f969b699c65ea0bfaccea7cbe
MD5 271136a905443776f599f1b3b31f8fd1
BLAKE2b-256 37dcf97a29268917621ca231d493cbcc9b1446a787b383a6e7b39c7277e5a41e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.3-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/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 74430002e0b62719ce5e77123f3f4f627e381b27a7a62791daab9b92634ead45
MD5 65db6eb1651d669e5d13266a85601afc
BLAKE2b-256 46acadef9b19211aa65b59da9df6bc4fd111d6f394fe9faf884785a7ab33f4db

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 15.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7f98b4d698b6dd0a7c95d29836901a4ecb9a4df4dd3592b9ba405c0e20cc9b25
MD5 7d37e7e20e0b985442e4e6d91f64fda6
BLAKE2b-256 369e27de301fb206f980d5f94df58ac2e4632c8b4abee6956b0fef01537ba572

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 14.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 78c8a14842826d3909a752d655cf423bcbc89cbb6ae1d35844e7897bb96f2740
MD5 8a958c58a360c1a40afdf170443bacc5
BLAKE2b-256 4b3c87b399756a53012a9d8a5065e9659f7d4b83b8392a9930081c3f7d79bcd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dea7527726aca87c421b0c871f2a5c19ae08f2ed29103e06905a519684136c9a
MD5 733236f19b037dee26662777180ab4e8
BLAKE2b-256 b142e0049b41734b7e2184384ecb748ba63fd24af4214dc6184725b49a2aa868

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 cfb82ac4d636a5506843b7f443ad31bdc9fa181b9a74ec8fc41c24f2a78da330
MD5 311d74985d454afbcd6a95403b636a74
BLAKE2b-256 8bf8ac8830858c082f5ffcea7dfffc8a1bb79969b84e7a6d89b457f406aae04d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f5f9f9e5fbe209964cd58702fff67083ca922ec9d1b050f9d26aa50fecb0c72e
MD5 c01b67fe9ea769e4f87cbe538b21202b
BLAKE2b-256 6ee2ada68137543463e7b2115066129a73bc0e0cfb13bda3edce8ca51dccc631

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 62e062db4bef0b716d4662ad067987aa4e69b1cb2bcfc3a6055e2324d7f85634
MD5 d5ffed05083ae698141c882621b7e72e
BLAKE2b-256 6c883251d4731d1eb948c4b01e354abe98c008da1280aacf0690667311887b9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 948665f7db465e71a1083e13802b34a723fb71aff7c01b0f25762b148b56832c
MD5 0f7efc52d83cb873d1a11b72c6ea6d9a
BLAKE2b-256 fb7f258dc8682104ec4cb41ddcd12c1843caac00ae0eca1710f39b82de58fa35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 332d927b95fc269d76b3dbb5d035be3f39d299a2ee74ca061826a980db979937
MD5 6d55963b7336c21e778f31e36b012dcf
BLAKE2b-256 01d39d78949a6a2ecc4480bdba05fe45f23815053c62416b088e0254e4725528

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66b382b4b92072a3983077448f69bc6aa22c9ab8f56aabaa3664d1e6d8b172f3
MD5 db786f8595f2d2fc76af94409fe8809d
BLAKE2b-256 82d6c03bd2a335b2560f6a7abe6dd406d8f2deb54dbcf298d09a835a53108bc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a88edfcc56418069477a5cdbec7cff6fe580f8c892b2301cb9739c31f403faed
MD5 6bed2e3014e3586280362bb28c0615ca
BLAKE2b-256 2862ded726459e3f82fce455a601a72cbfcd702b07f96f0ea5e3424d07eee669

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-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.3-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.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b4c5483154b448288a82780b84a5f9cfa3ad459f97f99fe1e874cabd73d2328d
MD5 e6edb8f1e01cf0ea6c775bc07cb8850e
BLAKE2b-256 6493c1cd5a69b7c05369c0b928965386255482973acba70b5f3ea6c4597d1869

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 26f82ec5bc42545be27aea5f6ebf222fc728a3afdff36551c6f8ab36a634e496
MD5 c323c162117fefbbe1d5ba3b20a5336d
BLAKE2b-256 db189c50560ebeab20a14d638866854a1b37674f7c1e01725751eb2ccbaed40f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 01fe55046469e4480d71f206a896b52c8522a17ca80cb44201c9fc0724392475
MD5 9c95c4f029422536f690445af00d0edc
BLAKE2b-256 4cfc71d9cc30287be29358a858860f92f284fc9ddf27513b5a68f4e323cdd0ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 bdb464799bdad6e7407fccf45de66365c4db57697d107fc52b876027907e8684
MD5 87362cf5b0c00518b558b4018770128e
BLAKE2b-256 63e7211f8d14be75231089a2961c7ede66ff55d9c0504f15f0401ed8953075b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b29cc32d2c90fd4d17dd6bcd0990c66a89c0da4f58a6df7e425ca32a40247865
MD5 9a10698a13dc38bdaec865f4d840a675
BLAKE2b-256 77acfe187efbff75a2d99797cde9ad1a8e5756b48af9120b0ea2a606fc950887

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5d2c7fe029d07b939667b9b3f8f16df3854490b845b7d70c142ab784971a1911
MD5 a8757de42e6a277769c6536600e6e889
BLAKE2b-256 e57dd1aa141c1debce252d09a9daac0d9407c43c28f84840a781a71608140b39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b90ef4d3ae01cdf3b918dd82e75e3b5734240faf9159e7081239a65e9ab56891
MD5 95e2724be9fed626b666a7bfd08813c1
BLAKE2b-256 06fac64cf86b373643d619f97f0387671bf8eb1dfaede8e6da200503bb696260

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 28afa88e6625c5e1a46cdda1835f62654b637e0f051004339d6bbf92ef55cd35
MD5 eff9cd7e7ac8af3ded778d82acaaaa17
BLAKE2b-256 1180d771758eeaed9c5f1c0b079b4c194cb875960d568a71d074a9fd653cc9cf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.3-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/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 7a8fcd6538a43f8d509e0d236f5d50b8d087b33aad64547021d8e7c3b947a26f
MD5 cb6b2c4ca04ebbc5dd4099ef6b915afe
BLAKE2b-256 eee48e3fdb86182193f66ccabe292dd26fb6b172ff4e9d8ffe794188e15570e0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 15.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 132616931bb5b2f5bd6da8fe76bdb7e24afa87fd847fbce157019f07eeab495b
MD5 f3f4c805953f66b24526a9006466631d
BLAKE2b-256 9d80f729407633f4f5aa8fa6ce96f773c37b17d4b2680a07fc88105173a2e5be

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 14.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 92b0170d1376e13711edfbc348c7070513741d5588f899acb09c5508829509b5
MD5 47ce7dd0f4cc4283bfce843d78ea49a9
BLAKE2b-256 d9fd6293b7804cf2c2960a81f82e6d58432b0352cdd92241d786cafb9755be3e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.3-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 62.0 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03a09a84cd76e7011adc25e2793ae0a81408116a73fa020cc80dadb4ac25aed3
MD5 65aa9bc0c7f992d79dafc341cad59754
BLAKE2b-256 9df445b5a959e571c75b261a885b986adcae62c65fa2afac36a92296302a239a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.3-cp39-cp39-musllinux_1_2_s390x.whl
  • Upload date:
  • Size: 62.3 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 434eb0e51ab66d3a105fb9a25be2d9e4f8a6a5dc8e22ade1a734899973f74cff
MD5 97b91857f384116cfe47be3c48663477
BLAKE2b-256 4e5e31cec86d4387974fce6c49f408447f336914ab1861bf61faaa15b6d2ddd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 25d3ae5532197571c884a255c2660f456a1f571bdbac3d8b64e5bb9019293178
MD5 cdf51861b685e59032260a463cf45716
BLAKE2b-256 8258b68dbb7857576650a619ad7a8b9d28a26de21c5f4f6aff488f50d0f20fd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 24495f00c7fab1fb636f2416c1e6f2fcbefa20a87ecdc14ab1b8771a6aec0497
MD5 56e91c797d89d45f8b15aa448f1b3f7e
BLAKE2b-256 850450e7127e04b1d2a87838df11d315889c27150add0db76103cb1bb9f4086d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.3-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 61.2 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6f0f7e096a9c1957d5391ddb939ffa3ead5eb7b62acfef2b9c6795a23ea54624
MD5 29171fced1a7459678318c848fde0749
BLAKE2b-256 ff3a9cc2ccc06700e833f59eea8f0b1f12b17261973175735456d6acc21b27e2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.3-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 61.6 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ee6384a273199c2243449a533cdb23da65bd3bef01be61e6d09e68bc2404ede7
MD5 d0026b9e82c2d05e4840f87c0f8e7386
BLAKE2b-256 013bdfd8bb78e37b466bb50ed0bc4d30b02b38b98f9dda391658afd9fd0771cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 76f3438a618f139f1e744bc7f5c94bf0ce0791748a92c10eeccfa196125c5914
MD5 44dd487252a6445dd346edc68f6d8dfe
BLAKE2b-256 65f5361b872cac689c2e548bdd926f6b41a85b51c3ada3c1450a2d599280f3f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 61c4b0366046bb6bd66656e06593ecd23a60b61be56760f5d8d63eaacf6f87fe
MD5 f3297b5c6f7c251c70693211a1df5be4
BLAKE2b-256 1911e047df43722d5fae104056ebd8708c36d1010bc0c932feef514570b78980

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.3-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.3-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.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c9668b7f5149258a3b634635e74a1cb40da9543d14a8575b773d29c6c086040
MD5 5ce31c3f3618fbc08fc14c5d30c8fa54
BLAKE2b-256 8dc27c08e0a02979b37759b769f08e0136ff389d74e464d19b31738671e12306

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 fbb7f78b30f16b7df9a885e28b2f158b13b646643a91506655181c97fb2d044a
MD5 1c12cd2ff6642ca92990477f3f17438f
BLAKE2b-256 94c510efacce41010b7224d0aea8a79bca3d91f3a15e50130caa46d2f349fc2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 cebe157ac88af3c831bc65dffb1993e1212ce006ba7f7c10cdc72e274943cb29
MD5 0eb9ac1c2ec4af7c67a790c2d166c19d
BLAKE2b-256 01fea3fc794cc16138cceacead47358b037cf3052bdf00a6d654cdce420bb7eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 02e987f1c8d4d6408dd8aec5fece56a587f5d99502d421914c88af3fd6b81fe5
MD5 7fd53b513c7072d484865d587e719776
BLAKE2b-256 cf88dcc0b9410a7996bb8be164417ac1f1d677caa019e69ae8acfac72351dbb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 be048b32ed3eb05ad2768128bf1c6f6366ef392aad9cf653e3c81a598ed267b6
MD5 25d2851c11b44f01ad81081e1e048598
BLAKE2b-256 68241ec0dafca6b59ffee3663483e619aae1260307432edea17b728b94fb2b57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6ee8e835d4ccc3a9557515fd8871de15d1baefa4fe7027ade023f813707a7c7a
MD5 c9d59fd6d44d9cf6672b408cdaf16524
BLAKE2b-256 152a8c6eedaae1a87b2c0033479e6eca70764206a4a1c6eb713906cd05f638c1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.3-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/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-5.3.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44f65d9358006cdfcf69d2406fc0f4b93ac014fae4249a196741f11a9f14ab6e
MD5 562a2273a49da6254da53775182cafc3
BLAKE2b-256 0abdbd18be0fdda93433fa425be8796af4e75c1fd304d9658eef9589f6a9dbdf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 df480c2fcb2f27c5783041167155dde2057c9b7c8c617d0884fcd349190fc99e
MD5 4b5e2fe91636f30018a3fc8c20976b08
BLAKE2b-256 bb9159a39a1fc5d7651867e7f0214237c7d8cf85a36d8dd1d3b12a10b5a2adec

See more details on using hashes here.

Provenance

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

This release

5.3.3 This release

214 files

5.3.2

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