Skip to main content

xxtea is a simple block cipher

Project description

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

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

In this implementation, the conversions between bytes and array are taken care of by longs2bytes and bytes2longs. 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

Project details


Download files

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

Source Distribution

xxtea-5.3.1.tar.gz (22.3 kB view details)

Uploaded Source

Built Distributions

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

xxtea-5.3.1-pp311-pypy311_pp73-win_amd64.whl (15.8 kB view details)

Uploaded PyPyWindows x86-64

xxtea-5.3.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (15.2 kB view details)

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

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

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

xxtea-5.3.1-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (15.4 kB view details)

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

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

xxtea-5.3.1-pp310-pypy310_pp73-win_amd64.whl (16.1 kB view details)

Uploaded PyPyWindows x86-64

xxtea-5.3.1-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (15.4 kB view details)

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

xxtea-5.3.1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (16.6 kB view details)

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

xxtea-5.3.1-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (15.7 kB view details)

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

xxtea-5.3.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (13.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.3.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (12.6 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-5.3.1-pp39-pypy39_pp73-win_amd64.whl (16.1 kB view details)

Uploaded PyPyWindows x86-64

xxtea-5.3.1-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (15.4 kB view details)

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

xxtea-5.3.1-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (16.6 kB view details)

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

xxtea-5.3.1-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (15.7 kB view details)

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

xxtea-5.3.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (13.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.3.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (12.6 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded Windows x86-64graalpy312

xxtea-5.3.1-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.7 kB view details)

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

xxtea-5.3.1-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (14.8 kB view details)

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

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

Uploaded graalpy312macOS 11.0+ ARM64

xxtea-5.3.1-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl (13.2 kB view details)

Uploaded graalpy312macOS 10.13+ x86-64

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

Uploaded CPython 3.14tWindows ARM64

xxtea-5.3.1-cp314-cp314t-win_amd64.whl (16.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

xxtea-5.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl (59.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxtea-5.3.1-cp314-cp314t-musllinux_1_2_s390x.whl (64.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxtea-5.3.1-cp314-cp314t-musllinux_1_2_ppc64le.whl (63.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxtea-5.3.1-cp314-cp314t-musllinux_1_2_i686.whl (58.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxtea-5.3.1-cp314-cp314t-musllinux_1_2_armv7l.whl (59.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxtea-5.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl (58.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

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

xxtea-5.3.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (60.4 kB view details)

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

xxtea-5.3.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (69.4 kB view details)

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

xxtea-5.3.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (65.3 kB view details)

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

xxtea-5.3.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (55.6 kB view details)

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

xxtea-5.3.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (60.7 kB view details)

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

xxtea-5.3.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (56.7 kB view details)

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

xxtea-5.3.1-cp314-cp314t-macosx_11_0_arm64.whl (13.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

xxtea-5.3.1-cp314-cp314-win_arm64.whl (14.7 kB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

xxtea-5.3.1-cp314-cp314-win32.whl (14.7 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

xxtea-5.3.1-cp314-cp314-musllinux_1_2_x86_64.whl (55.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxtea-5.3.1-cp314-cp314-musllinux_1_2_s390x.whl (60.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxtea-5.3.1-cp314-cp314-musllinux_1_2_riscv64.whl (49.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxtea-5.3.1-cp314-cp314-musllinux_1_2_ppc64le.whl (59.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxtea-5.3.1-cp314-cp314-musllinux_1_2_i686.whl (54.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xxtea-5.3.1-cp314-cp314-musllinux_1_2_armv7l.whl (55.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxtea-5.3.1-cp314-cp314-musllinux_1_2_aarch64.whl (53.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxtea-5.3.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (51.0 kB view details)

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

xxtea-5.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (56.1 kB view details)

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

xxtea-5.3.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (64.5 kB view details)

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

xxtea-5.3.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (61.4 kB view details)

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

xxtea-5.3.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (51.0 kB view details)

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

xxtea-5.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (55.9 kB view details)

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

xxtea-5.3.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (52.9 kB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

xxtea-5.3.1-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.3.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (13.3 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

xxtea-5.3.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl (12.9 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxtea-5.3.1-cp314-cp314-android_24_x86_64.whl (14.6 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

xxtea-5.3.1-cp314-cp314-android_24_arm64_v8a.whl (14.3 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

xxtea-5.3.1-cp313-cp313-win32.whl (14.4 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

xxtea-5.3.1-cp313-cp313-musllinux_1_2_x86_64.whl (54.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxtea-5.3.1-cp313-cp313-musllinux_1_2_s390x.whl (60.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxtea-5.3.1-cp313-cp313-musllinux_1_2_riscv64.whl (49.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxtea-5.3.1-cp313-cp313-musllinux_1_2_ppc64le.whl (58.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxtea-5.3.1-cp313-cp313-musllinux_1_2_i686.whl (54.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxtea-5.3.1-cp313-cp313-musllinux_1_2_armv7l.whl (55.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxtea-5.3.1-cp313-cp313-musllinux_1_2_aarch64.whl (53.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxtea-5.3.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (50.9 kB view details)

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

xxtea-5.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (55.9 kB view details)

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

xxtea-5.3.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (64.5 kB view details)

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

xxtea-5.3.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (61.2 kB view details)

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

xxtea-5.3.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (50.9 kB view details)

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

xxtea-5.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (55.7 kB view details)

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

xxtea-5.3.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (52.6 kB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

xxtea-5.3.1-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.3.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (13.2 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxtea-5.3.1-cp313-cp313-android_24_x86_64.whl (14.6 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.13

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

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

xxtea-5.3.1-cp312-cp312-win32.whl (14.4 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12PyEmscripten 2024.0 wasm32

xxtea-5.3.1-cp312-cp312-musllinux_1_2_x86_64.whl (54.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xxtea-5.3.1-cp312-cp312-musllinux_1_2_s390x.whl (60.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxtea-5.3.1-cp312-cp312-musllinux_1_2_riscv64.whl (49.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxtea-5.3.1-cp312-cp312-musllinux_1_2_ppc64le.whl (58.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxtea-5.3.1-cp312-cp312-musllinux_1_2_i686.whl (54.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxtea-5.3.1-cp312-cp312-musllinux_1_2_armv7l.whl (55.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxtea-5.3.1-cp312-cp312-musllinux_1_2_aarch64.whl (53.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxtea-5.3.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (50.8 kB view details)

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

xxtea-5.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (55.8 kB view details)

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

xxtea-5.3.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (64.4 kB view details)

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

xxtea-5.3.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (61.1 kB view details)

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

xxtea-5.3.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (51.1 kB view details)

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

xxtea-5.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (55.6 kB view details)

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

xxtea-5.3.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (52.5 kB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

xxtea-5.3.1-cp311-cp311-win_arm64.whl (14.3 kB view details)

Uploaded CPython 3.11Windows ARM64

xxtea-5.3.1-cp311-cp311-win_amd64.whl (15.7 kB view details)

Uploaded CPython 3.11Windows x86-64

xxtea-5.3.1-cp311-cp311-win32.whl (14.3 kB view details)

Uploaded CPython 3.11Windows x86

xxtea-5.3.1-cp311-cp311-musllinux_1_2_x86_64.whl (54.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxtea-5.3.1-cp311-cp311-musllinux_1_2_s390x.whl (59.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxtea-5.3.1-cp311-cp311-musllinux_1_2_riscv64.whl (49.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxtea-5.3.1-cp311-cp311-musllinux_1_2_ppc64le.whl (58.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxtea-5.3.1-cp311-cp311-musllinux_1_2_i686.whl (53.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxtea-5.3.1-cp311-cp311-musllinux_1_2_armv7l.whl (55.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxtea-5.3.1-cp311-cp311-musllinux_1_2_aarch64.whl (52.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxtea-5.3.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (50.3 kB view details)

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

xxtea-5.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (55.3 kB view details)

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

xxtea-5.3.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (63.8 kB view details)

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

xxtea-5.3.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (60.3 kB view details)

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

xxtea-5.3.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (50.5 kB view details)

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

xxtea-5.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (54.8 kB view details)

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

xxtea-5.3.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (52.0 kB view details)

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

xxtea-5.3.1-cp311-cp311-macosx_11_0_arm64.whl (13.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

xxtea-5.3.1-cp310-cp310-win_amd64.whl (15.9 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

xxtea-5.3.1-cp310-cp310-musllinux_1_2_x86_64.whl (55.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxtea-5.3.1-cp310-cp310-musllinux_1_2_s390x.whl (60.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxtea-5.3.1-cp310-cp310-musllinux_1_2_riscv64.whl (49.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxtea-5.3.1-cp310-cp310-musllinux_1_2_ppc64le.whl (59.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxtea-5.3.1-cp310-cp310-musllinux_1_2_i686.whl (54.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xxtea-5.3.1-cp310-cp310-musllinux_1_2_armv7l.whl (56.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxtea-5.3.1-cp310-cp310-musllinux_1_2_aarch64.whl (53.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxtea-5.3.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (51.1 kB view details)

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

xxtea-5.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (56.3 kB view details)

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

xxtea-5.3.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (64.9 kB view details)

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

xxtea-5.3.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (61.4 kB view details)

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

xxtea-5.3.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (52.0 kB view details)

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

xxtea-5.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (55.6 kB view details)

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

xxtea-5.3.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (52.6 kB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

xxtea-5.3.1-cp39-cp39-win_amd64.whl (15.9 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

xxtea-5.3.1-cp39-cp39-musllinux_1_2_x86_64.whl (55.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxtea-5.3.1-cp39-cp39-musllinux_1_2_s390x.whl (60.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxtea-5.3.1-cp39-cp39-musllinux_1_2_riscv64.whl (49.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxtea-5.3.1-cp39-cp39-musllinux_1_2_ppc64le.whl (58.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxtea-5.3.1-cp39-cp39-musllinux_1_2_i686.whl (54.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxtea-5.3.1-cp39-cp39-musllinux_1_2_armv7l.whl (55.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxtea-5.3.1-cp39-cp39-musllinux_1_2_aarch64.whl (53.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxtea-5.3.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (50.9 kB view details)

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

xxtea-5.3.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (56.1 kB view details)

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

xxtea-5.3.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (64.7 kB view details)

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

xxtea-5.3.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (61.2 kB view details)

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

xxtea-5.3.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (51.8 kB view details)

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

xxtea-5.3.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (55.4 kB view details)

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

xxtea-5.3.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (52.4 kB view details)

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

xxtea-5.3.1-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.3.1.tar.gz.

File metadata

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

File hashes

Hashes for xxtea-5.3.1.tar.gz
Algorithm Hash digest
SHA256 7936c906a09b4775bfa3f5efa87e4a057af6bfcc9b065177aa49a4b8f97ed9de
MD5 50b2dce44d4beb4142702d077d0e88fa
BLAKE2b-256 e46ba652f1497cc3f1576c456ce81210b8bb486051ab461743e6c3ef77e9ffcf

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f9f777279cf482b30f654304d9f1d4983314228982e321a79c9ef41f77ab34b6
MD5 dd3dd88995f7447af41064c92137d3f5
BLAKE2b-256 b9a53ad4e59a44bac27e9795d7c97f5746c99e805944f2a1eee84933c4b1caa6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4328d2ea0cfd464bbbd3ad7db711c4f37b9a01d8235c5c80ff3e49bf675140eb
MD5 b4f5dbbe368f47ed6ff00f737c606fb5
BLAKE2b-256 16271f55541e9b70a42d2ddb99202f3d22affcd982210fcca43836d4a9c2e5fa

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ad1dc46b8049a6e17b44979096f7c97fe877d8f08af53b16a626b9dbd25bd460
MD5 e3382761a345f11cbb35975b30018145
BLAKE2b-256 fddce6751e1efbb34ec81200fc34ebae4aca30f8e5e6564dd872c7cfca332e71

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 cf35c8a65b16161efc2e70c13ef43e4a547fccbb5572799efd1c562074de53fb
MD5 30868d8255eeee090335c54265905589
BLAKE2b-256 9ad48ee565d546024a04c036a9b181b5255c7b087d16beb337ea60605e7a77b7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3320e6f642318796c036a5795e39341055b9db75e8f54d04438aa32e7752deb4
MD5 01ab62290436f3f0d232ee4dd2bf956a
BLAKE2b-256 e1504aed63e6ea250dfeca444312c14060b55963e449bd1c329974629bcf4e4c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 267268f200b48095be29ecff1c60263a741c3da0e1579391b054f8c5dbe7fe49
MD5 32b840ca75f952b76045d14e34ba8f00
BLAKE2b-256 f0096eddf35cf40eb436a9a8be2ad031a0c353180fed28932347262a21ee817d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0f55794c8c8a8290ab247ee6abcae77aef131901db65828eeb49813b2f00bc7e
MD5 9f6fa0230a525c1e3f4632f0200b90e3
BLAKE2b-256 acbe4f581448298779605c50e87d69dce0bc5fe9fae6fc58609f3cd7de6cfc28

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 19c4e44fdc5a2674d604e7f1d87ade05ba0dc148d6a6a4b7fc281cb86b65381c
MD5 b0275a272fb858a6b12c6d60a8393747
BLAKE2b-256 14161da2d135ff9908f045dcfd91eed2718e97fc73c7023a2216c5e7c6bcc61d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 11dfd84433380c9f90959da7bd64d225c31cd6d447f9ea57939310074bd3bc6b
MD5 ba3e9f2b110e9108b023126f19ea8521
BLAKE2b-256 b7c3a11a155d9cfe8e15acdadd8eb784f93a889ef85e109d77dd25f463f81267

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9727dce4f0f7d3b9a19abfb519cb32c0f62f85c59d7282b4b9613b26ad2f0b6d
MD5 ce934cdd673e90be446e620b700cfcb5
BLAKE2b-256 66986232b6a11885fed153d1a277ecffcb750208bce2c2e642f6443276217bcb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5046bfb4f4b292a6a57732e9c6c677c47faa5a0540f96822e88b41e5c395714
MD5 1155b28b1f0d74c7385c8d7363d78dcd
BLAKE2b-256 d10cdef5079ab991b0e8a133776f9aa5ffe4610a232494a5dc9d771ff431e0c4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a0c35179714f3521352572076738bc0c0a304149a4b639b95d6d927958052e9a
MD5 c052039e71f4dbe986b876a13ff76476
BLAKE2b-256 cb41c8b666004b890f61fe0bf20ad6a7e4481bcce322dc171b63da5b5c604b00

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bd6bb57601b08f04ddf8d798b6e0787281f45209dbaf07772ad82f1558d8b0ed
MD5 3dd78c5037da3ce05a802204e4051ea8
BLAKE2b-256 5e8f8b3afe2235b8c4575f0e2b119268a5a390ac5a08781481a2dbaa5a25c14b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b2f8c0d04d26027c02e20c45ce6bb761b3886b681b87216277a1536e03c26289
MD5 05d1c54309250294781e7de5cf7d9cf1
BLAKE2b-256 0827f70279230bc6e3e2e4b445b0a208063fc0dc18b481422d3a1d0dc751bc0a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dd9fc200a5f615b460f908381fdcb42ea0f27bb447fc67ccdad812ee05b822c1
MD5 aa9703b93b3dec64edf70ad3b2b7bfe6
BLAKE2b-256 0209db28ce8e01e9fbbd1254d8bf5eec7587831c85870b57c357234f9f1b9822

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ee0f5cf098c4379c62736329c8a67c26a0638b4ff48aa463affbc1586bdf9fc6
MD5 06af376b355b40d11eb5b28e3e04fb7d
BLAKE2b-256 5a8ad9f9365cb1b2da356bc94b10d20139d6fbaa6a3d4866cf517d5a7216ff3f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44f47aab6961e4a4f955978de9d0041d8934577029c2b7b597925b547bfca90f
MD5 f918778fdf942eaff384a992d59a4cb0
BLAKE2b-256 da578422dc5bac07c83b3ccf7df87466e7524e92af3f5e2480ae52e75fbc38bc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 87b10632143e03dd57aa295c19e088bafbced2a00b2c412d8be6277bbba7c9e6
MD5 3e64bdb7e286df31a44373d81526b36c
BLAKE2b-256 0a2fce50ac6a9b156f55194fae7460d54f2e9c44f7cb443e7342e1be85e3e15b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 f5a336ad6477e07cccc417c6ebc72992b0c834e45a0418b3610b8fe744236c79
MD5 cdfdec2c1f96bea7b929a7ce931104d8
BLAKE2b-256 8a1f84c7b5432b05f7d05bffd0e5fea2419c0d111d1b1caee6afd2edc58809b6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7616c7bc0c6beaf5eaac4194f07d27ff15a1d8b11c82d11387f9d158ce34cde5
MD5 d4c16b470ab6ee05b748e1cea0afd04a
BLAKE2b-256 5d29b77e0bb2b1a88a2262d340adfe3d4d66a3815619eb8fa17f7cbd1a0cdbf6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 99dd7ebc38d0aed1ba9c4a8b60f115ad199ff5102bd885817543bd12f13c9083
MD5 0a3f1f5ed514b0613c070a66181963f1
BLAKE2b-256 83a3619364d78a9b6ef899d8836972683d91106c5c231b3347d1314c2b987ae6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d379aeed4b184181dbc5e90c7f39f76b58d0374149d061aa6d67f2f62bc25b5b
MD5 8b6375c6d66014829dac49ec1d8a92f8
BLAKE2b-256 ab8f22932faf13957425678012e7d336e031721d31415aa41297839f86977897

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 51fae521c83256d684baa7b93a8d347a2edb4cff806b08e00d119b722fe6d8db
MD5 a24f1f546605ca89a1197d7890204b5e
BLAKE2b-256 cb67536824dc3bc884a8f846dd6a041cedd939128c53e2f9a3143960eabf8c57

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.3.1-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.12

File hashes

Hashes for xxtea-5.3.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 7cad4f4a08ffbff2b42d660abc4e389461fb7d29d18cfdab1915ee7d3f1b56f0
MD5 e6a2d11fb65126b4225e0e026f0efe10
BLAKE2b-256 b20c349223f0a06625ee87134ab689863564cf150f0cd2aceb7cfdea5577274b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.3.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 38171f80594a133d0d6137f817ee2ed44155fd1e9b35b8ce5653dc15fbd7192a
MD5 bc37147c2fdea7794bd581a1d21a2f94
BLAKE2b-256 ad4c6bf874e3b11dc1d9883b4b784d82f9a5157c048fd4b17e22f4ce2102a2a5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.3.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 6e2e5edee5f05aed085ec41fc076fb562b61e4e8c6cd91daa64c975e7af80fe1
MD5 93f1d07f5646e423cbdfd1cd0c725aa8
BLAKE2b-256 2158cdeaa1b150daf1801d8eba30882a81b7504e6454d58a90ad06f52ce48afb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b730442575352fa2d345c8ae52192b8e83c4a241bae5ef160971676364e4675b
MD5 7384ccf7f73f98431b4c42443ce1d4f9
BLAKE2b-256 79642173fd3c911190029df2c41b4a435fc4f4f7465450c6b885c990c6e51796

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6fccd71535fc6f649c3141f8c63297cdaaa1ccd3ae7090bfebab47b21b76f6dd
MD5 f0a21d7a5abcd7d06e2f73096a561031
BLAKE2b-256 862bd39afd29533a9ada714d52c124e33db8c85cd1aa853a3d07d1eafef3d5b8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ca5bbc36dc6ac6e77a86a6e3458a17774725b5345607f1067d167fd6a87754ab
MD5 2f00e03b89e71b93427750e004078e86
BLAKE2b-256 ad3a191d64fe87bbcf71aa71509aa3171cd6b336a34b65108e355b08a451c1a4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 65fe3739414435bd0251c6882682eaf9851531e7b4f7a1390d53c1adafff3456
MD5 4cfc28d13de93b004ac213042b448a95
BLAKE2b-256 ddab05636ebec9156fcd59313ec08694faac8e891a83334ecaf18260a50fc159

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fed133d0b2a32c7fa11abbcc977d8631f76d6b9b4cc8b207d09581b56ae01ac4
MD5 a3c554bc34da3b4ead64011bc0de752b
BLAKE2b-256 3c9dd92a9a8d3c1b9f7bf938117dcbe93c74da4a90693337a568ba7bd5c5445e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e4724d56dc30fe037b6b08f045330011cf1eaa9b28e64c665110a2f226886fe2
MD5 db076e779805b87ad0e4fb716cc46156
BLAKE2b-256 3f653b16940d09113c0203f88d544e32ddde59a8f290d54ca1f03a8cb9429335

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b0614bd4a300e98d2ca0ca8e49b686ba8b88d6bc766ce639ee1b825989b9ab99
MD5 c4dce8cdc4ea44c7e6c7fcae3319f8ae
BLAKE2b-256 a42919a559d58d021fe22df43d4b072c7857d8696cf228dedfc0997ea4f85ed2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 903d51d1e64fd8f54d081e529008b2d8325f1f282c2508ba3b8a8e547edab60a
MD5 9d12118ef65a7d2b6543d072bf1f3ae0
BLAKE2b-256 d1645ad947a5afa5cad4150cd6378db1fad295c84ca6959dfaa2a1521a678a1f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 03376061e346882bbcb8ee3909a32e4dac23e973f39dbc1929c1c03b71c4a558
MD5 548a6367875a3a7b286d5d33b45f3c87
BLAKE2b-256 805ae1ce470ad4c722ec06a77f9b9fa68a64c4f59b3fa2988928ac4ff107ac25

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 40443fa795d8f87938443e252aeaf758972a8887b2bf6ecc9036e4f37842aec4
MD5 c93b2e0a7ba308c88ecbbed6eba3ea2b
BLAKE2b-256 f749f5c2f657528dcacd45da9860c4a95184e32833ebf36685689a9447bd2c2c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 09a749538abaa61ed52b5eff5b6cc0219da5dde3bdf2c688e5dc5568f9f3c8c8
MD5 905aa0ff0726a852fe5d885f32bd910b
BLAKE2b-256 3c43ba913ae60a3d0d3a07e4e3b377a81028b6f0be8602bd4c28158216c012e8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f6aac26f39233b5d538265fee7be3160fb8bbe3ba16e3decbef744e3f95b4538
MD5 53f601695fe4e3d8b2cab9f809dae751
BLAKE2b-256 64087900fd8133d2286de3638b257258b5321b827035c55a566fa7b2a60ead41

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca4ec96ea98ed2009d0959975654859f87a0f9336e4919db8d85722b51c32553
MD5 92e8c1ee3cf4567d368e51b11f5c8404
BLAKE2b-256 50ee25707b0e0389c426b9aed22414c1dc122bbef40ebca95a32d6e42289e363

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 98a225d48ea9374c66928ec53e5c902112ee4d72091468a15a7fd2ba75f4b1cf
MD5 4fca92f6b05aa9dc27e932b28c2fc2d0
BLAKE2b-256 af9dcdcc178d4afd699a6c9ccbdddf26dd1ab15c4babdea1f8cdc3ab522a16ba

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa192e5b85fd27e6334f7b3fd920d26a526ee40be23ef5017b3a60cda88dafef
MD5 c6c59fdc0374536fd24b78467225d09a
BLAKE2b-256 3ef1032232fd0b91c4a2544dbf29cf677b9117a2430c0a8fb0ac18265be7b21a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 df8825c35f7a1ab7d1d2f90c086820ae7cdc1b80c4614996e792260146982085
MD5 4ae10afa4aded211df4685ec18ee0880
BLAKE2b-256 29db6c226a225fd3debf99d0e4833e59dbcf9b48a2dfb02688fa00da92b2255d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.3.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 fe668ef9be5c60221b016181b46b9480b096ef10bca01b5dccb5e6ee9a108d24
MD5 33b8712d1dbe271fd1c93d73cf38887c
BLAKE2b-256 2890779a12a8be31da66460217d679a4f5803ad643c6460c4244d39cb2731470

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.3.1-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.12

File hashes

Hashes for xxtea-5.3.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d8c4c4d617d9b7029baf9a61ee89222f06b5fe184a13282a6db2b5439bb2fac1
MD5 8084962d45ac21ebb09671933a44b15b
BLAKE2b-256 323151a6f76d5f0fe32b702295f5451bb7dce3246b6e3f6c1587d4a8e221081e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.3.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2e9f9f9d6f149811c7380a32903ccb0310a4347ead88be67c31a6d7be57f1c8c
MD5 a985fafce2e60affae91d8be03ba7c7a
BLAKE2b-256 f1c40b1d358fd111d08a27191e00930c04cef6626f52620be5dec23a9c5c2ab8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 299da67f3d079c49fa78eaaf3abaf4cb2e53538f923955853c338857ccff0632
MD5 eaff95ec4d937dc87d9ac30c5f5d6bdc
BLAKE2b-256 5b1fee94cee83d2727d9456525b2027b167b5ac5b7db3cdb10f9e1dc0ef0d3b3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1924be7d83d0af167945b27d27c86463b99d45b3fb9c537393db54a4b1c05f47
MD5 713466c62843264ae1658ad3922548fc
BLAKE2b-256 c1b9b7341534e1d3d5e0ba093b40fa88e95e6dbdb4967f82c37e5e1e464c6830

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 de740af92d82e3aa9a28563d4881f3112fcc70d8ff2671c9cacc9bee48a3bc07
MD5 45e2cd2160cc6d60043d7c0be997581b
BLAKE2b-256 4f5dd5788280d58e560bcfcd9e2f68586294e6ca05232b367591e5a96f652b86

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 23a7cb3ef969211a5e46b784ae205538ca6b695153b7b58e4164e5ffe0b4954c
MD5 516f982e1c06a946e054d7cbe15ad2a9
BLAKE2b-256 f41bb810791c70a0369b7ab20c8599ccb8af3d53475b155c97ba9283a927837c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ea341a7af63680b651a2fb71f86702da358262ab1969ddce3d536d2183f26bfc
MD5 08a8011459d7e15e180355bcfa63c2d1
BLAKE2b-256 2f9582a69eeea536b596e1e989edf13425d788e62e29fe623aed0a32fef01a95

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c448a6c0df3298b0ef9c0de4891910e75dfd4b8805addd01c5dbff36f1ba0939
MD5 3ee37836200e88699f81f6062e92ef39
BLAKE2b-256 d14439b5d9873cb1c6b05805900923e6f95f489c480a37541d0ae2478b1ace1e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4d97da124950b0b554d6b62b93774dd2ca3beafedf16a1e4a3b1ff9a76229cee
MD5 0ad0fe1d4417657746d22150f12a418c
BLAKE2b-256 cd53537c6d08570016856dae70ecab943008cc0ebb6aebdbb2990a7dd2ebcb47

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8d85fda570cc8d2d3bea1c9ac91f0350370b0a99dd5ff0f986e4d2c86b0dd6e4
MD5 657fe80964a5f46e7b15c6b718bf0f3e
BLAKE2b-256 f86058a804f08693f6702446e6f4975c3f85a1964473254fbb3bff336ec7ca91

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4030e0f97adb34429336f70f7d79c58b41566c372122cd7b39667b8794a1eab0
MD5 d84c18f353936a07f6fac6b1df68e755
BLAKE2b-256 b7d312d28b3f96d3f2b8e0e92afa77ebdf6dd869c1f90f6b519c0fe4bdaf92ed

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e6cc6da82c4c2301f8fdd56d68c0e9abfc68692b0eb867e1c95009502ae6f39
MD5 5c1273a1c724183deae8b7f460b50536
BLAKE2b-256 64c44cdad34a8738be9f6d32554c77c4ac2cc1373384d8cecb9685d4629f8b04

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 20d5e3e741e0d230374d8fff65746f37ecc933957e1e3d59bf266f6fbf6e74c1
MD5 19bd223387d87781d92e42154b9d1b93
BLAKE2b-256 07d3cbb5f62e191295603c18041dc52098e99bd8f9f190ee4dea377997409a2b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0515e8c2c670051b2b6729812292e661b7317eed51cee909250f5a6a9281e310
MD5 fc672ab054098f3469f4c4b7f8d7593a
BLAKE2b-256 0c532554af0bc75f215665a75967476f594428d03c938c443220d328ade3eff5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2db5075141651692557abc7886b316f9fcf78d443af707fdd96cd6e3334c031e
MD5 84777f57d2d104b4f167419a46aa42cb
BLAKE2b-256 274fe92638e79f74ae87e58a70e3377e9e06f9e52be84710953b70b14f4395f9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 85b98cbe304d30be56d19d18a98a5998eba046c91955e92bb98443a29e6fe608
MD5 70de2e4bd2b6a6cbb910e8c4e6cff206
BLAKE2b-256 6e8566cb8031c4ed564057d048034d0eed0da519e694999775bafb286041ae9a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 287ec44b71b86d625c4092e73ff9c64b18f9ce2fd1e5b315d763990698416036
MD5 002981966b2b965d837e124fbb1b47bb
BLAKE2b-256 6f23ca670cf7e867d9e9b45069146498dcdbeff8cc8163e677ffc67d8f668e84

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49c9281e546b5e299a9593708aca82c5941ec1f59949193ad1acfbf6c54f16f3
MD5 94ff5bb0c8db2a57c9b606e2efd39ef6
BLAKE2b-256 fa7607fe107b7455389fdbae685a06bfaaf38d4b2fd8b25530ca6843dfbe9bff

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f0563291a0c6a34a6f84f8ca1a8abf385025f4a7eee2fc337281eee4b596392e
MD5 c3fd9a808d6499e370a19d87411e5643
BLAKE2b-256 8c87fca940ab18019b832c671c65c395bf5929f02d8e1ee09ace8b3b5cd2d259

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 9193cbd50872c675225473dd531e5cf41ea402772a83f1299bd96be50148f8ec
MD5 f10841e72cfc7988252aa9f077b3d28c
BLAKE2b-256 4d4d87b27b91536a8bd36698b3f60cf8b22d48e1be2aa1cea91ee4d97890ab47

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 c62cbd624f9d957c8b47e094de9f9db4a207b564104e256a602f06e8b3cf82c8
MD5 338c308ce7d9ce295029b0d966f20501
BLAKE2b-256 94feb247a242206199ee06b2ca000430567634e072197e6d420af3a7c0dd879e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 7039353fd6ef5a2442fd0bc9d98cf5b7e72514361558b1828c34997fbbf30f11
MD5 d2f85a218a29873e6a0dee0e8031409f
BLAKE2b-256 d50a20fb4730ea57c271ea341f391430449c1463df19f54912c028be6b8bfd03

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.3.1-cp314-cp314-android_24_x86_64.whl
  • Upload date:
  • Size: 14.6 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.12

File hashes

Hashes for xxtea-5.3.1-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 4c5e4192f1071ac6d5c04527c2dc1328e5cad179eeda4fce4cc324d8dda0676f
MD5 c788a4a1abaf4ae9632cd34283fffd47
BLAKE2b-256 6c4603fbe8ddb9b82511b198867e8ae5095b534cd0e94017a10846341b16d285

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 1651750e91aad3e65d3876fdbf6bfe5ddfcaaf7d5693733ff84ed57327996f77
MD5 734cc9ddb5d398457a848f946bfa8880
BLAKE2b-256 a749964229122933873fec7d541408c190b114dcde9262c8e88b73a4fe4fb6f6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.3.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 36c1034be5acf924676fad7f53a6bd129f56da0173f06828bd1205889ec838b5
MD5 899510429dfa1b187b58df374f9e6ba5
BLAKE2b-256 27d755a5ca9d9744d8f28e3be4f597f2f87c58ad596eac65eabde657b69c229b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.3.1-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.12

File hashes

Hashes for xxtea-5.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7a14662ff6c3b57b48914d8db4bb962bb0d7e7940a451a07c4665fe763b9c9f3
MD5 ab2217a3e90d5ff99a4d1ad783956470
BLAKE2b-256 be66f5fb8b462c4e5c81c3974ffe58aaa22b59bd62d82faf344d64d9f434730f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.3.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 15f16112e9149f29091b7263f51f0358afd978e7f65dbf8727e5667ccaebea7d
MD5 6d52ab69f8e79892690ea6f199eb80d8
BLAKE2b-256 42d4f523e96ebf1feb1d53e45960e682241a79aa81d86850112a25ee159761d9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 b81e227c783fc68686693c92abcb882590b0dc5997a625013cecc01c5e0dc62b
MD5 b5196063ee57e9d0a581652f88f53d7b
BLAKE2b-256 8cfcf40c2b484d0224fa4f47ce674411305c17072f868b5e4b1e810952c43739

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6010f408402e84c10f2dbd1c1b72be3c3327dadc6e784403b473f63f044a6bd1
MD5 b1478eda912654af496eca06d923210c
BLAKE2b-256 69b3c7a971b19bf1f91234c30057aa3d8e1abf4f11763671a1f8cd4cc0da99d0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f9b37a59510a3dd8a549df4015fb3bd54393841209ce3dedfd54f7eade8186c7
MD5 da0601a2f12746d5e8b274afd0de6d39
BLAKE2b-256 1d35746c9985c8ea2da20ae5905572e8ec4c5cfebd480660ca6b8d202b291a99

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 68a9807d099ae9c63d5553c4322f99695b0df8c89a1e66103abf66bfe24045a2
MD5 443ccc29e8cdf541b46c2990c0dd71d5
BLAKE2b-256 4dc3c98af2b94a04cd6046cdac69fa708d5e0734cb8f13d357091666089fbafa

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6b8a3be74f520a57f5bce1aa309c83fdf9318122aa2e50eb52dcbf517f632d41
MD5 4cffd32993153552ea944b5a0f0d3670
BLAKE2b-256 2f434e9dc277ea251da80dea38fb445dfcea82c473fa7c362541082d7361be81

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 609d932a6d2b3f39cb33c6d9f82f8e13fbfb57e11731079bc47fb05cab8ced18
MD5 1428d634a8778d195d848afec79e5eeb
BLAKE2b-256 abf10bdca34524ad7e677022c5d4cc4832c0cffcdd62ef47a3e1407ebc19c4fa

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2a777a771776dd2f8594aa95aa65a4cb6ae240e182a23fd5ec6da2728cd1f090
MD5 62b55dc7e55220f14b2f1acc80c635a0
BLAKE2b-256 f3c3a89d770b96aa8ee6d3c9a5e2bc54c20bd399c8698ebaff7ac9b3e188b9c5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6a70309154f7f2814bf9e477d2d809ffb02ed0d802b87b0874f077a035843d76
MD5 8a16d3274f0fd9e8074dc9bfec4c850f
BLAKE2b-256 4fc6b85f31d1e2e4fdd7fcdea99d7fb78e4f0124a85da7b7d5bc981fa1b77640

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 829e4209784329b19d7d74937d943adaac5ed8e8624177b4998953a204518592
MD5 ec6cf68213070c4998206a7fe7d310d7
BLAKE2b-256 1d2d7273bc67c9151f7ce5b12da12833d024bc6c19abc1d317b8fcdc7ea083f2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 31e762c8bffc9c0fdfe89c0959c3fe38a308e62e82cfd0ddfaeaefb37cbf00bb
MD5 bdaa8e0a79c2580b3c54932be300edc1
BLAKE2b-256 7875acac2f2baf366abcedac44f0158ab9f45638ebe83d06178040e69d5ad64c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 8ad224b4e54dc9140802d3c96eb45b35fb51d5147547624cccffeb2d87ef2e7e
MD5 15376e8eab9f3ce2180f6cf521b8ec93
BLAKE2b-256 ea2d94520b35d0cd38dbcc1011f4ee9441dbc1357ca0fcad897a1ceac5b19d53

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d7a75510a1dcf52327b9115ff84024fe28f7f6d24d0d7115fd4fab94d5739313
MD5 12c4b1507ad74a281646e05ce373bd8b
BLAKE2b-256 ddb99b8f946a78bdb4813e814e88c3fdaabc913a45888d2832b12a4dc55687e8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7c9ba0e8b369b6e57ddf641b1d5f81345ca2158b3c71c4a5a5ba3bfb0be1f484
MD5 2a1740ac76ebe5796ef6b9351feb95e2
BLAKE2b-256 e90f3423547189591b0d05e0e315b85596bf24f4d7c8efb74ff67bef90cab51d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a510ac7c78e82381837cf46a4703d514d556c76e8a8bf1f8afaa0d8a28cb8d07
MD5 d89611d2242b6c61da377a192dadd4c9
BLAKE2b-256 cc2f028b04e1d9d481e21208c17bc553c2d5f71ef8d02def162fd38dec9bc70d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 26e5c6b700fc439cc6489453b69d531a2d883c0573cfe359115731ed2aef08c9
MD5 9c00c8877e41ee418fec66cd149f858d
BLAKE2b-256 765f40b5eab537d7da62b48daf22be9eaf0bfc2c30d5dee31101b6d5e8da3bb5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26cd938cc3312237c1f9b43f38e668f63035006c061c4d056dc57a6afa0fa51d
MD5 2c4594d4b931970faf96f0c619544df7
BLAKE2b-256 65700ff0caec615df7e1b44490f38f885ec9594d43b770bf0f3bbc0ef06345ed

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 181ae0e39c0e32824342673a1b7abe6effaf1616806ee9c6dc7417e4a08bb8f7
MD5 d9c93dd7acfdbd3199a10b9e75245c39
BLAKE2b-256 bdad183ee88f168eb301a8ba1eae1a9ddddc212916bc8a67b8dacb5407ad4214

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 13f4109be7bc4734a5a264ce648ebb30105d149bc8ac2beb9bcfd51b90b4c82d
MD5 61e7b3900f2584486304fcb281c69e6f
BLAKE2b-256 fff048785de4ece107833d87fb7f9d991187e0a246c274c27f20515710e9d427

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 fb811d8ebd2847d1577abeb487af64853b897666d2a931f4e66858be6b707ac6
MD5 947d6489ac72663583d5827fef3e843f
BLAKE2b-256 da7175d299c625f7f592939e40e815239b7bc6248c015f3bc64c3548fba7e5bf

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 7b3ee23419973932c85efb7d799e42f29a7e1983236ff39e645bad2a82cb27a8
MD5 29b8f553ffa5a4c15fd76f49aa4abd52
BLAKE2b-256 429988ecbd082d1111ad2269f1a2eac4ffbac053186b1b993c63b0aedbcc3c2b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.3.1-cp313-cp313-android_24_x86_64.whl
  • Upload date:
  • Size: 14.6 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.12

File hashes

Hashes for xxtea-5.3.1-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 c9e4919ec0518f3229570a1ae7cab10ffa3e1d1b38df322faa08e270471fa125
MD5 9cfb726995cf57506fda8910b4c02552
BLAKE2b-256 882d9e09a917ae39cb70c5123ff897076023a61537a5d7a32abfab2aa90e0fc6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 fa9a9854d4f8c3356099fc558ce9cc6b35f5da34316465fce0d0cb2aaf1774ce
MD5 92581c37b6b2d274cccdc80192a0000b
BLAKE2b-256 632914e30f6df28ecb1b66388590c2bb438242d811effe50e5599c28da7eae1e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.3.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 2852570cdbce7df4a714a5f70240f331a597da6eb8c441500a8ae52d9063c148
MD5 c8dc1d198d5ef0eaba60aa50d6bd8c22
BLAKE2b-256 14a321a9f839a2ce652f1d4b460c68b085e9bcd60cf871a369e3c289ad5f37e5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.3.1-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.12

File hashes

Hashes for xxtea-5.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 509bafe1690f82efaf92c574a55146ddc342a622c0c202eea2fa972f941cd9f6
MD5 5bca560d449682260b7cbc2495c2859a
BLAKE2b-256 2ac6688fef4645494f09fd89891379b873ede11b574b36e7a7e2a201d236aa7a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.3.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3da05ab91b71f75befaf9faa8535270b3ee91a7bf61c6ac4272f4230c1096160
MD5 4286b2a973afe742078f5f3986d249a3
BLAKE2b-256 36881f1e786ebdcabe115645e4568d86cdd37eb6d974a2a7c25129c67ac3ec51

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp312-cp312-pyemscripten_2024_0_wasm32.whl
Algorithm Hash digest
SHA256 2d25bc45805e7dd0ebf223199394006788629662b5e64bb1553861099455de2f
MD5 e39303513bd71e4d400059785bfed233
BLAKE2b-256 8bfe0de86e70e5a1c8e30d396515bbb7750631a926efea06fb088bf92cb7d6de

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90a1dbc9d83956a6161e10785ebda539d8f445ba27d350da34bc98d8d5816a6f
MD5 ae85ac088ca46e27c1f87d3c022fa7b5
BLAKE2b-256 3073f9ee53ff1b2f22c53dc6cb2ad1b6cfd6db9d7f4874b29e706922704151cd

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c31e56fac9c69951092287d59e495167e3fd7fb0d5133446517764b2329145e5
MD5 e2ac13cf44dfaad365ded3589fdb312e
BLAKE2b-256 c2ef9a3640c1e20623e8ea2a90aa0f97baa34de413077d141dca32ab8a2ff7ca

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 47f4f4bc07a08f96f6d5723261d591eb149e5ccd103da37e2a78848409d463b4
MD5 2c96db904c091899792350836ea387c6
BLAKE2b-256 a0c0b3172069a02eca9a86382feca23dda732e52dfb80249e3a682df1cd95998

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3cc9acf537d30929e95702c1413b62674b43992dfeb8054757026a62f7ac8085
MD5 ecdac25ae73c449c48df3ba1671a634a
BLAKE2b-256 203e80226ee64575a5794b121459b69630336dac1354cda9c6558b6a869e1a70

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4236bf2fb21c2461df6a8e94868d52a20926ee52e42ef0baf12c5d018072c665
MD5 76a66d0146d6a85e87939cdf75026b3f
BLAKE2b-256 2206d9c0a44522d9b3719262a85495ea94711279884f0c4fea69c8300ed36998

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 520ecf31c6f82956c2ba841e7e73d321465f63d4ce83c27fd3306e0dd7015bc0
MD5 a42af59873c5f7c304c1b86e3ecfe04c
BLAKE2b-256 0bef70f75ef25eb8475428d5b441f489ce1e0553c545c9935c4ed5c2340aacea

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 86a01584309d908cf04ef31175065719417ac0f36932b763a13d3a0fe143ea4c
MD5 680fba4687fc6053cfce08d97f83341c
BLAKE2b-256 edb4fdcb84eb3462063dc460003e13ab7a7f457e4c4a53d672ddfcd4a39b2704

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b69537a66241c4270c7211bf070a7751b6b980ab342ef4272282e3ced8c5bb86
MD5 dd766fd2ae4db5a6a8961d83fdac9df5
BLAKE2b-256 037d37d8782219cea9314a65d6bb670a058c54b61f0adc225f3d99bc125764a7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5b05b302989f1eb2a2113516a48eb634eb6fdc9ec79cea5e074d314b6bf82c31
MD5 e45a875affb89e94afa1b92f5ab90343
BLAKE2b-256 4c9358560a37a3e695318a40561e09b9a6c2ff76bf25fec0c9941248eb3b611e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a23540b14d3937a761f03e275cdfd99fa9dd51561238a3f59d39a8e884464d50
MD5 d3bfdf18be57b684fd3ccc1c21bf6d11
BLAKE2b-256 c2c922df79ae78bb813de5f7b670354bcecf51303aa04070e65ac1fac2f4b34c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f8da8588bce489ec660c602590d53268646cb533c08f480ec7425ee3ba492d62
MD5 88311e18cf47a410748e00a0a325de61
BLAKE2b-256 d925aee7dd7c3282246b5caca44aaf2dd0d1477108200c10ace7c4654699ad27

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4b53de69073206c2a91a4b08be6a51f655ab2c8d4ec6b7a77b1e8b6260d20620
MD5 533d506a96059668e722b9ee458b10a3
BLAKE2b-256 b7e00505ef5c083ba3645c5888c3c173864fbaa44d697fba792b6b0911c96151

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c864e2c681de6c15bc1db33e42400fbbacd61a33be068c653d99ad06d9b7c102
MD5 673f6351f815d976bd2c19e4c401bc34
BLAKE2b-256 a7d144aa36be46c751015443280f77abf7ea377d67ad338bc4a6a01e3a79700a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 69c345b4d128b63cccf208acc01b30ff9a07a1dc2fe889a863f261bcca204c9d
MD5 d35ca18bd03e80d01c5f4b0de9a651ec
BLAKE2b-256 cce9a650fc51850524e5c66354c04918f9e62d7d2b14c72f2c8a19801c6f0544

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d4cc098a09d5dd813a55a7461a80d8351e3cebc55dc43b0968f1dcb1a7144e8
MD5 c8db73a86b494a3c87a830936aa29cea
BLAKE2b-256 0f18d651fad7687cb1cc921bae76be096344a1081d82dc558204f480f3622204

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 313277f86e4c7a1e7815dceb50b7513cb3c3cfc19b6c3341b9b2ff919fcd87ec
MD5 d8d42a5a97ecc78ab25e8359287cf142
BLAKE2b-256 961d1f23404666a44d11fcd20b5ea6cb4d90e3a3e0fe12511c7476759fda4693

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.3.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 40a78272950d6fdd2d79ba31c3de344234471726ada30b23294fe3db78350c86
MD5 78b96621a63692f0b74440cf4177d80d
BLAKE2b-256 50e3bc6615e47de96e477bf2467c83ea4c815aebe427df44e71a7d187fb06c19

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b43f2d0b31c047314243728a4f14844e1ccd24bbc136be241274b9f860b4513e
MD5 c2bcf8524a69dcf37a5b18e5d315d6cc
BLAKE2b-256 03655cbb324d976ebf6d118f8a84c360f919a37e44edfac4bf60285dda91b510

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.3.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3776783fcf86df2ecc0f6d4de1cb4dd949cd9ddc80375f60f976a7ef9e7dec23
MD5 432427a34e6a4a0b9b2ee2e863a7359e
BLAKE2b-256 743dd73e902f25c45429b2045b62348b2c20849085afd3dd7d0b032dc496ee33

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 515a54351f233fd460d81b91b19ae30724e0cec15ff268e915f673fea0f7e40d
MD5 bf60b52f4574630875601449c7b5a5f6
BLAKE2b-256 b3cda6d49b9a2a3892586f78aba322c9cca19737f1a775f5795b060d7172d17c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0d21833323f470c7545a5b461af3fad1b09305b6c6e5587d6f9448d9682abdcc
MD5 c49c84640815de9bd63c5986110f860c
BLAKE2b-256 560723c721573375b812dea1db5b8690ba9976b204c3046e80e9cf72d2506f05

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1694eb3a263ee71e62d0417439dc0b8152851f9fc104d6a66f46f74ebe7cbd36
MD5 f3fce942c3dba73919fc7bfcbd0d1cbb
BLAKE2b-256 361a70d61b507184f1ba359387ec97b2ac8bf4b6dba3fcf2e767d4892f1ed6d4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 38224d29268996ebc2bd266f73421ad2916f76b9e24adc6f985638dae740802f
MD5 c266ba02ff66b260b010d77ea3060970
BLAKE2b-256 749e5fb95e53d03a6cc6b88a4d14cf9a59be03f7488ad09d7139e9f1cc368a88

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5401f2a77f3969a85a619570ac44e48cca01b68c9dbebdaacdc4e371f60f48bf
MD5 91aefad70e5d0c3d9e47247696f4e288
BLAKE2b-256 87e93f8ed6a72c09e0b1c9ebcd341607a3596a23c610a05c0b107530170515ac

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 97a42b0557a1fd0cf50dff10f51d2c9c91d775621da9375839d6bf07f132b22c
MD5 692fe11e169f0f1c13e8f0403fafeedc
BLAKE2b-256 2a7cc100e79fc3dd1ebf163f772ef1f6e87f0e4d6b1d14b99b13d023a0f4fb1e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f48b81a69dcd9d32b94d5e6abdf1e2ee0a53e24748f22503287f7227795c6fd0
MD5 e72a7b38257d4b2c3031d1d725468fc7
BLAKE2b-256 5aee9cac618a04c05fa8cc1d82d8a00183b4ddbf66f53c22bdc5ac51ecb21494

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 777fe868405a6eee83be19a257fcb32a37ae98317538c49b835f573403261594
MD5 f906133a9d0a126d29f8e7b5e10fcfca
BLAKE2b-256 4d24e33941a746722aee424d0c14f12ab964fbd8a67c12eb57866bf106b8f125

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b5fd3af4a7a78140fc9399636ede7141f0498413f9714db2b28332fcd8bd8cf6
MD5 1df113365863e0f4ccfbcd40802c1931
BLAKE2b-256 e3a0bde1da1cfd095e2fc9573ef102f6a05ae31ea5cd1dc99e2ebfca462996fc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 592d12b9c6a3d0255913c5e3e985c6900b53258c976d1302ae6ad76f64f80d0e
MD5 cc30424b24634a5c0559e5e5f24cea25
BLAKE2b-256 741c085b5cb5bc1ac875377aad0c05f6ddc4f6b5259eabd9ebfb5ad19f792d55

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ea9179b484ea5721f1a5192dfd1185ad5693836bb7e839d5ed7ec95011b92516
MD5 9609c209853fa614c1c2ee658ca80819
BLAKE2b-256 b021f952ce7736f8ba8c68a5895464b765340194b69e8017b5c608171271ddd6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8113342dc11ca66cdcd26f5eeb9e800bb0069e1bceef08eae8d9646ab9cb13bc
MD5 d79b37bb28475e431c5913245633729e
BLAKE2b-256 b15d487657a431a4bbd1480f51f4a4cebd3dd7a4903f9fb064fa2485dfe14e27

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 90908b8ba2a627ace88fd226f443b1adea91526fc3787a6e584b2b7086b4570c
MD5 0049a62ca76c29b19e2a5d57405fdb96
BLAKE2b-256 01209a2df3b078d4f26cd26f49e0f0a9d1f0f4ee4608a36e27fbfece29d210d3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 26ef2663600f4d83f8b92517c33dbb3eff5ab8ebb9f48bf98eb4296574f2dd0f
MD5 18ef158a8c3a76f636bd98d71eec0cde
BLAKE2b-256 36d93be5493f4cdde6c9f39cacf6b779e89e54750a86e242a87f1fc8942c8a2e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bef03e3a149faa3c9333b52c1b39a9c24ded7db7fc40f6d2f53a97c59c0c77f
MD5 35c328d9edb77e7904ded158bd90a888
BLAKE2b-256 2f9f5eefae40ebaff4a4ff3755926da767def5dd95546beb713b789e6d3833e1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1ad98616df34640203d9025622293a2058613a32d59e353618755ae17ac3e563
MD5 96f739f14fcd55f8493e2963a04d42b8
BLAKE2b-256 79132dc66cf6ad2de3fff4009f3feaf635e1292b8b69b3cc2aeca9d3a1577666

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.3.1-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.12

File hashes

Hashes for xxtea-5.3.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 c1bd271e4bc9e2b70cf5aecffaee59bdab5f9aef99d4efd4234a5789816ba675
MD5 9d9549b1d373b7756607f55f835f0e15
BLAKE2b-256 d9d44c27eb2a225206ed598baf813c37b5d13606de0b6d30f814f7a4d1d67a10

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6318fa43de1728acaf06835add3a95dcbd9e1f7f36183f26a395a4c43fef6654
MD5 e97beee0dbcdbf2f813dad148b106fc7
BLAKE2b-256 feaf0db7a02f78c50fab05b3932eb1af6a50ef483b660ace439bd97b56dfe6a0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.3.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 61dcc405afb7eebae25d4a46ef507ee3b1afb3c0cd5cece8547f815dc9fbfca8
MD5 643afa232a8907d536a77ea0df439ca7
BLAKE2b-256 8f970b0b14fca9b97283b4ef3620e09b06f05748a6acc432763800c642cd4850

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp310-cp310-win32.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4513e70fc9e67f963ffb4a59c6aa7c61f491dace2ed5b59b1bf1136d30b65c4a
MD5 7a29b57cfe1c05cd1ae4916ebab691bf
BLAKE2b-256 726af486e00ee1bd2f79b663b847ae3615e459e71944cfe249ad5fa5b3786235

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d86013ffc930b368b0f13bf92dc45969095857f25a19be56540bd99233d090e1
MD5 7e98706b6291e19feffc73a25c5fca5c
BLAKE2b-256 7862a0f9ce043bcb374b2b31267dadc4e3167aae0dd84353bf9e9980361da340

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp310-cp310-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.3.1-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 29a6f5a6869c88f9284983e1e1b600c7a6c4df309c32bc1cbc8271e7411f7f47
MD5 70724504398119aa45e43f22364dfe46
BLAKE2b-256 3e4f6c887114911c0fdda490898076f6a3ecdfbae97f90537382363a6d449b60

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp310-cp310-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 05f449a5968e87b6d4cfc5f4376daf64a915c8409c0254648663c739f52ad4d3
MD5 6a6e1e1eb11035938968c1368afc4a5f
BLAKE2b-256 88ea6728f50fa191f4e97392f1a139cb23875d3467508a42c3ccb906262c530c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3d28a2a84d3686c90c65136a04db51f16c3dcc505b3b676f6eeb7bf642afddc1
MD5 469b1a7e45199cd692a3907ba32bc4d0
BLAKE2b-256 26ddfca08459bf9ce6915774833d0796ec57994463e04384936fbfa03bb92c07

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.3.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.3.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f20399f23279641750701a513f99040de5972d911bc85de848ad59f79b6a7d0f
MD5 6654fc648304fc6bee6e9964ebea28b3
BLAKE2b-256 f44173418e76de6588621c4b86609871e33b61d37233f56cc64a7df3bb3f719c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9aa23777f8e6fb443b545ec6772856a9e10516bb6d63fe6a50d9fc254145245f
MD5 ee9f8b999e3b16c783441d84a9e8be39
BLAKE2b-256 e001deb13b0b0942765108a3e61b4b1f4acf8abd8049805b6ba74e227026405b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.3.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2549a98df76e247411aec425d3389dabc47032b0961361e8926da8b53e6c363c
MD5 bdcc46b5f29970fefd9d1e0083b51405
BLAKE2b-256 fca56c798d9a60a7df7c655e3f1f6df3ae1ed90aa33c9430268bc40505590d69

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0c2516910edfea24db2c8ba8d65ff2e52d40673087be0c517a6022e3ebc918ce
MD5 2252e793b38a3f3404eaa3a00bf00198
BLAKE2b-256 b3c74a713a3c6367f07587416672e0be6c944f0b3204a2a18573295fc341535c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.3.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.3.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 62cfea33924efe8644ce7cd0e4d776ebf63e449cdecec4b651ca61f49139f68b
MD5 5332780181af8b2f74f7d18516e0e4fa
BLAKE2b-256 c922eafcfb7a543c836df79daab1fe9cc38b999d4051613973109fd474e35288

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.3.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.3.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4309e5d7d3997ab3bd869c0924347d21a0995a606ca13b5de2c562944d56c78c
MD5 a54075c272d0c99d3802c070ab092470
BLAKE2b-256 e73687741d9f6b9b1708ccead1b5b603b210d7b4739a44eb505dec5c193665b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.3.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.3.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 9bfacbfe07959b484d11010ea58f838a7d9aaa7c8695066907f8451eab902a3d
MD5 fda7749a199170f2e24f62907ef38f65
BLAKE2b-256 10cb89979dbabc790a02fc1e13f37a52857a0cdb6c3b8e02f516c1aa51a657c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 af954b5145b43f0224e59e4431fd564f45409eb2892e9755a36fe210c6013f7b
MD5 672d6711ca447480e0d4d9c9e2465394
BLAKE2b-256 d222806be3aed5791122ccac585a9cc2c51f9d9eb8dc86d2e3be844e03c79058

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.3.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.3.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 dda4272916ea53606c066017d45d59f72edf30396e18e3f21474a8a35b5156e3
MD5 a050d2c0d7eab6b80d10365103526085
BLAKE2b-256 d5c4e83d58916bf9e46ff3179bed3057a6b2b5c8b3a68613d63752483f954ca2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af029078b565fa7741d98286c30509c1e97d1b0963079fb8ea0618b28d87de6a
MD5 37dc592174e8a4fa0bc6f7ac27a928e6
BLAKE2b-256 e72910c7c35ee70f076c283de120147fe18a1017685134bb33bf03c8c95698ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4ef990f228dbc7e9a2daa6490ca7e9a24921cb07de17489494fb5ec1aba3499f
MD5 af9214c3fa019c47238f5181a36608ed
BLAKE2b-256 7aecdd157b3cef12f17acd143ab81998743ad59560f0dbf1bb4587f31b2ac8b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.3.1-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.12

File hashes

Hashes for xxtea-5.3.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 bdecaa2de948b0d599ad7f696fa675149dd02c1d9c607544120544d2b4d2b86d
MD5 d3ceec99d7ffeb513eccaa6f6b6eb999
BLAKE2b-256 a0c41949dd9e2cf4de8a913a1fc50c45e52581963b44830d96e595ba66ef869e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp39-cp39-win_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.3.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 830f69211e725fc67dff6e50faad1c0241e177d37f0f5ef61aa9c3e08cc8ae67
MD5 c67eb1a1d4fcfabbc2458c09762e17dc
BLAKE2b-256 e3fc9f255304040a1fc9567a43d7f5a9f1d1bed48c44a1e9da6d2fd6d8ae0c7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp39-cp39-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.3.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a3fa0aa428c1da884f611058fd35e433448b10871d27c4dd514074e174782e62
MD5 2a45597145184315390c3e3504c8ec3f
BLAKE2b-256 6d34e96ebabfe50d3e53d1162a01f88930c21c01d343b93f3de26400e4d31e73

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp39-cp39-win32.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.3.1-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 55.1 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.12

File hashes

Hashes for xxtea-5.3.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06876d3ff656b8c67a9e04b46411e932eb28a6c571796aa76d9620f41197faa0
MD5 34f9ddb8dc4f503f33cadecee1e4a5d6
BLAKE2b-256 c3924e0f7e4853f827ba604c0bfe4f0158a7965258102f11760d0cd1d298afac

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.3.1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e6b774a57c583c9c7880af27b065d1220cc0e11fe078ef2f028be0bb825370e9
MD5 9bec0411553809e71a841ed583166bd4
BLAKE2b-256 0daef7689fe19e790234af3a840a71f439287553bff090c077cbc2a56fa615d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp39-cp39-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.3.1-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.1-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 fd4ee157639d9728b53adddd9ea74726b479a59a3ff6e3bfccf6ada5f0f91bf6
MD5 7d75fd83849358745d4c390af8a88d57
BLAKE2b-256 22fa05d48805f3056d0c2644cea93ed5bcac70dcbcf5a22d430fa7a6f7d2ab4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp39-cp39-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f0d1d72ff824b1e41440b6ef0c0666f8dc97159616a4afb7290ea213048cb429
MD5 c80143e79277b20e6aa960302c4b65da
BLAKE2b-256 657d4a6028f843b8fec19cc8810aa39aa12a073bd621e66541d7b1416472c262

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.3.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cc2e5892df43106ecf5bec3a2fbc91b93ead17470a9cb954f7029a5c4abddc3a
MD5 d1c4c99a9c11a7df5d4084dc58b1d53f
BLAKE2b-256 a07cd4bbb851e80e75cfedecab8470a78efe914e30d74d5d118378c4c6742bd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.3.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

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

File hashes

Hashes for xxtea-5.3.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a553a16c8d990e78e8e5e8bb80f9561e869e58a8e13aca9cca569ea2e71ef7dd
MD5 a991449ae1b328f123e03989f01596bf
BLAKE2b-256 9d90083539ce10902fcba7d3f2de98f55ff916fcc39baf1c822b2f8d1f1ba3c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b3490232547ad4c770fbd870c87409a414005063d4034dfb8b8c3801600e05cf
MD5 e0c8ba1ebaf4495ed6aa1f6c14a3aa4c
BLAKE2b-256 f08228aac30ff69652902c46ee2ab09098e781bd5181a0a6070cbe967938039c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.3.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0b274d291467377ec5170b9b3b2b5ad36a184d0c2287af61b2e76eed684bb356
MD5 df88b7f054c61d6d993651964236c312
BLAKE2b-256 6c0a55334398b91fa21b64a739abef58cd32e9d669eccfcd1548ee6b99b0991f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.3.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e439e71eb90e8c2c52a5df71cc2f3678881194517f1070c978e2dc11ee664fd
MD5 cada431e8175225912cb7e1ee3cb3c75
BLAKE2b-256 c97bd8bd77fab67104c710e84c6af9827e3f79f550ed7498ba8a568d3efbebb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.3.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.3.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f22e8cdb96639ff1602895b9baf763f71fa02ace72e52957de8b2cc4b3d5d9e7
MD5 7b511005d4a355eea0b1ca5cdb27d5d6
BLAKE2b-256 4a0f52840e47b52339e7df246aef774009789fe8dab2ed2435a2eb5ff77867a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.3.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.3.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 33abb51f3863e1f0f191e8ce4bb8190cf22ac68234bc8e73760387a9807b3c44
MD5 48645942ac1871376f9a165e3ca22ea4
BLAKE2b-256 8e7a40a4706f6a481d41bca7d53d3f6d6911d3e86a4ed4da04912d5dca409cf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.3.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.3.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 21f571b61592e9ad5d9ddae34ee3378383d544ea92db6068de100253872a8178
MD5 2167df42ca60dcf977c125016149f54a
BLAKE2b-256 c2bc9a06f5799640c7018e4197da5ebde1f16323fef0a19a76e67144f9b8a189

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.3.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.3.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cd6b94101c223f0e1d5e8c9dfc962a3777d47db58d31f1b788b350dfcfce81d0
MD5 541842dafd180f44d316fe76d4d328d6
BLAKE2b-256 8bb0f03b273cd1e718540581b72043b50c6f925db85ac083d4e2d0ada7475815

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.3.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.3.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f9dd54b3231ec45c91c715296d178852b485fcf0f98681b77c490bc48298bdba
MD5 9cebe955cd8c0519f789176b4649ab35
BLAKE2b-256 d25752816260f8b165826fd29df919336b1a6931b69be602dd6bf8c0922601df

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.3.1-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.12

File hashes

Hashes for xxtea-5.3.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e52ab87aaec06b6060bdb6a09f7b71d9076f3ac662c14c5ac746a905761793dc
MD5 735649e9447476007bca9be564c2a7c4
BLAKE2b-256 f41216a3fbe0d3b5fcb43316b3780e32cb8f556238951b721233a00b3cafa987

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.3.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ac44ab67ccd0f86a8ff19e992525bea1ab332ed44a5108dda495d92702e39e84
MD5 50306534318923abe7a1af25f9061809
BLAKE2b-256 90ff4cac2ef2f0ce1e076df288c545b176b13351bd9482f6a537ac262d0990a2

See more details on using hashes here.

Provenance

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

Supported by

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