Skip to main content

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

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

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

Installation

$ pip install xxtea -U

Usage

This module provides four functions: encrypt(), decrypt(), encrypt_hex(), and decrypt_hex(), plus an XXTEA type for reusable cipher objects.

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

XXTEA Type

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

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

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

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

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

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

Padding

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

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

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

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

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

Rounds

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

Do note that the more rounds it is, the more time will be consumed. rounds must fit in a 32-bit unsigned integer; values exceeding 2**32 - 1 raise OverflowError.

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

Catching Exceptions

When calling these functions, a ValueError, TypeError, or OverflowError may be raised:

>>> import xxtea
>>>
>>> def try_catch(func, *args, **kwargs):
...     try:
...         func(*args, **kwargs)
...     except Exception as e:
...         print(e.__class__.__name__, ':', e)
...
...
...
>>> try_catch(xxtea.decrypt, '', key='')
ValueError : Need a 16-byte key.
>>> try_catch(xxtea.decrypt, '', key=' '*16)
ValueError : Invalid data, data length is not a multiple of 4, or less than 8.
>>> try_catch(xxtea.decrypt, ' '*8, key=' '*16)
ValueError : Invalid data, illegal PKCS#7 padding. Could be using a wrong key.
>>> try_catch(xxtea.decrypt_hex, ' '*8, key=' '*16)
TypeError : Non-hexadecimal digit found
>>> try_catch(xxtea.decrypt_hex, 'abc', key=' '*16)
TypeError : Odd-length string
>>> try_catch(xxtea.decrypt_hex, 'abcd', key=' '*16)
ValueError : Invalid data, data length is not a multiple of 4, or less than 8.
>>> try_catch(xxtea.encrypt, b'x', b'k'*16, rounds=2**32)
OverflowError : rounds value too large
>>> try_catch(XXTEA, key=b'short')
ValueError : Need a 16-byte key.
>>> try_catch(XXTEA, key=b'k'*16, rounds=2**32)
OverflowError : rounds value too large

Download files

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

Source Distribution

xxtea-5.2.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.2.3-pp311-pypy311_pp73-win_amd64.whl (15.9 kB view details)

Uploaded PyPyWindows x86-64

xxtea-5.2.3-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (15.0 kB view details)

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

xxtea-5.2.3-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (16.1 kB view details)

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

xxtea-5.2.3-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (15.3 kB view details)

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

xxtea-5.2.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl (12.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.2.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (12.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-5.2.3-pp310-pypy310_pp73-win_amd64.whl (15.9 kB view details)

Uploaded PyPyWindows x86-64

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

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

xxtea-5.2.3-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (16.4 kB view details)

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

xxtea-5.2.3-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (15.5 kB view details)

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

xxtea-5.2.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl (13.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.2.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (12.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-5.2.3-pp39-pypy39_pp73-win_amd64.whl (15.9 kB view details)

Uploaded PyPyWindows x86-64

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

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

xxtea-5.2.3-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (16.4 kB view details)

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

xxtea-5.2.3-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (15.5 kB view details)

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

xxtea-5.2.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl (13.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.2.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (12.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-5.2.3-graalpy312-graalpy250_312_native-win_amd64.whl (16.1 kB view details)

Uploaded Windows x86-64graalpy312

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

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

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

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

xxtea-5.2.3-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (14.1 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

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

Uploaded graalpy312macOS 10.13+ x86-64

xxtea-5.2.3-cp314-cp314t-win_arm64.whl (15.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

xxtea-5.2.3-cp314-cp314t-win_amd64.whl (16.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

xxtea-5.2.3-cp314-cp314t-musllinux_1_2_x86_64.whl (67.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxtea-5.2.3-cp314-cp314t-musllinux_1_2_s390x.whl (66.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxtea-5.2.3-cp314-cp314t-musllinux_1_2_riscv64.whl (58.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxtea-5.2.3-cp314-cp314t-musllinux_1_2_ppc64le.whl (71.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxtea-5.2.3-cp314-cp314t-musllinux_1_2_i686.whl (67.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxtea-5.2.3-cp314-cp314t-musllinux_1_2_armv7l.whl (67.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxtea-5.2.3-cp314-cp314t-musllinux_1_2_aarch64.whl (66.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxtea-5.2.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (60.0 kB view details)

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

xxtea-5.2.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (69.1 kB view details)

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

xxtea-5.2.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (72.6 kB view details)

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

xxtea-5.2.3-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (73.7 kB view details)

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

xxtea-5.2.3-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (64.8 kB view details)

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

xxtea-5.2.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (68.8 kB view details)

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

xxtea-5.2.3-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (65.9 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

xxtea-5.2.3-cp314-cp314-win_amd64.whl (16.2 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

xxtea-5.2.3-cp314-cp314-musllinux_1_2_x86_64.whl (63.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxtea-5.2.3-cp314-cp314-musllinux_1_2_s390x.whl (63.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxtea-5.2.3-cp314-cp314-musllinux_1_2_riscv64.whl (54.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxtea-5.2.3-cp314-cp314-musllinux_1_2_ppc64le.whl (66.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxtea-5.2.3-cp314-cp314-musllinux_1_2_i686.whl (63.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xxtea-5.2.3-cp314-cp314-musllinux_1_2_armv7l.whl (62.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxtea-5.2.3-cp314-cp314-musllinux_1_2_aarch64.whl (61.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxtea-5.2.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (56.2 kB view details)

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

xxtea-5.2.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (64.6 kB view details)

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

xxtea-5.2.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (68.3 kB view details)

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

xxtea-5.2.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (69.0 kB view details)

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

xxtea-5.2.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (60.9 kB view details)

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

xxtea-5.2.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (64.1 kB view details)

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

xxtea-5.2.3-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (61.5 kB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

xxtea-5.2.3-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (13.2 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

xxtea-5.2.3-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (13.3 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxtea-5.2.3-cp314-cp314-android_24_x86_64.whl (14.5 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

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

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

xxtea-5.2.3-cp313-cp313-win_arm64.whl (14.5 kB view details)

Uploaded CPython 3.13Windows ARM64

xxtea-5.2.3-cp313-cp313-win_amd64.whl (15.8 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

xxtea-5.2.3-cp313-cp313-musllinux_1_2_x86_64.whl (63.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxtea-5.2.3-cp313-cp313-musllinux_1_2_s390x.whl (62.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxtea-5.2.3-cp313-cp313-musllinux_1_2_riscv64.whl (54.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxtea-5.2.3-cp313-cp313-musllinux_1_2_ppc64le.whl (66.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxtea-5.2.3-cp313-cp313-musllinux_1_2_i686.whl (63.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxtea-5.2.3-cp313-cp313-musllinux_1_2_armv7l.whl (63.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxtea-5.2.3-cp313-cp313-musllinux_1_2_aarch64.whl (61.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxtea-5.2.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (56.0 kB view details)

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

xxtea-5.2.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (64.4 kB view details)

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

xxtea-5.2.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (68.3 kB view details)

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

xxtea-5.2.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (68.8 kB view details)

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

xxtea-5.2.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (60.7 kB view details)

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

xxtea-5.2.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (63.8 kB view details)

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

xxtea-5.2.3-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (61.2 kB view details)

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

xxtea-5.2.3-cp313-cp313-macosx_11_0_arm64.whl (13.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xxtea-5.2.3-cp313-cp313-macosx_10_13_x86_64.whl (13.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

xxtea-5.2.3-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (13.2 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

xxtea-5.2.3-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (13.3 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

xxtea-5.2.3-cp313-cp313-ios_13_0_arm64_iphoneos.whl (12.9 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxtea-5.2.3-cp313-cp313-android_24_x86_64.whl (14.5 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.13

xxtea-5.2.3-cp313-cp313-android_24_arm64_v8a.whl (14.3 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

xxtea-5.2.3-cp312-cp312-win_arm64.whl (14.5 kB view details)

Uploaded CPython 3.12Windows ARM64

xxtea-5.2.3-cp312-cp312-win_amd64.whl (15.8 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12PyEmscripten 2024.0 wasm32

xxtea-5.2.3-cp312-cp312-musllinux_1_2_x86_64.whl (63.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xxtea-5.2.3-cp312-cp312-musllinux_1_2_s390x.whl (62.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxtea-5.2.3-cp312-cp312-musllinux_1_2_riscv64.whl (54.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxtea-5.2.3-cp312-cp312-musllinux_1_2_ppc64le.whl (66.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxtea-5.2.3-cp312-cp312-musllinux_1_2_i686.whl (63.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxtea-5.2.3-cp312-cp312-musllinux_1_2_armv7l.whl (62.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxtea-5.2.3-cp312-cp312-musllinux_1_2_aarch64.whl (61.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxtea-5.2.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (55.9 kB view details)

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

xxtea-5.2.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (64.3 kB view details)

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

xxtea-5.2.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (68.2 kB view details)

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

xxtea-5.2.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (68.7 kB view details)

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

xxtea-5.2.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (60.9 kB view details)

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

xxtea-5.2.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (63.7 kB view details)

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

xxtea-5.2.3-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (61.1 kB view details)

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

xxtea-5.2.3-cp312-cp312-macosx_11_0_arm64.whl (13.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xxtea-5.2.3-cp312-cp312-macosx_10_13_x86_64.whl (13.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

xxtea-5.2.3-cp311-cp311-musllinux_1_2_x86_64.whl (62.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxtea-5.2.3-cp311-cp311-musllinux_1_2_s390x.whl (61.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxtea-5.2.3-cp311-cp311-musllinux_1_2_riscv64.whl (53.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxtea-5.2.3-cp311-cp311-musllinux_1_2_ppc64le.whl (65.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxtea-5.2.3-cp311-cp311-musllinux_1_2_i686.whl (62.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxtea-5.2.3-cp311-cp311-musllinux_1_2_armv7l.whl (62.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxtea-5.2.3-cp311-cp311-musllinux_1_2_aarch64.whl (60.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxtea-5.2.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (55.3 kB view details)

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

xxtea-5.2.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (63.4 kB view details)

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

xxtea-5.2.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (67.4 kB view details)

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

xxtea-5.2.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (68.3 kB view details)

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

xxtea-5.2.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (60.3 kB view details)

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

xxtea-5.2.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (62.9 kB view details)

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

xxtea-5.2.3-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (60.7 kB view details)

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

xxtea-5.2.3-cp311-cp311-macosx_11_0_arm64.whl (13.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xxtea-5.2.3-cp311-cp311-macosx_10_9_x86_64.whl (13.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

xxtea-5.2.3-cp310-cp310-win_amd64.whl (16.1 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

xxtea-5.2.3-cp310-cp310-musllinux_1_2_x86_64.whl (63.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxtea-5.2.3-cp310-cp310-musllinux_1_2_s390x.whl (63.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxtea-5.2.3-cp310-cp310-musllinux_1_2_riscv64.whl (54.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxtea-5.2.3-cp310-cp310-musllinux_1_2_ppc64le.whl (66.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxtea-5.2.3-cp310-cp310-musllinux_1_2_i686.whl (63.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xxtea-5.2.3-cp310-cp310-musllinux_1_2_armv7l.whl (63.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxtea-5.2.3-cp310-cp310-musllinux_1_2_aarch64.whl (61.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxtea-5.2.3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (56.1 kB view details)

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

xxtea-5.2.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (64.1 kB view details)

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

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

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

xxtea-5.2.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (69.2 kB view details)

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

xxtea-5.2.3-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (61.3 kB view details)

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

xxtea-5.2.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (63.4 kB view details)

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

xxtea-5.2.3-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (61.3 kB view details)

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

xxtea-5.2.3-cp310-cp310-macosx_11_0_arm64.whl (13.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xxtea-5.2.3-cp310-cp310-macosx_10_9_x86_64.whl (13.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

xxtea-5.2.3-cp39-cp39-win_amd64.whl (16.1 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

xxtea-5.2.3-cp39-cp39-musllinux_1_2_x86_64.whl (62.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxtea-5.2.3-cp39-cp39-musllinux_1_2_s390x.whl (63.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxtea-5.2.3-cp39-cp39-musllinux_1_2_riscv64.whl (54.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxtea-5.2.3-cp39-cp39-musllinux_1_2_ppc64le.whl (66.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxtea-5.2.3-cp39-cp39-musllinux_1_2_i686.whl (63.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxtea-5.2.3-cp39-cp39-musllinux_1_2_armv7l.whl (63.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxtea-5.2.3-cp39-cp39-musllinux_1_2_aarch64.whl (60.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxtea-5.2.3-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (55.8 kB view details)

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

xxtea-5.2.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (63.9 kB view details)

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

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

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

xxtea-5.2.3-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (69.0 kB view details)

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

xxtea-5.2.3-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (61.1 kB view details)

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

xxtea-5.2.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (63.2 kB view details)

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

xxtea-5.2.3-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (61.1 kB view details)

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

xxtea-5.2.3-cp39-cp39-macosx_11_0_arm64.whl (13.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xxtea-5.2.3-cp39-cp39-macosx_10_9_x86_64.whl (13.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.2.3.tar.gz
Algorithm Hash digest
SHA256 36fdf599b71ed5d3b83693d5a24b641567eca5cf58f3d2da23352a5804cce924
MD5 9ee1538d6eab9f06cd44cd61e0354780
BLAKE2b-256 0f11a84dfb31d08dade6f00081009dd7ee513ecd0e1f74c5109b2dc17d75797c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1bd790859b6b9b6ceca96443bf90bcdbb514192d9dd15866e0d431100a4f9971
MD5 ef028020a6f003516f0c9a3901c41243
BLAKE2b-256 57030fcfa9fcc44035fcfc22e309ad53f294cc4c24e5da41ab3ce25bf16ba33d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.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.2.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.2.3-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 520d566f0cbb07a49e3c076ba3ba521ab8ef05712f5d141931571a2789425b36
MD5 ae108028b094d6a974e6634b0bca2134
BLAKE2b-256 209093c5eacc265826afc480b14bb9435085db4aef1b635bfc11305779770408

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c49894eb4aa183ceb0bf66bbee5d82f8f64ec17926f358bbf62f4e5beffa95f0
MD5 8504343332dd38206e0056b15bc9dbf0
BLAKE2b-256 d1ea3af11f03612e0e31cf9123002221a69a761f751ca7649ac0b1fcec1ff777

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4af25659a7a1ed0b3c646c040dbe2b69b31056fcaa2e55d57dcde3931f43e616
MD5 8cd8fc9559ea7d9db3a537cebb456ad9
BLAKE2b-256 8b740116bdd50dc0ed5b7135aa55ca129a8d27fb358402a86a818f6a3fae3de1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1d262137e2ca25136ce809c4a1edf96993add21a32bfc359fe1b675fb5d8bcd
MD5 45431e987c9f01555711219d0b91a04f
BLAKE2b-256 da44f8b09f0d8f412d9f371e6ec5951e7e1e26e8fdffdae7e0857b9c37dc561e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0d87972274d6b14ca4be80297dec7deaa8ee48e4976ccb17a6fe5959f52cbb6e
MD5 7abd71b20db02a918e74b35ac8d83795
BLAKE2b-256 b8d96d5b4613bb7488fe937f555468ab011a8073416ce6c8841c61d968a89c7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4293c277588e47848c35a6de3896f889bf52e6c0a029be6b37525b54286661bd
MD5 fa0538b4be315841384481405dbc817f
BLAKE2b-256 47e2e0f105972db5ac53d7b81905335b6a88d23665c440c5706cd7f29f4912a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.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.2.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.2.3-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3d0d82561b71744ac49851e60879502df9b5465c89ed71a765b58b194d4b8b42
MD5 5f8a05bbc194ec2b0e0e5a76f497bdec
BLAKE2b-256 8e5ea2808fa1a236402300ba3fed6695a4cac7b91c2f626bc97baace17fbe572

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 02eb2e5d3714e0a060acc3dca4a3e51af07470f73c73ed6641b45ce4605e4073
MD5 110ef65dbe59009b1acb4e620ca52ca1
BLAKE2b-256 8daee2e34ebba562bd2f3160dc04708b6269b594a432b46d120cf1a5557a6083

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5603df226fbbcd02401bed333ff239368110e101fcf675211d851bc0b8a71beb
MD5 3ef6c521990c7801c11f294746f3d646
BLAKE2b-256 2e1e3ed9d92765a0d9d9aaf81d34f446613190fa68f7fc5bec426becc78b1482

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d2d50b71ee0027f9860a0def828b560d18fbbd428f9fcd80479e380fcccd1f7
MD5 8367b37ec74532524b9b8b6398d3c1e3
BLAKE2b-256 89d4653aa41588f3d6402160a7bec6108034949e29df9c09191d77743c08bbf8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 93515fbc85e8ae111deef22a82dc05d8e0c2f7593a6981e99c85e222b9fd204d
MD5 a4ae25760d00833ab2dd291c7f4826b1
BLAKE2b-256 f22cb500ae49fcf7ad6f47cc3954cafa4d939572d635506936e9cbe37fc5afef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0dcde2357da5839cab851b10e61046b5530ef52dc076834dc44cfbb362aa4f2a
MD5 4c5caeb7c46a9e8f6017c619152fd126
BLAKE2b-256 c73b6cc198512ee87d817341ae8e68fd63051ec10ce37e07c0a2132e905fb1d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.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.2.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.2.3-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 06b8c8ccac1a6e8812cef939df44ee88fdb22d6a050be4ad1f449e26b45776ea
MD5 5f62b9d0662218a1058fc24c6d175621
BLAKE2b-256 b8b7d61e12bdfc5ad300bd1f21f69545d523ec94154060268a84653797165ab5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e4ce5f0c92a7c63013d1517aa631c6cfd4ee1c921dc1eba9558d9cf435231f18
MD5 a04bb505f47725b3f114350adac400c9
BLAKE2b-256 b925476870d61c744bb9335c1cccb7e7b29d1ffc2f39a4d2efcc91253b994ef3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e20e958e6c6088bbd8cda24178182e386331c91adad465bb9a5075bc38ba4a7c
MD5 7974e9d6f83c8d6622e9ed5b02aa4557
BLAKE2b-256 bff769cbdc6b549f54956eb050b9a162651c9ea70b16339acb1bce40aa54f947

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95a9eedfcf85f3c34691664eb1a4406e2849864c51d9a53cfd20fd8a4ea1c829
MD5 a315110ea5e1eb01575582988412c6a3
BLAKE2b-256 4e0fc0ac6f80dd038b2dda3adcc4709b0371de55aa75b3110122ff10354585e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 23fffc33dca3deec329de1132ecc6c8bfb811c62b4af033e562e2d3c059e8eb0
MD5 025b001835ae181eea316c61f8c6df90
BLAKE2b-256 4d5b83196b205c212dd4131ba8adf49450a81893c6777b3c41426c300165f38d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 0213cd17052d5d24cc8f532776543513bf06f27ffcea77cf19125411580ae023
MD5 3a60ed8fb26ff334a778ce3ae9c95171
BLAKE2b-256 72061b22682848f3dd8908b2ad706e484f372a035fa0544f636bfd6e7523a0d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 50fdab972cba8c871425e3fe5e840334ba15a05e24315720d606bbb4e4d9ba34
MD5 cfd9b2c16f336b9d816b6ba694c70232
BLAKE2b-256 0f72cf6483714eb24d48147e993d75e523d6b4d9eac7719cc57c65c098746415

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.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.2.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.2.3-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c9472efa581ac13c98697ac892d6ce320ae92b8089b47e4960d459bb082f885c
MD5 90d29e22889182ae21c758e8fba0b509
BLAKE2b-256 c05fbaa8849abc9a74775b1e432fe95eee68a09bc889ab7e2fc526bc8483de86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3cb8871ce6348eb7bc65173f92d310470cc0d35c1d9e2815673946235cde8a0
MD5 f7a0ffcedd854aa883df26db4b538f29
BLAKE2b-256 02584cecf86a2a2cb476fb2a7bafd74c5afaf95566f27652af9fadef3fbf7269

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7e75a1e1ff4327b2ac12f3af112c3a63162aed543cb03255b18e25f1114fe4dd
MD5 39c41c3185412b0bae23d1fb804fd708
BLAKE2b-256 9d60041b27c7247b1ee9ba3ed2c6915a3466ad8893a4463c2b3443f6d84cf41c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.2.3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 da4d6d6995b2174f62d1282b3b8bb1ace9146adfc3ded18157989d1ba99b7eed
MD5 8bc049b00e12df69e9848e9a5b4ba3af
BLAKE2b-256 80e97548c16e7a72b5c0c682377b25cdaeaade81ee97f7fddde49590daf282e5

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.2.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 0895b621101bd5d0b83da2de7b11bf51415947a0d101cb56b558d4de0e0c56e0
MD5 63f34970a75adcbef7970af377e1676c
BLAKE2b-256 763d495d7756096cf199d4d90354e4086c40cebadc8b1ea25286e39abf47abb8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.2.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 7e7b65ce5b5531414c18cdfa0c0c42e8d2ec24152141b9da1fac27e9c5d0a8c4
MD5 7c529777f4155ff9e3890377f74ffb1a
BLAKE2b-256 c8513019e80969da3d717f97e2d485f59c6cbf2074554041a5c97b61179d3e8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c7ce885d5a066104eaa38d1ca71b9f0a44a4b9c61bb75247454d0d6875577c0b
MD5 3b768460c5eb9dfca758eaf94bfa3ab3
BLAKE2b-256 c8a78ddaf30a92c3c7bddd4351be51f830e995c4343c0eec7ad890495828ed11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 41fded6f0309c843edf6f4c4af2c0343227ffcd0c975367b9b005486bb4206c3
MD5 dff4d2f6fb0119a972cd9f923ed33520
BLAKE2b-256 9c534f02c95b4425bb670f28c9850bf7bbeed923db853e65c3ec3fe8ff89cdb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 541b139575b939b5614a694ce85d19e9349e920b1f6a2278c6fa4090615ef15d
MD5 1572a60857b5ad2c37ca157f1a93c427
BLAKE2b-256 7dee9f0d34eecb6322a72e86ca6a28f839d6229619f4c840500ddd8cc0249597

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ec00aa3fa3be7ad1be6967bac015456352de214494d3a71d1f4d49416dfcb6d3
MD5 5485ee649f7587827945500c109c253d
BLAKE2b-256 c80f04057ae72992972a098cddbab5da0d20ad21faca982105cc08e19651c5eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 717b9691b0b8e5736b41ea530763b5d6024aa696e63ab0b8f8d35605542f62ba
MD5 25cda172731fec1d15ee6406ca97ff1a
BLAKE2b-256 ed00533189fdabcf207c2c653a8291db12990f69b37fab456207d1811a6d4882

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6d47325be6fddd4c70cb267f4c646f98fc4a08a1fd28276853ac1632311b2f3d
MD5 764c9b1bc9fa8c9d5df663747e4d036a
BLAKE2b-256 da3cf7ec607a16b645294ddc7db18096389c182c71c24f6d5ccd0980c9701dab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 62af3b0e3d46ffb40256b4f5b0e4976ed10666eafb0d6009200ebf6be6973130
MD5 11fba5651e83886a2daad7f8acbc6b51
BLAKE2b-256 3e0282ff298609eaeca31582f331eb6bf86072c1505639378c34a630e821dd18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 996374299acbed095f4ce5703fd1a1ab4384d0c808bc565cdc38f57a432d3b12
MD5 5139e34c3b824656aa2b06ad99084228
BLAKE2b-256 b218da4c76a72844c2febd441d280f50f0408e06f1f51c631a6f4e7453315539

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.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.2.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.2.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a7f9c5c8a4fbe1b2a10bf8d575090ee0886b3a2d6923a7900554dcda8755f72f
MD5 8bb7b862b880cdcc81430b5e32186160
BLAKE2b-256 819f85d65846b4660a2dd8ee16fc539bca241020811fba612c2bdbb859f4b90b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a580f1c2f030ea1be14fd15b9ebc1339dfd848f67d0adc50abaf73d2d285479b
MD5 171ce13d92539b7f3a90e08c45c0f642
BLAKE2b-256 f87dcfc795968c2c34217f0af4e2f00faa1195ecfca87d063cba00bf32e79359

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6d672d05031c8f2199c54e2458b3bd30e92ffc91c5f7470b30809427943aaabe
MD5 5f49740520d4f70757a49cf155ae59c3
BLAKE2b-256 69bf3a04aacf462a2fae6227d101cd6245345a4d43fcb16fcfcabf95841c0c1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 400512d7c7b45f65992c42db8c2769609ec64799dabaaf7ea5a12196c98ee00e
MD5 a0bbcfa3991afb51d9fd425f2529da77
BLAKE2b-256 5894a808323cadc25f7c47276d2ed157531310e4e1583f5f4e775d151d3cc505

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ac9ef7ee38a05e3e274ce36b4148a6f7065a072bec2677fad6557c35ec917f6f
MD5 86de598d17742146f72cdf1a345fc30f
BLAKE2b-256 38b35b742d11a78f49c91287e48a3201c2bfd1eac00f4db7c210dd211e82c97b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 344eec569f02ed5f83dc938b5aa2b216a876bee22fdfd14b5a7e7eaaa8591170
MD5 4af282349c3499203d930eaa95001979
BLAKE2b-256 cb33692de1cc8147db7e4cc57a68d0cd0244dce4ca745860107373975a4ea709

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8449e7280b500dbe5a64382612e98d5ae952ff157b449f7fe3ec0ecadfe1458c
MD5 1dd4131c0922d3f591f9f25f547da706
BLAKE2b-256 12fdaf7907cc1afac4d108101320e4312b31203cdbc3223a2f283f0d106415de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 391b0be6e4443b23ac69b4a7c366d58ad5be6bd07adc2443c86aa6643a4ff5dd
MD5 e57b59c253950ef249c6c67d2dcf7ae0
BLAKE2b-256 f3692afdcc6663bc856867e24f9edca99b57780cd5c6f5532fd5130c39304c23

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.2.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 aa01fdefa02e0730a7f690c9a0863ae58951a0a4c2efacc0493c661d4970b1ce
MD5 62193012e019b94f439f424053221a35
BLAKE2b-256 f2aff7d622f1a5141835f0cf9610ffaca4df9026601d0fc578a7e6fb6a4c0f1d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.2.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6f5d4e0b15efd6f105331e2af223de58a6b0eeae3e16df57cb4845445c2cee8b
MD5 ab8064f3244d277654297747eeff5bf6
BLAKE2b-256 847dcff87fe0521a0126c88be63a9ab7dfc30d82b083de1798ddcd64fccdd5e0

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.2.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6fcea565a8cf13cfaf475b5f1f3d9615ea4df0b87f1fd04e0850e31e81cbf55a
MD5 08ff68b3850eb88ba60df16e62bcd24d
BLAKE2b-256 3e5b6f1de90c92d469c20f48b611218b5da09eeedcc27048054525dd6f8be2d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 4c88e2bc94bf42560b3a22ca5fd18ba273bc0792bc9ba0e18bd602149d49ffd0
MD5 fc73a1323700b21763ee65e9f9cdbcf5
BLAKE2b-256 a4bbd490d35587f9202e6a92c1ec06b086e2a97a21c98b4f89ae8cd8c2330e8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6804e4735e30095a61a27f1058f56331eea19ef5e97ba0ff22ac0b4ee2ce8f3a
MD5 babda8610a5a64dcbc59c49daeacbb6a
BLAKE2b-256 19891bc62cbc4b3acb1106df19261c6b451cf3f1ef862480004f036dd6b8a922

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7c3ebcdc9f786049dfa017f7e3dc213f875ea4cc77d411ebd381ad56a28d2c7f
MD5 b6a11ffe011a5cf1489dddf9b8902828
BLAKE2b-256 6a8d5a1b9ae02bc147c60ce0862a1c7d0af3073cc7897c3e37820f2f148196e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8c17766cb026f4b44b6ec2752c108da2d68090f2d5cdc9b6cff9d8bee94231d7
MD5 9449c4135c7b9d0aef51665fbaa4a3ac
BLAKE2b-256 72f78b7e91ac354e58830599a513310de9a6442e940cf20c12cde887c174d439

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0ca9a78300f3d758b36ac57aec67d5ebaf9ab03ab4206e59766b9533e9338f85
MD5 9e41eecafc0bc57ad7617fed857df320
BLAKE2b-256 b764f635cf00693039da9528007d4dfb6267d8eaa346447a94782ca4636b342c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c1c3bbca3e83f7dcfc2e7b415198be236556e896b72a987fdf3970a381b93325
MD5 d0825dba248bd2569525e76b72141562
BLAKE2b-256 aa9cf690d8912499404d8fefb295f9e608120d9354010516b7ec4786d24484e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a5572ad3502e78bfaefd0d111448154552d4fd9f845a5d07ef467ec93be6f52d
MD5 275f9cf991ba98b7d5827f302a1c4245
BLAKE2b-256 15418788f6a8790ba79d05e2deeef890e899d395d5a128b66e6a113f34f0fc66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0c936fbf32a28556c13912f50539cf5d12fb3495a5295c3e0c4c82ceb3294047
MD5 b0b6995b2700203689e1f8073deed4cc
BLAKE2b-256 b66e3aaa5560e2884a1198f0171e4a98f39a2e38eb56ae55a4be85286f94258e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 933b17718af1aed83207112fc0bb1cc5b4aa68f881136b46f886a755cdf6e383
MD5 3afc002ddba73935c8a9fe0cfbbbe589
BLAKE2b-256 2ee2a64f5e481e0f76c3d5b2db21157796bc30012b31859c634f3825737f5f81

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.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.2.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.2.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bc736351f956cdcc4c8cf982fe9cda7895ae7e8c8a4c6af8fd015760923d8fe2
MD5 d3343ae4963c109bf2e19d3265deef16
BLAKE2b-256 345364799355805884778e992977e4f735c7ae2f9fb8c33032b858f0d06ba17b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3b643a4e8b395fc2cacd25c1f5a04db0834c98585b2ca17f3a1f86ce872b6166
MD5 fde7e8e083eb466e6bc67531822bda2e
BLAKE2b-256 cb9207f030bd4c69e5d6c7fda32a0e08ca71529d8a61ed5b7a4c74da5ded1418

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ee4bf54755bbeb5a55bafc1005b71d813e54fe47e6b94a13b5452c4ed4793b6a
MD5 52ec19b1dcd6a6d3be7ef9dab46bd003
BLAKE2b-256 8019bea0c1f1573933a6ea9db08cf8617df31d84d391f8ade74c39a6452a4148

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c66af52afc0422e0559101af564dd16b4121ccb62a76063bd36731be4d90f914
MD5 8180f3bb0b8a35ff077df62b0ae121c8
BLAKE2b-256 81ed03068df01aa40230d9af7ff8fce18b021a6df8c3f439d3c87c942526fc31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6424e2f8271aab5262e290fb6cb062e258ccf1cc519eafe49153215cfc2e7956
MD5 7f8d498ad3b30277d2dd21c457a709d7
BLAKE2b-256 5c5aa419975ed8b5fda8314a3b62b65df85ab0e9103d1aef7caa9b872019f34f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 892ed05a4828fa8cb59a28b351538efe31fa901767f082d4899908e21fc02a36
MD5 22182a9046fb456dd1d8f34d1703ece0
BLAKE2b-256 67acb21915fda7ed910e26e37b497b5aac9f6a5f48485cc51d92d6a8aafd039c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35caf8457fc8940e90b5779d66a1fb079b3d6e5198a472d6e98a6ae73555da68
MD5 edf5a20e4f2af4e1e78cab76f8cd49e6
BLAKE2b-256 34578878a35ff3260686ceab08e6db8965f70c638fddf1c0d577428cb7ebbaae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ea83124bc159cbb2c659e0f85a0fd8166e543cf3c686b76f41c8c3765bf3e0d5
MD5 d2a927df952b0855d52419f51f378bb5
BLAKE2b-256 de0837c5eaa49567a212ff523ace3f9c4822e2e4d969f4e0d010661b44d2e649

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 9933b631c8dd891973864eaa9a4a45fb325cac32e6413a451a4de9575172b96c
MD5 a629678ad5d04ffa4bcc56d5e3c67164
BLAKE2b-256 7c0d846f74909eccd0b6747493af315b3db3a73fdcec49ff9a27c32e4c037c6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 f7a3c986f0322edc3ec15e3de023051139976d78b70491db49c3469dbab5531b
MD5 dc9a0ed53a16eb5c77f817adbb50e5a8
BLAKE2b-256 1e567d4df78f8d7cf43f01e24f571c75cfc9f0c97564f323d8f29257de3db943

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 bdc7c7a149092703d00120bacf940a5a4eab9f03925f30c24b06217904a89c1f
MD5 683d76fdce95552fbd5805ab43c44d18
BLAKE2b-256 9e439d97b770489994635aa72addaeb152c977883434f135cbc50751b0c4b168

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.2.3-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 cc3b66914f9c3ca17e8eeafc750c963051f637055d405cecf542911346dc85e0
MD5 eb257274bad7973fa81b9698ef1a62d4
BLAKE2b-256 a4e4e48e00634ed49188e9fda1285146e634e917ffe42c4f47818d1488b88de6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 dca596809e4afee327d1fd15b413a988903bfa70c4a5b92476b54f2f64180c58
MD5 125f23ea5efbc330ebef664a247d2c0f
BLAKE2b-256 e1a6e205f7b7a108dec38fbc3a2ad6d39dc681580b61558b6494ea07a2f6d25c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.2.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 246d6fc60ec6ae107ba87a512df4380a2485a5dc7a892dcadb6e0ab949d3bd8f
MD5 c810afa48193efe0fde39d1987f57246
BLAKE2b-256 9508834a1ad59d1032f731ba7989274f54ef728091e9a8f509049f3118377b6c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.2.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 56278cf7ed8ac84e773a3723d8248870384ee0bba1a372eb085022741f50d5b6
MD5 594509e90534022eac23584ab2b57b80
BLAKE2b-256 c6c8e37e994847ec3b4e36cc758967b2f13be262c79b616da4380977662b4c12

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.2.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 fd4ac83350c07aaf28a5fcd573b1ad13b1be13160c25d9c891fe9f482adb9f45
MD5 e00e6304772bf4b0b3287c4573d2efbc
BLAKE2b-256 bfca164d0ed6aa9b9056d6affee634492896acab8538e6bb319cecae887b5f65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 9eea0d235932ae7a979b4a4b2804675d23b79c359d9febdab0f2314c991eaacf
MD5 b619eacce7bd6cb93a80f5a3969399a9
BLAKE2b-256 0ffccf8cdaa5558846c3190effd1c2d241ae9f4834cbf60db555d1075a025057

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 35cb837c78766149aa68e87b6f34fa1836f03472df34e40cb94543b34ec13bbf
MD5 6b350d6503f639fc76fe0e8a283c0f98
BLAKE2b-256 586560afaafa513554c12db37f62372447a3db5db7ce9bd325af297aa31b65b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ff24252d16b32b1520b9eb4f4ac11747ebb3f381f09d558fc72d4dc5056505ae
MD5 7f7b7493a0d25e90b53d3a7e2769b9ff
BLAKE2b-256 a6fa0efe1345bdf62cdfedc7be5f41b988f855c37f4c2cf070e4fb3b3acfc3c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c5903bdbd976d0b9f5ffae1a43c32d345d3373dfa79362ffd15414cb1aadf439
MD5 1c5b678d2b3ed0fb07cc00b4e9805dfa
BLAKE2b-256 f10903cc2ce4513acc9351dd9e4a2d1fe83648e4cbfac849f5837a6e8dffd78e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0dbe99234a16fe646e5fde9e2b8746d86f365faa6f0cbca538dfc4148deddc39
MD5 02faa1f36c3bdc601c97aa7c0b0fe292
BLAKE2b-256 3325eda8e01534f683f73c832ba5cd88440bff79497942d3dde4648807f14682

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fbedcec87ebb2be605bd525a279609cfa014b2ea985c8da12a24229edce86aa0
MD5 13bd3e5a3e18ca49f97388c6a2ae183b
BLAKE2b-256 bf79c04b9d8aa42ef3bb5511906c8552fa94dc3909947b10a1cf0a00c2269a0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 45c42100c5497eeb901ff0ca3e8c42c2639b4f6127accab7f17d56ebd00ec7ed
MD5 5fb0381306d6ee14d018418e513ed520
BLAKE2b-256 d5fa7e3ba147190a3e326a5f855671d9d559251e28b1feac82a911101e3ca31a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a78453dc0f6e8aa0e467e47a02658288fb39c25558d7a739546eb202c6888830
MD5 fbb797cff7cf44e7fdd6338f1f71d3c9
BLAKE2b-256 79037d7fd639671c1998a240240570ebe9f6f597ad1741d19ed50846b03ccac8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8cb10a51cfa1bcfaec7a61d4558ae0cb4c83368537ecff155c51ef5c1be33503
MD5 93a23e4765fa73fb62833b7d664d4b2b
BLAKE2b-256 e25683c70b83220890b083ed258ee223c7959e657f53103aa41e6157c39e595b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.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.2.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.2.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5e49997da04a52236a62f0fc4a666ead2f5fd16222d467e6d7c19215b750f394
MD5 c4cc3cac042a8acb2da44555aceceaae
BLAKE2b-256 e1583f0ca69cf94dd7dc0040f9e92855af52fce1c57689c06d58196dbf2c1b70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a9ca048eba9f63a6390a8a682278e8045c098805848de175f27f10c322d244e1
MD5 d509342d6d1aef35b299dc2b3e0f975e
BLAKE2b-256 89da52894b9e763ed5941677c330f8116b1c3c89414b9cff66f1e70bb7d2a8a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 49298f2398cea2a8cee9dc14ef617cb2f0155942d35467a387746f3f862d047a
MD5 1e86082e7822832f45f65aec49d1922c
BLAKE2b-256 cfc8dff628fa401d5afedaa235ee8e88036386fce9e10a6a3bf477209d73a35a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 bbb37638ef5b801fe5658e5f9d4ca888ca311aa5377c2e198c8c093dcc364dd9
MD5 8b2a2c23e1757ad6ad2fa68d975b89b6
BLAKE2b-256 10db6f9980012e98a968dd6b2eccc52010ad74f1d4d79a72cc4311edddabda32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2b80c2b55fc3edaa227e03c9d666b2d29922070a5a9e3cc85afb808a0031c635
MD5 6e19ae72931e397677118fd1457ec825
BLAKE2b-256 57bf9bb8c357d1c361cc5d1a6dceaafc70744c8b08bb64bd6080bb63285f98da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 1212170c8667999976af6a4eacb37d7c4199848b77c9ef5392efe4106f21740c
MD5 40944a570e735151adb011bb5709a3b8
BLAKE2b-256 5b004f1969a9ac46dbe2b3f1445d876396a57bbaac30145de9fd1b1a6bae26d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ecdac35c0983df8d70524f2b1ff1d2f87ece6f299bf7d4150ae3944cbdc6c76
MD5 26930b1748f28ba528dd38e4cc35c3b2
BLAKE2b-256 e1001b68a52cfc37315231cc973dd5a9f5f85ddeaa7c2504a9cd9c222a3592be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6fb6ff575242691ffcb3c26a22f2cb4dcf867d39cafc205ee3022dbb56d719da
MD5 6877a616cc7d0ed1b608b46443a355b5
BLAKE2b-256 08898bf21132309c7d225f1f550656d615be2f18ee0223a3311ec574e785c631

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 0b5f6b9bedc9898fa068f5d4ccfb6a90855bdb8aeedb6d4247543ea3f88b5013
MD5 8bd72ccb08f6b3b6a799c177af3d7471
BLAKE2b-256 6980d53ec41909d6be047da71f88e36628af2e9171f730c768cf42fb8722c495

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 97bdce099a17907d1e5c0fc75a01b6384b4c59bc2bcebc6da058a721bc2b5f52
MD5 66c07aa562088415a881877039c8d075
BLAKE2b-256 ea74b10b9949bf52904c7f0b3791b303712da8e65efed0974ee1b5255e263975

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 c28bb8e7467e82aa689224e3f685ed7ce7ba46b1444232f6d93a4b0563aece9e
MD5 f7d594609d53803e172fbe5393088be4
BLAKE2b-256 8f0849d3c7161beeb4f164ec6c32ab21912b1074fa6c5529c6186b9401fdfcd2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.2.3-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 2982e357834c3683b2f962f03828c666ad41ede2c7c289d9a3b4ad07d4c80f76
MD5 4fbd8ff5322c9ec36a43b06800e2011f
BLAKE2b-256 f291ff8e83578fa6cf9cda99b626063ce0c0e4f8a080280ac3170de748d74ca1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 0a11e23dc6976f21d27d7c490aed8d335a836324589c3f1b732f6847881a70a9
MD5 013c1d776f2bb8ce4eadcc4f6244ed5d
BLAKE2b-256 0577ca56790517e5ca63bd860c0f395c603e7ba783215f2064c31b39dc71cd30

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.2.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 80a6f2fab0ef741ac3f42db8c180e32b5f557fdeee54030689d6c5fc82ff83f1
MD5 a342c65bf54144b4842699cc63ecd005
BLAKE2b-256 52d6772f7022cae373248093a7e015acb818c6d6f5ec72ddbee336a8e8f765ec

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.2.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e1b1ce89e45fbc5943428364e6758570fe61cc151de38a0c6e9a4e3c408f428c
MD5 e0f60470e2e5d6f22bed0209f5e73a3a
BLAKE2b-256 ea519d6acaf7d153f95d90f0d6ae0b0a6f055a99bc4e5c7a8f637036ec7d4c2d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.2.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 57349d4767665f369e6d693a7fc7ad2c43b3a2b011d15dc18de95a7984c3d928
MD5 4812613b5f17782c8a26928080d8475c
BLAKE2b-256 77cc7a955a31d93c061876b91aa2ab82582f605f5700103098531ae1e205d7d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp312-cp312-pyemscripten_2024_0_wasm32.whl
Algorithm Hash digest
SHA256 2fc454f3a988c32a5ed46d80c8bcfd15214c1b6740cb94fab3cfbcb6ea70f0b3
MD5 087a13fc5e08a0d8954410783211b655
BLAKE2b-256 d52f8e10e8d75c6284dc86b73678951d35d7f4642baedaca719841f2eab0ecec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5827f1bdf68715e4fe5de9683d4e6d258c06bdf4225b81dc66e0c1fcd30730d8
MD5 25892cfe9af988a1888ffde8481e1bb3
BLAKE2b-256 70426a8fc4a70ad27a7d8500c618d83f781c76d6857f647c981dfe65b0a33525

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 82a94a904786a4e7d0f8f37acc24e3fc132d07d76145477e7b254da49d302b73
MD5 464c5073d77ebe219cf7e5bb24df282f
BLAKE2b-256 1713491b93dbe22d71b1cef99f6bf02d8872eb8dd877801369d1413b92df6051

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 122b36889bd796e59f0b686e28b914950b1e121faba63a5e9588567a79ec3271
MD5 00c91968c6bda7a2bff84704657661d2
BLAKE2b-256 fc6b0d2a74e5b8b81dd64fc0f7fc0c29c8fbfda9c932a61b880554bbc1131f53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e2a492ca884a4151eaa50a774eb9f64b97273858f4939515557f5dc7f942f07d
MD5 5ac307d23e4a504ef009e178c5392e5a
BLAKE2b-256 c336c336d5230f17ee7e12197a3a75cc48b1357f6549c6dd16f8a29f51bbe002

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5270a87987e9cf93dadd05c943c2e3ed9ef6bb1c569e7823350068a9c5208436
MD5 a2cff73471374643fe06bfc68fe3ccc9
BLAKE2b-256 f07435b9dfef7a560488ec20d86ae0a66b3982dd5118765b4d50e6932043c15b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b8a3350c9556844c23b1bd4135e16f8ec51c2773f0bda4154657cdff5ab124a2
MD5 8192fc77d46ce90ae3a929ac4483347a
BLAKE2b-256 f41f6e7c4adf8bf5882f241856ca65383c4f6825000832e303bce1d474eaf11d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5eef1d41e2e3d9620f8c219f2381e88eab5cf1d1804c1503997b965e39ff243d
MD5 2bc0ade3d9cee39daf206378fed15602
BLAKE2b-256 9027153f98013a426f10ed8b096f53868d274e6085418598b8ed255b9c7802d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a4fa71ad5201cf83a53c7e4bcaa02cee1bde3696baa1c3c2e10ffba06371c4a2
MD5 1c74abaa2b6c2e0c087ac80f7e2a6b75
BLAKE2b-256 715203bf6afbdea2a3c692c0385269185a08f2030351ac0d8bdb805e3a804a27

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.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.2.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.2.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c5346892a0ee307ca1737e8172cd653f7d4fb3a6ba80c7d7087226b14cee6419
MD5 3ab4d607ada0f59768bc9bfa89fbb396
BLAKE2b-256 f81afce2e59eda92649baaa011d2584a13d91e68f3defb14c0773c51cd6fe7a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1904a28c21df51e983a24d966e875397e538b806b08c9f6e5244da42a3dcac5a
MD5 33482721094480175b21bdb3093e378c
BLAKE2b-256 98d9c5e6e69612742cbadd71463adade75674cc7a2fc7705d6d001b1fe93da4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 895dd7b32385b970d1c7894edb9114a30d021342420b05df5901152f9a5ea618
MD5 ee0d9f94a7aa23030fd0c8f8da75eab4
BLAKE2b-256 bd88cb8888a78b56d0b2d4d11aabdd5be68a6ad02a23ed84f03a0733d5ed72e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 658c1d4fee21aa76caf4eb6f6bc3c2ecad43260ef8ecdf9f62a83a962722714e
MD5 a1ebf798f7a8575d315cc55743e8bb3a
BLAKE2b-256 680dbb04f10d4c5100217a4e7eb54a5394d039561a3c5b85d40738a00bf142c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a2d60413357eb1129f91416c115512c0b1dcd92f1f3d499ce3fe78953ad5bc5a
MD5 68e18728a0cf198cde9f3619aeaf2785
BLAKE2b-256 e161229286537e4d00a9702819075a19dd48beaabc55c9fc6274397fd748bc2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 0225b6cd5e7668f228d71bd531875f2bee0c6ec29104a0c56d3f79702decd417
MD5 09870ac64f25a186a8801a34c4ef98d9
BLAKE2b-256 46413db6b5ddebf6b92aba65fba634f7d8cde3377ddc3ebb1c2c773039a1d19a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68a465e1775d0764f70c3923092bfd9b506cdf5d9c672ee0f6617de90dd59120
MD5 002b545b1097fcce5bcabeeac71df9ac
BLAKE2b-256 49013ca2ba855a2aadb1d5b1c1b122ffd5586f194d9b7a4f9d929cfd3ef8244a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 61cb419604289f2963754bdb2b1626ee73cdb7e3e1ebcd03a4f5aaf92c9bcc72
MD5 283f0c1bc97fe3bb46638c28ff607be4
BLAKE2b-256 1cba4a067c829006a6e9fbcf802db0b4d42ec502be460bfceef3300dc2abe978

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.2.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 5160eef7b9d3900e2e97a32d3626ab28e684999aa7c037f55d6211a1b97e067e
MD5 2f87f6a8a80861aa7e3ee108baac0433
BLAKE2b-256 d8523b47059a39920140342dc2e5c8b58ee4ec3f2619e5c3170e474e9a647077

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.2.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7c616c45f4e420551a57cb7d46443ffae6019719238126df198936779712f378
MD5 85807a43d2dddaeed05982fb4b414c3d
BLAKE2b-256 9bc57f6f2b7b5e53dd2ae9ca1aefa151aececc4f22d5ea4bbbf3d144fd0009d4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.2.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 099178be0d25b471bee493a6067706d3477bffbe40618ddbf29e59f95536fa07
MD5 0359a7f2ce1b0b8e22c740013364e54b
BLAKE2b-256 d54c5ed1b1e43b30fc29ec88a669df97233c23694b7ed624c4de0585291e6138

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e97787930328add0f1c657369aa0613ffec87ca2788a97fedd258657851c6398
MD5 5746b4b9b4c9b2bc9ffd46663a8184f0
BLAKE2b-256 2c87cc3d694cb9340370a06e679ba8c1a03d81aa6eb7f38b964be8702874044e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e4de53d7f41577056cda7fb6c56f97db250b5c9bb50f3acd8db452b37e2ac1bf
MD5 fcfb6af3210c62d0859f0c93fed1ced8
BLAKE2b-256 72ec35b453b22dfaef9ccf693049d4f72576c4444fb3a2e8e0a27a78af99d4ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 58c5e4c93bc007719c4fd00a81cc633ef22ab8af2ae8ee1eba4d8187f41e2c71
MD5 dc4f1c3e2a29bef7f0ba2b0ed786738b
BLAKE2b-256 ea4ada53b7d14e1d28d05817ba82d1215b62f92348195a327fca3ce457e047c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 33d359e520b781c3d1cddfa0742f45dfe154cedd0d4b7f5d8eb22ee42c9c0471
MD5 e06461d040c33a8d259b3e1733b450a0
BLAKE2b-256 264e6d476a23b9dec9812d4e9fcf1202ad970c33eb01affcdc323eca9c97534a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 50dd586794e12f789a051cb0db675eb482605010e2aa048f53191ce4a87ca56d
MD5 c7fd3cf12d38d5821b319889bc1a3671
BLAKE2b-256 b5acf0ffc65817ce9d4e10e098d1d633f8b92619a8e01314a53a65c1be07782e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e23ba4f53e79e0bd3afda565046711585521e6c2a87da94952ccd64a9b5f12c1
MD5 bf44f3717666c29fd87d08599a7b9a21
BLAKE2b-256 301b3af738ce1dab205c1d9fe5efbe94f40440f33127e37ea1d9d4c1b919c7e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 69bd2ba649b4d1058093cca4b6b00ca9465afd8dac9388baf748b3f1b7f20145
MD5 5046f45ba793c7c259b87a067a54adb3
BLAKE2b-256 54995567b9a0011a1a8ce8e4fa12d51289d606afc116544a44d1ab09a3e77d88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c549b707ca47c228a798d45629536bf6d42b1b61279b64acc6ae24f5f397c53f
MD5 1fa95ca0d344ec72c67fa08eeab71709
BLAKE2b-256 baf30c31600f347de9d4fb8032142984d75631df58745bc87c307c83739779f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.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.2.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.2.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bd4facec4e1ab3023611facca296ac65fc39c1fcb9a63dcba571bdb3f945c128
MD5 605800276bc3805bcec9fdcd2d496261
BLAKE2b-256 289560895ded7118a58d84395be4a13db461089b707c718e68da9336c54156bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 409d6f516f7b6bd09efa406bfafce866f4a7d1a8c1b38bf3373f808492ea0ebe
MD5 f1081de410cd8a7007cfa22c921508bd
BLAKE2b-256 fbb99ab670d2fbb39038c49a9ed273ee41a8e96f8a8179543cea9588eef0cb8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1c6414f2079e39d8b612f910ac8f8578d2d39845cb408cad5db6a5cc59880e8e
MD5 f3ac983a6e6a7b987ed65e4d11e9c889
BLAKE2b-256 8172a99556f7ec65eeb4e67e5c61e83f31aeab0c484db22d14a3d76f4ad41203

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8344dea24d3a327162f2f98058117e984d55c04df6a0f3c2ea77eef5efe30b76
MD5 708d2fbf8f2003dbb70e9b910bd82bff
BLAKE2b-256 ab530f637c5f0331449ebd76633710e3026929bc3a624aded9ae322eaba1a918

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca5d02237a8117adf5d6d3d9dcc13634de31556fd562ecfe1e55cb0b6dcfd03d
MD5 3afb6ae9a15df82b03077deb9e273d1a
BLAKE2b-256 3e1d54008fc51d76b52e65aae8e48da295e6a1341e7aa366db6ac66cf8c7ba70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ed1affa868b29f10d323c106e2e8ed4c8e409656393a74ba3ea214a559e23802
MD5 854e6816c4f8683cafaa00b3ded434cb
BLAKE2b-256 90cf1402feaaa9dbb907897fa30853f7c92c365d8f875f412558bfae35f3dd1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe48ffbde765c0e0a2db2c8dd713061cdb131974ba0289367af8dbac41b0be63
MD5 37924cde3af1dc1940026502f3e65d6e
BLAKE2b-256 7d133d380acc57047f171df6961b6fe9441a64ee78a09c9951a9c528dd79be79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 88701ae70cacb8ef3f0fa95417b184d996442fe271fdfe0d0be6237d8ecfb8bb
MD5 4699d0ac62efdd54c70e1e18fb902ca8
BLAKE2b-256 b8866605ab4aee9e3b890b1c5bbee9823565d35138d76cbed756fded3c35b887

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.2.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 f6fc5128284e772764b809e301468f7a6fd486e77a9f3eb9674c7e62d8468cb7
MD5 f44d32adbc1a0665e328420663bf11b5
BLAKE2b-256 272fa8162b0f30fa234a17e734e73c6476628a0d31bc5705a0ef01e8ed8aa58c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.2.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 13d33fcac598630e61fe219b40ca9d11f2c841b69567b3878d25c89d25d4353e
MD5 cc20de65f92482d9b8b4f0c2e17d35ba
BLAKE2b-256 9e5c9a459e695310e8335c2dceafe68df2a8c33f4a341a0bd5161518bb0662d4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.2.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b46c56f3552d9e59fc1b77f61c1ac5555de5824e081fa755e435bba2769cb4f0
MD5 2833415df6ac272cb45424a7d3247120
BLAKE2b-256 978bd0ef5f779371421c7c7435cf6714871c13d244598a008c8883258ccd0333

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5624e60aa68ed15aaa752beb176233cc83e1f36e084acc6904cb184d7b3420b4
MD5 c4c04585681ceea26810e26807300f36
BLAKE2b-256 56de99ad5692d42ed6b15f82ca57c4c4eb29f4e7d829969d114053bb1f7e4a4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 583d8afccaca4716f6f096b6752279528784a3290ba542268ff09fad67835cac
MD5 3014d4e2045a28aacadba00d6c2c09c5
BLAKE2b-256 9d52d1653e5c46745f21a3c66a74c1bb26e2d63225f4af0777837803810e4376

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 fedb3679be7d4cc1a01538f98e577fe133f7affb78763134fdfe8c8fa681cb48
MD5 1c45fd1a7f14bd08447165537f648305
BLAKE2b-256 339b4fabf9f5b6b81929c82e2c0ec452561a2a184ec449ee5a04b36e48efb337

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d4e5ee1a06a6fb10cb0582d700dcb9cdc9ef129dc23b7e007e33b47517cc362e
MD5 494866dbf21c74a481898b0acec9eca9
BLAKE2b-256 e0b9c4a6007c894b4b74af013433d5eddb3f206cfef9fe8454baa71fdf81240a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 37f0d54b2789ec7016cb6dc6a28cbc9940f33040d797c55639390832a578873f
MD5 ace2db0c56183a846e51c2fd33870559
BLAKE2b-256 549801a4eb57b5948db4e7359af509db602f81855fd9141f4cbde4cfd0ca4358

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0bd32a06d3c5ca341bed6b62811a6926a39f57409ca546f4830cd7a6f781289d
MD5 4302745f82e34a146c900190210a8a66
BLAKE2b-256 7974e9bf4e8a50abe567919aa6319edbf99a4670da65e17876642f21eefe2483

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1021259e841aca09935d932a90e7c685184cc83769e16c8ab8d24c184b6efb1e
MD5 eada168fd4eb0970cee087db110fef82
BLAKE2b-256 5820c12f8fc565f2e2a7945b11f89454e4d3cd685499077cbb6eaac23ad0ac26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c9c68f48a1df928e8e704389d85abec46e5472ff0a607aca97def58e41f3f4c2
MD5 e0c882bb3606b9a43b1721f3584e39cd
BLAKE2b-256 3f04e5ae52119cf5d34201f8a756b5d7f7ceabf2764f4a234911753ab3c8011c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.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.2.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.2.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7646ad7b081fc34e39e80d9b8a17a3983e242939faeed2da4fcd4f59b61f192d
MD5 cd074e20f0e4dc85f3c067e262ba9c31
BLAKE2b-256 868885825727d8b0884ad2addb267b79ee98fe3659896284b553d388439b3e02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d1b2c62dea4e91e486ded972870ba3f4c6381f577608a8edb966aaa991612515
MD5 40aec3f89259f284eb1295e6b726a43e
BLAKE2b-256 b4d07b79d041b25e689a5a410f52f750375d63e309bccc9db9821d7503b78d36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 75e93569be8397f571ddcfdde4fbbb630bbc76639c19c9e0ee125cff04e43784
MD5 f88a0bb4632714b932d1ddf4d35d80ce
BLAKE2b-256 369cecbb5332d82481f10af4ad241a563db2be7ce5056d4f693404d6d94b7085

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 29f97925973045a00942cdb733de8e513c96e6c5a5a00a618ddaca93e1a69871
MD5 2c55b07d686ffe69c35a6867552afb12
BLAKE2b-256 c9030e41ea995e56d71a0bde9d36711116d75ad678059cd1e17e61e665a2033d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 db7d813649dd0edd0f2c8b85d28e850eb438bb94f8ce792f1fd2b97940524476
MD5 1db8b7433907b5ea2c3848209c746489
BLAKE2b-256 e4a83b8cbe35a1334540c261853b3930d829f185078b330f5e3d10e5fb4659a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 504818a389a42d470e4a2ef58beb285aefb72964304d83693af129d877a7cc50
MD5 c67dccc4baf4d02561c94a583ecf6c74
BLAKE2b-256 dc6b77a08803120748c54c53a6890ae4bbac7d941536206ca0a9376e8d263d9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce2cd769082d055620fae487bc25f82e22e433d5ba3ab09c970ac2e9472d00a7
MD5 870b1502ce6ee181498271a5de559202
BLAKE2b-256 1cd4fa8b1f033a1409aa4a23c27dc64ab8db477e5f24de61894f203d1d681c0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 799f9c250af503d341e6eb765badb809aa42847cffc5caa6bdeb2a83e758f547
MD5 ffaac0cbf82d0994ee14e7c559c535a2
BLAKE2b-256 5d2e68bf59e3120334d39c05237d909791c91a559bd4689e407776aa121706f8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.2.3-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 74d916d85922761d557d5da0b3addfdcea239d747bb9268a1ca22ece206a91dc
MD5 a79d6794e72f665c9b8edab5c69a15b5
BLAKE2b-256 8038f696dea90d51fc25c6fc220a0189e8b7852369f9e5866f21b1a442633777

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 16.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bd323b99c2170216c64509bc53e6926f9364170dd8de82d49da1645628cab992
MD5 3dc0d2b60a725c02219b4e1bde6db066
BLAKE2b-256 fc9b2442524e795f8e0eb0a0365b0f0491ae976e5897947993ba3bf9191016fc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 14.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ae5b53427101b36f0d3b035f1cb0659fad624ae595bd93c2beaa4ffbc53a8559
MD5 578fd52f2fab025e276af15a4f284b07
BLAKE2b-256 1235191937c0ead0d2ed0088e9d1f9ae80a500f49a56ab93d5f6e66ab61fcfc9

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.2.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc29a18facdbf73626929d1ed4d820de40b39926503c7cd05871cd5c56a86d57
MD5 aaa3ef24e16e5ce020131ae9667a9a47
BLAKE2b-256 7ffb962a0b83f7837ebbe9627617c7e91bd164497119584c0b334b542bbabf32

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.2.3-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0686f6b71e8bff96a84bef4d30f7cdc2a7bfac048797da84d55a37b384f50812
MD5 0180710c68ae5edb75a62459a168c7ed
BLAKE2b-256 aed34648bbb3e0d8b3d7038e7254e56b60bedfa514d8f08a15a5f1332e5f3049

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1789aa3256fd1095739de1b7239c9c6dcc170a7e394fa62b3ba93c03d39384e8
MD5 03c17df108005b3817845bb20194a76e
BLAKE2b-256 df0074b4a78549ec8fc8ce2fc01d5dbbf2d6cbf8f2c741c724bb2cd9bdae2293

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a7b5de2e6ffabd95bd8e27a54ae5daa14580114a2af7146d73b7a88b4c25cb5f
MD5 c59b81ac9c7c8843df2aaa8381818000
BLAKE2b-256 62a0cc923acfbcc66621dc0fe5938e298165a39cb3c105ce802a02fe961f5b05

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.2.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a19f259a0c9cf85ead0fc15679278e11883e8a938c65c5cf9429086678361bfc
MD5 b3f78efb640dcd76e6ddcbf0367bd86d
BLAKE2b-256 ee5e6f4b0fb5b3149f5c852f1eae7ea77f8b6e740f248b14d7fb1f89c32066bd

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.2.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 897337edc8886b5925b5e683646d6625b886abf77ea83146928ce63d64a3fe38
MD5 26e115c05b27403c594afccacc6a596b
BLAKE2b-256 41d2d7ccd29689997c8987ec32ce7365498ef9dc2bf6495d89dd9e010c0b3eac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f3fedc34a6011c7088fcdd114f2db19065ae775fd95dcfbfce1c17ecf02b02b9
MD5 ad3e46e917eb63b7dd7a42f8f020039d
BLAKE2b-256 90eb62d7e2216c730cead5079ba9f7b4d484df66baeb04e74994f1268eeb1af4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a1db9d45be46e91852a4c5774690a292b2cecb80e541801805794c02592c4a62
MD5 edc3404c63ffbc4f407e67876fffa962
BLAKE2b-256 99181ec489f452bd77946572e5009a33c1048eb230bec39815a02be1fee91f6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.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.2.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.2.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eb58b2a0695dd0977a72ddef8418a04c1243647d299bfc16e688345e603bfdc4
MD5 9de77d924bbd1c9ae1ffeffc793692a0
BLAKE2b-256 cfd8e1adf9697882a073c7cf31af5fa96c4737e1f4e3bacf18d4cdbb3aebc0f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 fd9c520717c9f91702bfeaaa015fa7a8d3bf0f09b286d67e79663c1f576628b6
MD5 69f9f3e464aa1ad906247c68d128a2af
BLAKE2b-256 26494f80f348c6c13e03875bfee7daf1efc665993554d85b993558782bb03524

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 bfa7f0f7593a04446e39f1a25af0b905a979083ad1f2012af6ba17993883e372
MD5 acc196f664e1a100e5d0598417671a50
BLAKE2b-256 293ddf6d65514ef4b29ea0980999be3b6ec02636a78f49522b6345baa84c92a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ea32497b8b09962a18cd14e7e7ec93e8993e69eb5edddbcf66e5433f7727c719
MD5 1403f1baac31625fb651f86cf11f72c2
BLAKE2b-256 deed4a511484947c57c7e5b061c4318977ef5e0b8d686b8d8f5ca19bc2c37503

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b65577398a9abeb1d80e516bf0cfdbeb62449f9cdc9225b485bf4b549fa35805
MD5 4a7caffda59649e215c74557a990a041
BLAKE2b-256 9415baa33115ea57fc3c00cbeaedd2a1dc2df13ce1d9b9d9544d0e9866eafc3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 76b32c505af5bddcd6f309ca1b7b3dfd7d6b04b3c65dae8910d2bf2b58665031
MD5 e0f99cb70fd844c89a0f2ff28fae192a
BLAKE2b-256 ca3107ea169adbe3b6f418cf3b2084981021fadb48c9dad6695527e6afb29a44

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.3-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 13.8 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.2.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4f04271387f105caf807b77f896b66dfb1906bc1c51dd971b6530b82369ae6e
MD5 61a051abe36d72912ffd3e694f92bc59
BLAKE2b-256 45ec67a98354d172a84df72afcce70a5218e3ace6dfc9bf31e173ce4638000dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 74483065fa95b76cd4bbd31df5fa15f32bd6a7ab3320dfac37653378c7cc5ce7
MD5 b2cb2e36e4b5fcc1975f4aae2d8ff782
BLAKE2b-256 dba1276336657f95f0ba93b79dafe7c91ba0b6b36dc7aecfd02a6d6427a494d3

See more details on using hashes here.

Provenance

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

5.3.3

214 files

5.3.2

170 files

5.3.1

170 files

5.3.0

170 files

This release

5.2.3 This release

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