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.0.tar.gz (21.4 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.0-pp311-pypy311_pp73-win_amd64.whl (15.9 kB view details)

Uploaded PyPyWindows x86-64

xxtea-5.3.0-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.0-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.0-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.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (12.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

xxtea-5.3.0-pp310-pypy310_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.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (16.3 kB view details)

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

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

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

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

xxtea-5.3.0-pp39-pypy39_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.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (16.3 kB view details)

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

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

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

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded Windows x86-64graalpy312

xxtea-5.3.0-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.0-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.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (14.1 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

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

Uploaded graalpy312macOS 10.13+ x86-64

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

xxtea-5.3.0-cp314-cp314t-win32.whl (15.1 kB view details)

Uploaded CPython 3.14tWindows x86

xxtea-5.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (59.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxtea-5.3.0-cp314-cp314t-musllinux_1_2_s390x.whl (64.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxtea-5.3.0-cp314-cp314t-musllinux_1_2_ppc64le.whl (62.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxtea-5.3.0-cp314-cp314t-musllinux_1_2_i686.whl (65.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxtea-5.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl (59.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxtea-5.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (58.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxtea-5.3.0-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.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (60.3 kB view details)

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

xxtea-5.3.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (68.2 kB view details)

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

xxtea-5.3.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (65.2 kB view details)

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

xxtea-5.3.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (55.5 kB view details)

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

xxtea-5.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (60.6 kB view details)

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

xxtea-5.3.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (63.7 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xxtea-5.3.0-cp314-cp314t-macosx_10_15_x86_64.whl (13.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

xxtea-5.3.0-cp314-cp314-win32.whl (14.8 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

xxtea-5.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (54.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxtea-5.3.0-cp314-cp314-musllinux_1_2_s390x.whl (59.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxtea-5.3.0-cp314-cp314-musllinux_1_2_ppc64le.whl (59.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxtea-5.3.0-cp314-cp314-musllinux_1_2_i686.whl (54.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xxtea-5.3.0-cp314-cp314-musllinux_1_2_armv7l.whl (55.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxtea-5.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (53.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxtea-5.3.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (56.0 kB view details)

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

xxtea-5.3.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (63.2 kB view details)

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

xxtea-5.3.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (61.3 kB view details)

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

xxtea-5.3.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (50.9 kB view details)

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

xxtea-5.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (55.8 kB view details)

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

xxtea-5.3.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (52.8 kB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

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

Uploaded Android API level 24+ x86-64CPython 3.14

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

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

xxtea-5.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (54.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxtea-5.3.0-cp313-cp313-musllinux_1_2_s390x.whl (59.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxtea-5.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl (58.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxtea-5.3.0-cp313-cp313-musllinux_1_2_i686.whl (54.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxtea-5.3.0-cp313-cp313-musllinux_1_2_armv7l.whl (55.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxtea-5.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (53.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxtea-5.3.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (55.8 kB view details)

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

xxtea-5.3.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (63.1 kB view details)

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

xxtea-5.3.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (61.1 kB view details)

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

xxtea-5.3.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (50.8 kB view details)

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

xxtea-5.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (55.6 kB view details)

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

xxtea-5.3.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (52.5 kB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

xxtea-5.3.0-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.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (13.3 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

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

Uploaded Android API level 24+ x86-64CPython 3.13

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

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12PyEmscripten 2024.0 wasm32

xxtea-5.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (54.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xxtea-5.3.0-cp312-cp312-musllinux_1_2_s390x.whl (59.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxtea-5.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl (58.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxtea-5.3.0-cp312-cp312-musllinux_1_2_i686.whl (54.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxtea-5.3.0-cp312-cp312-musllinux_1_2_armv7l.whl (55.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxtea-5.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (53.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxtea-5.3.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (55.7 kB view details)

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

xxtea-5.3.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (63.1 kB view details)

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

xxtea-5.3.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (61.0 kB view details)

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

xxtea-5.3.0-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.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (55.5 kB view details)

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

xxtea-5.3.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (52.4 kB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

xxtea-5.3.0-cp311-cp311-win32.whl (14.4 kB view details)

Uploaded CPython 3.11Windows x86

xxtea-5.3.0-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.0-cp311-cp311-musllinux_1_2_s390x.whl (58.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxtea-5.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl (58.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxtea-5.3.0-cp311-cp311-musllinux_1_2_i686.whl (53.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxtea-5.3.0-cp311-cp311-musllinux_1_2_armv7l.whl (55.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxtea-5.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (52.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxtea-5.3.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (55.2 kB view details)

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

xxtea-5.3.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (62.4 kB view details)

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

xxtea-5.3.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (60.2 kB view details)

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

xxtea-5.3.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (50.4 kB view details)

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

xxtea-5.3.0-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.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (51.9 kB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

xxtea-5.3.0-cp310-cp310-win32.whl (14.5 kB view details)

Uploaded CPython 3.10Windows x86

xxtea-5.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (55.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxtea-5.3.0-cp310-cp310-musllinux_1_2_s390x.whl (60.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxtea-5.3.0-cp310-cp310-musllinux_1_2_riscv64.whl (49.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxtea-5.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl (59.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxtea-5.3.0-cp310-cp310-musllinux_1_2_i686.whl (54.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xxtea-5.3.0-cp310-cp310-musllinux_1_2_armv7l.whl (55.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxtea-5.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (53.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxtea-5.3.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (51.0 kB view details)

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

xxtea-5.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (56.2 kB view details)

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

xxtea-5.3.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (63.7 kB view details)

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

xxtea-5.3.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (61.3 kB view details)

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

xxtea-5.3.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (51.9 kB view details)

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

xxtea-5.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (55.5 kB view details)

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

xxtea-5.3.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (52.4 kB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

xxtea-5.3.0-cp310-cp310-macosx_10_9_x86_64.whl (13.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

xxtea-5.3.0-cp39-cp39-win32.whl (14.5 kB view details)

Uploaded CPython 3.9Windows x86

xxtea-5.3.0-cp39-cp39-musllinux_1_2_x86_64.whl (55.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxtea-5.3.0-cp39-cp39-musllinux_1_2_s390x.whl (60.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxtea-5.3.0-cp39-cp39-musllinux_1_2_riscv64.whl (49.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxtea-5.3.0-cp39-cp39-musllinux_1_2_ppc64le.whl (58.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxtea-5.3.0-cp39-cp39-musllinux_1_2_i686.whl (54.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxtea-5.3.0-cp39-cp39-musllinux_1_2_armv7l.whl (55.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxtea-5.3.0-cp39-cp39-musllinux_1_2_aarch64.whl (53.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxtea-5.3.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (50.8 kB view details)

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

xxtea-5.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (56.0 kB view details)

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

xxtea-5.3.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (63.5 kB view details)

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

xxtea-5.3.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (61.1 kB view details)

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

xxtea-5.3.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (51.7 kB view details)

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

xxtea-5.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (55.3 kB view details)

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

xxtea-5.3.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (52.2 kB view details)

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

xxtea-5.3.0-cp39-cp39-macosx_10_9_x86_64.whl (13.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: xxtea-5.3.0.tar.gz
  • Upload date:
  • Size: 21.4 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.0.tar.gz
Algorithm Hash digest
SHA256 44be6c62a60b25203e4a548863d968655d7b2096883bfb2eebe6c363917a77aa
MD5 adf623323c800697829b6337eca1bd16
BLAKE2b-256 8ab3237eb76ddfe17d07bd6115839652de3325a0586c081deebfb40cd2a27ae9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f27cabc2258d53fa747d8177476ce6427bca311d585cf02033786644b9b70e5f
MD5 0df48c52c1d86bf331690573aebb98b0
BLAKE2b-256 4178a542063a9ce8c8425721f2716abde3662908447d2cb377c3cd05dc3a0c4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.0-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.0-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.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f6c22c90933cca9f2962a104188959a46f8073bf5414512665de09a9f3eabb31
MD5 f15710b7c9661069a0d644e9c2c6121b
BLAKE2b-256 72d57c6f4158647904c94d9734aa5a06a7685eab25e96d9279490b2b75a369d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d2c938b6550b89697f2bb9bed064e8a215113a4431e0f5015e9217e5e9ca7349
MD5 61ef96e85722e4a38982e4e18544431c
BLAKE2b-256 2a9331811ca6ae5689de249a6495bbea7a2bb08eee746073162f952a07cba761

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4ef27bb0566894d97d26bd2a51346760c91973e501deb5db59f97403b732c944
MD5 f5c2f63c01df1a5017585c4bda4dcb04
BLAKE2b-256 df6bc7c6e2d802e898f9656ba72452986a09982a439f3f528b53feb27c73d332

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43111a598ba9ad676b80099452da7d8d1cc7bd009de4b2bbf0eb1d2820eda100
MD5 ee70ac87fd646536236e67c150a117a0
BLAKE2b-256 bc9d81033b4378bb72988db2efedab8a47e64dba4adca4a18f0538f3fa4f8c9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 36de520c9ffe5e506bc274f6c10a3ac0d96ba0c2a0feced7dc3dcd5bf3a6fbf7
MD5 0c82184cd67d63bc4f4334d5fee6b131
BLAKE2b-256 e4f867631269e6e49e3db680f2e14bcd49d475da06f33191fd0e5021240368c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2493b50a89af6c0ac4ba96c65d1be00b3818c757283645f3fc7180b532f35c80
MD5 a5bd61186cfd704c018b0cb77607aa0a
BLAKE2b-256 adcc52c84271101bd111fe368cb1572a4f7d768a5c436a9567c56305993afebf

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.0-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.0-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.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 07dec838d848b43b9910c7aa2c73924f165ff8d0f2dd533604ec0d3ce839b5e0
MD5 2a5396bb9a51cffbce3b804d1741a4c6
BLAKE2b-256 b6c276fb370638ab4e9332b296f78e3b8dd03f50396145be5841818ece12f279

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 40986256e4e95b2a48935b7dfa237cec3c263137d5368a8120c2f1b3a59d2e75
MD5 b46dceb5765e5fb732cc9b35d5449fd3
BLAKE2b-256 bec20d9a294c752fdd6e1ac72a6bead041e77b220be19f40de4dd91ac4e66cf3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 74a46bb27d51d34516359899ccf86dfbd6b5dc5cd5ebbd8e89221f2abc2bed77
MD5 672536bf1cd1bf502a6481d46cc12c38
BLAKE2b-256 71490093a39918d1c049d44740502bb3e9481e064fdc0c69c8000b6e01b43c83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4de690cec8b9f532ade13878b2471e2d87dceb02c5dbf64badc14e50c2495b2d
MD5 983e86d5140254c40afdbbf81ec7b665
BLAKE2b-256 2137d0d46cb26a187525211139cd4bc4be7d6fc261399cd00222226e2c75b431

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 68fa46f01db42a6e145abc6a42c0daf3a53e740975541a26129cf5b5b752ba58
MD5 0f91bbf4bfcf2fd6b54f3334c7f25c13
BLAKE2b-256 3fc36695fa58129dec920e60e5ff9d83cae58b82f0ed5eaffe081ed492fad940

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 01346982740afb516f84faa6d141f6bf91ab63a9ea90a6b5ec5afe43273eedf1
MD5 16376e0ec0e9dc115b9494077f544709
BLAKE2b-256 b84b6a4135ec22867e394e91105d9e0dbaeec13759e3c25d15fb2edfdb5dd5aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.0-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.0-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.0-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f1635ec186949bc8c75550cc650e04b43910f07dcbc236e3a9d65e9e08f3fe77
MD5 fc03a54e56d8f9397c907b40694fc4a7
BLAKE2b-256 f7574a45996eadb90c7253f397540626fee91d2b60a3fe679c2ef8ffa1a1157f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6ba2815291d11796c123c7027bf56b0bcfd984e16e04e54af9fea2817da31928
MD5 b6d016715ebf6436f7e64537512fb99d
BLAKE2b-256 f46a883b4baff486970eab47938eef90f8d9c6754bc317caf8816eaab405c535

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 40d55e7bfaec6d79c4af91898df755c5c3121821c04d705ead48a9bf3a8399c9
MD5 d51e4f9edece1e18a7eb1fe0401ca9b5
BLAKE2b-256 f82da936397437fb25f193840fd791703710a2cd705ca3cf0d42fc19249027f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a1f4432876e03924652c1006552419c3961300951243e57d1991c824001bab1
MD5 86f2ae6e4dbd58349ec5f79bbdc12afc
BLAKE2b-256 c84d19838663c4a2c60e02e47dae56966bf8e38c5e020e087c614059e59fbc65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a1ef3a092faef3c57cd2b8c70964cc0204b6bcc4a15fe83e05ca8f7ef7c08baf
MD5 f16e1dd68fd3f89bbbda958667c37653
BLAKE2b-256 340f1a47f1ecc7d6fbb4274a10fcf7b887ee84562ed0e12c24b67e71ed95b0b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 ea02674645f89b224430720d2794892ede7400af7bbd8bf241d052f37f0cbe1b
MD5 df19ed81923291ed8fb08b46c08de3db
BLAKE2b-256 32fc92bfa855b976582144a6393f30b8284ecf7c795ae152c162624604df3fc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 41f3cdf79c5a615158cb1ab33fac045ec5b29c7a59ec4f176a4bc1bf8a1ed99a
MD5 6922a1e5e742f989bf21455b4e86c984
BLAKE2b-256 d5011fae0be8eab9e06e6f735898258b5b1bf887d6e228284a79c6c210e0e2be

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.0-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.0-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.0-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7aa0b3f509d29eda9bc72eb9316cb9363dc8fbcaa88dd3991cd698feee952a56
MD5 fc9ab019dad2e1133b957f7a0516fb2f
BLAKE2b-256 3d652747651c3a931b6f3604efd92512b3c464e11219acf10bc1bcd941b51a41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ee3696ca3327454f2ca28d63793a91b4e60b185c95864030a1695f41e13651f
MD5 e69730a493888b285c4e51e64b2396d1
BLAKE2b-256 0574f43b36754ef0f92b3dda8df0a670fb01191d5698f16063bc31709a8d6b73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ed2378b6bd0c16ae1221f95dc6c83fce6bb4cdec7bbdf4dd050b6b317c03fb0b
MD5 a626f4c4be0e28877ead71e6153fe3a7
BLAKE2b-256 c1a51101f03624516b90d926a79480ca08dc825679282df2625ac1d42bb89031

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.0-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.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 9301bcac7f9f53beb4bfda68a53d1d44f5a16fa95ac278526679ca470d19c65b
MD5 cfb40f41a7cb83ed519ace290393d36f
BLAKE2b-256 76a6475b8cfd5cf81bcbbe12372328225da64ada1f4523421443316203c6dbcd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.0-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.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 35313973df58a39fafc565e4dee0ace016683466401cf7abbce45797c66a3c3e
MD5 7ebe3ffd12b3738015ebf5a7665b03f3
BLAKE2b-256 ab5256267f51111d244cb0e6703c25112d28d1208f9c43d4f8eefae1bc019125

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 15.1 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.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 9bde6d82477c05f0c767039c5aa8bead47aec99eeb177f509f49621d3f1af481
MD5 33ee8974f3c644d9ac2893f2eb56d0e5
BLAKE2b-256 12b1b39bdacbafe9f4ea2bdda9c10075c393293edfa808602a91b45712f4b7cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec3573cbf2c78a8a46f552f2d1f87ce01a0f1a31a4e55cacb70c73425bdd0d48
MD5 afc26ae7847fbbf1552e06cd9bd65e73
BLAKE2b-256 bd2e3d3e019128d3ee794f0dafd121c6a6bbf0f1afb2fea6f223307684a08226

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ff24cd672cda22f63e75d69682954524284e134f07a0312e8c4e3b7cf4f05853
MD5 1029c58b55fbe0d58944646bc54ff9f6
BLAKE2b-256 7e2d2bdb2ae053434ee8a474474b05303ff443e39e89246d1bf84dd8bdf7bd8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 936ba28aa946c7e7026a38719bbdc9d6abd2a05e5981ac4c54db718cffb2ba7c
MD5 1cb18eaa32dff764a8c8c32108518259
BLAKE2b-256 5b5c6211ea1e9ac15ebe016d07717f9a042374851879d5d50d2be42af4877f69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 60e77afe51b7270e6ef51bf6ae9213237c63c87c3e948dc6d4bd58f7a8634a66
MD5 a9451d9490063555ec948a3341ff3947
BLAKE2b-256 80b9fa81098a6f7e23dd7eba89fc450d07535da78b20b6c084b8e3da3e63e5b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1331bad5f36b5fd1cc05d48485e57ba8edcf6b52c694d70c9ec3696b319135dd
MD5 70b065b669f9be62e5c3e7a23a80e238
BLAKE2b-256 c179a90471caf9674d496e0b2a80fd4f9d3f47f894a8b6bcd440bcd11a28ad9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fdd3ff4e8eb2faf6cb3851eb3a59ec5cd52967fc91d6afdf69010a22fd18fb46
MD5 31f679e8e74a4ab98478a07963e014a7
BLAKE2b-256 d7cd1d2966ef18e5e47c1779f10aa66e6e374ba77974034b95928f52ea0b7d53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8335d73366108091462366bc92c8aa187adf5400385eb5e51546267fe565bf2f
MD5 db3364a916f56bcecac0f597e074a206
BLAKE2b-256 6cca93491c24a1f0ca0327594097b1afaa9d2742c3c4766336e2dae21044ea3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f9f22a7a636587e9f9c23ec1dfcc6b1d7ee5d28c97dfb5da8bcc916bd1469a29
MD5 7fd81ce62beaa1aadccfa47cded1d572
BLAKE2b-256 6d8f8f3d1c0f6f792d601753e6672493e8968059817373c0eec6b670a2f63c25

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.0-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.0-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.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 44367a1f668637ffa86eba9046b2bd0cbe71832b901a5b0f63b6d230c1de8ba2
MD5 d682f6738725a2e09e547f23587cf833
BLAKE2b-256 06b9f4a8d46108d25668120f8c715aa397d61d8c85e7b889b8443bbc75c3b12d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 750157a805b5ec8defe6d53cfcc3a7ad25988d3973f1a160dc89de7ba2bcf17f
MD5 e7e41b41c8ea3d955f5a2f3a3a71b5fc
BLAKE2b-256 5f8b75e36fa5988083a9cba1d6053dabd8a14187179cd144fa92a3e0183562eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 fe279caf674d5a19876bf04bc978354ffab7981c4570dbd91976db0a8bc7d3ce
MD5 5ef4ed8510cdd56ab113bb1798e793fd
BLAKE2b-256 634c4c7ed21878ee5ef9b539afcf7cb508d6bf9e75381b8b1d099877cab4ebaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 daffba65a893591348609febe8a8c907bc5a9e198c076fd9140b5595aa3ebe47
MD5 45d6338c07780544e188b0bf8be17e3e
BLAKE2b-256 bec7be58e4d963f562529916aefb0ee5aba5d440cc2e8e56007a3e5d2ebf755a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 abaa3a4bc95634384ff3e39925b5dd6d70c1cd82da04b3dd99452303479ce180
MD5 552d4069803aa4889761d610bc19e36e
BLAKE2b-256 70ec5a28f3e97778b9a1499fbbfc3643329df4cde084c7119c38d54445c8f923

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7b31f59bd4cba9637f7ed357c09ce06c1fef37be59ecbc72346d251a1cf8afaa
MD5 56ad492db129ec6e6a43f6a17217fbb2
BLAKE2b-256 9b15bc5850853d5a940312d2be93bf58113fe65cc6ffdef24e5d5cc53abe6e4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6541f8c0bbc68dba6314e1abd17fdbdb673ef99c6ea0e3389fc213a5a7223120
MD5 cc5dcd8e14471877e0bd692bae2809af
BLAKE2b-256 08a53b08ed4e274b3227991c2bed6c3916198ac726ac34b2d44225fd51a2c02f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 77db8275e468a00bbd82cebca8d2365d89ed096b989012c25064ace409e372cb
MD5 deffea5f4028e3ac359fad7074bddb8d
BLAKE2b-256 3f70ffdd0a02e7ab1b7366e8957ffe8fb0f196a0471d8c04fd88901a5b1a27e2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.0-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.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e9c6acdaf8482ce50dd8736c0e39566a0404bb22e784b48fa39966e70373bd0e
MD5 c4dd4f9e41532b5aa1746caa3ac3dde0
BLAKE2b-256 5585a4424cfc7ab31b934761561c04126322dac7be0dbeaf989146b41e314881

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.0-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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 699b977874ff98799cd5e16fdcf2e728103df3bacde81ae89bd590ccc44a1f7c
MD5 ad0c86ba5cea311437c3743f310d6036
BLAKE2b-256 826300f2a452e8c6001b4574f6c64699acc74300596438791f800f907bef8cfc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 14.8 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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 4998d6e3d1364ece1b35bfa4dfbb6350d8ad988e66e33c2247e4bf03a013386b
MD5 5430e968c77f4df9ef3fbb9284e776fd
BLAKE2b-256 617b604154362be2e6e0a02697896e2a2487c67f84f96819a4e5713c4057a948

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 0b8d3b61a49a5cd63d3059e0974e4542861e61cc423adf493063d496120f72d0
MD5 e7ea1651c962214f1165cead2de7c057
BLAKE2b-256 d90660a61342a81512e9da3c969648c7b9c2fc0832d95a27bb5bd63cb7618357

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b032cb2083f5c8d1842e0a5b33f002fa860214b861064df71f7a4f1053479eb
MD5 02b3c8cb7fb4fe524f13bce081d1d620
BLAKE2b-256 65e1f4c3e99991dc0d07860785b432024f96a386e7f6dc8eb32d4fbcc030eb4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0420294d72af0854a85c8d752e7d4fe98f377e1b0301df0a4f1e68b53f1d5797
MD5 9fe8ec21fbe15495599f200b42d133cf
BLAKE2b-256 db3396dbb1943a6bc757bb2ac7bb3b238bb98d7c5692fc802c39f476083b70bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 904772d1fdd9a10d47650bf2f6a87bf97d58e6519776ecff41bdcd6e9c3b49c4
MD5 69b5abe3e7700c0e63cc66afeeb8c019
BLAKE2b-256 dad6e6bc7f3bc9eef50d10c495073bb3701e1eda26e6120282cb4c101ae0c6f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 aee8df841e1366fad58b2b6d5e21cfd55dd2ef488234ee7cc28a02db2723c6a3
MD5 150a430f790c1bb8682f8603db07785b
BLAKE2b-256 ec2e9491e197d1ef00c4a0cb26b9a7b6afa1eeaf79087373474cb2cb4888888c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a578e9d098a574ba9889d74ac539e0fa8e5c7048cbc942004bef29d109a2bd37
MD5 00f220ec4817e602a432544e32b16bfa
BLAKE2b-256 6537a92e7d8ad505709375a12cd74c2cb6d91dd4513aafe65d6ab22b01edc295

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d9d380362f1b1e44ae29d391e07715b73940747b39c138eaadba2ae417b26a86
MD5 5e04f6c03b977970b7de01be2f096126
BLAKE2b-256 e53bbf2ca8f066bc06084ecbe69b8ff0e511e16d93d3e14748d2b44a939e7e08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 606c4234623de96b1d6ccf7ca1b189fb404e60f03f3def3b3960eb2e7e7b55aa
MD5 0ddb58527d3b48c7e458c237ef37a983
BLAKE2b-256 bfa9eeb9ab41880cbeba89be4057e4936814e60b7ec51e36163436f71699e27e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 dd51ed915f6b6704da784a840bcc4a70d41f9e983e82964e0d9058212e83df73
MD5 30fe89364100453b8403287220ddfa15
BLAKE2b-256 5ba03ce4c925b00f7829cc3cbfa047b288fed1ed988ebec7d115b2ab25660ba8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.0-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.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7c040e4b1cbed0dcdc87b1b336177f80c0f33f831885315c1acd8bee13c1411a
MD5 8eaef6028bb6bae924fe2f551b601ef6
BLAKE2b-256 f073efd6148bf884d5f43ca63339a471e360dc781a115dd110fc9e70acce795c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4498f987a97b7bb5d9dc8e924e18a1e52d35c88552d3555b76ea507d550c4c4c
MD5 8f44c2fd76610ec26dd7821a25a6010e
BLAKE2b-256 c97f3fb52cc35c7b1813bd5c774c3f768b74b86fef53e4c1ec8108dac3eee88f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e38eac7c1579eeb7c33ca68a8066cd56a80f3b770121e146759151d404eb5d15
MD5 7cdd3d4ef3eb27921dbabe43f17dca36
BLAKE2b-256 0efc804e6294c5f1b3ea7a0a1dbd695de649970f928f402e2708dac0c7452719

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7419868fa355dc91d1c80d2c3ca7846f569e4a77769a1afba704a36147c5c7b9
MD5 ce90c53073e8a095c5e091ade6322d68
BLAKE2b-256 f0c8cbdf0c88a78678a9ee02627d44733bc047d0025244b8df499753a5b873be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7e8c55cea515c4bc19d182a9430706368a2fcf263631639edfab2612ffc54550
MD5 f9fbf314a1dd93d1ed89bb035df4c053
BLAKE2b-256 489b64228630ad98eb7ebd274c91c8b0cc4698f23345628e8261c6836cfe1172

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 448892fa48c81a12bd9fb96f4bda08f453f719205d385178526cc75afd27ce9a
MD5 ff6771e53bf429d0422b90e05304e5c5
BLAKE2b-256 6babb4c2d8f721e6d93d4f38d431b2626e358a392ea706ab34442df501b820bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1692ef7f0b591117c40609758a3a79782736abde7a87afda36bae1ee2203c32
MD5 41ca4dd29f653eb847ab306a5c34c54b
BLAKE2b-256 6ee25901e84693f88403ccfd77e215c520f4bc712c2160cd612c7ac83c26c756

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8b111ddf5bbd11fcd00ef9dfff410c213de4b18a7c2a46302bfc6c126ff3fc92
MD5 acb493b11c299eca5d454cad8457bafd
BLAKE2b-256 b41fb95dff6e76213463bbabbe726d8de25bd2db75ec6a4269e53c3b57986e1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 9e89f4077ab8d5f96b7df8e2cab45931d84e6a2849d40287490556dcb779a34d
MD5 48ff011d93d1afc024c0d4ffcb1fc8e7
BLAKE2b-256 fb61b5f52e448230a0defb947c116dc907eb3eb5af9b1fd365a7d371d13b4e38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 1b71a0415b1f124385786571e73f600a8951788b76103749f8fe4851a2e0834b
MD5 0c53565ed223f523ee7eadc1c193cfca
BLAKE2b-256 71d8731436ac86ae9885fecd9eac46c3995dc330d59dbbd39515d49e9b375da8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 728c922006cf66d05c7434c69b68aa6a31c787aea85f8e84c0aa5f9fb9062822
MD5 686e5e3fb32310aa8febee4af50815bf
BLAKE2b-256 842b89ff217dbc4cd39dd85b5e897e6539b013d537032f51e31d3f50a5e11288

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.3.0-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 eb226d4b03688b8ce0da95cb2d9c2f9e0ca46c1b653d6f4192b8c5e0bebbf50a
MD5 c236b6f0e470ae118db6fa08e06cfcfe
BLAKE2b-256 43899620574a8388e1c328960f98437e8b6f14d05bb3f6bbef38ceafd731ccf6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 6699cb4dcc31ac52b7f6fd7cd9220f56318b55acb11024ecfd54af1ccabd5efd
MD5 a455814936f82f28ce1c017df5c948e5
BLAKE2b-256 513b72d931a887700d34a49efed3cf11b1758c1d182187d35de459cd4c3c0fc9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.0-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.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 0081ff0a958f7ef6da679ba1c8b2d4e321a5ba5c73a5dc34a0c435d846bc69e3
MD5 80fc88ac0d3936b9b9ecbff59ba63676
BLAKE2b-256 9cf8694441c26c479fca6af02e28d262575dbce24d98a2c85267f80036e27936

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 39985cf6e65f0e11949e7a7d26728850ce52c14abae9a04373c5853f4ed10f65
MD5 c03b015318b4f1f41c966eb2428657e8
BLAKE2b-256 1d9dada3a464025d709cc7ec9e6b3922add59cce5c354adebc1cc596269a34a3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.0-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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3f9a49a5aff883c841827418110b8d015c04f850f6d63659193a09a7fcedf45d
MD5 259904cacfab38e3766c1ed6bec968a8
BLAKE2b-256 e2bb824ca162b2f5c6d474a77f159b31aa42fa274d7796e3a16e9e69c8988a8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 505f2a9987e7a6d2e6a7cf2836f8be7f275604816e32f89fec66d5c09bb4014d
MD5 d5e4479ec2c7cb5435284a540e304e5c
BLAKE2b-256 954dbab80ef0e2483f1e8c7c25a5a31522e10fb24e1c34de2939e95c638b2f8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 48c46afe6075b317c0e5d92804119f1a5c9d4dd7ac96ebc7f7ea17b9e0dffb9c
MD5 d67e8337d6c0786f47d3776648e91ece
BLAKE2b-256 e1d9a397bd62a2b5bf46886e190c382ebef71c2ba867fd564ec9e0b2f24c4f1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e131438842650f86aa4bbd2801e001e611e68b1fdc09f0a609dc56fa93080b40
MD5 3c93471a2abd87702a7402f3bff5d7c9
BLAKE2b-256 5292ef5f229461768781648ee087f0c57f637c4acd10a42d98cd563481221660

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 39a69516e7e9fbf45b84689fb3fffa77cd6bf2c72c0e7291bdfdddb5087377e9
MD5 f3eabf86d3429d565aff21a9aed82971
BLAKE2b-256 1518f2912b7250195743e653802b933840e4241d3523c79f21a9af1c09b60e5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5ec944b42cc9221f0aa3ba11bbe10c4f50f02039f1e9f11195acef343b47d8cf
MD5 ce119f444f2297aeef3c5c6ee29f48db
BLAKE2b-256 7946d8cec8276307a556587cf4f7e0320a6095324b8219146a9f2a0ca913d7eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ca4ea0cc05130dfc68a65d4aec07d734d2f05cdf587ed919a17a667ddce0aca9
MD5 76b405678c381715bb88e8f67c725ed1
BLAKE2b-256 6051ce3a4135aedf38c44073a2db19d55c5f594047c592bbf7935e1c1bb47e41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ad69e02db7980ac53c4e96642e7206ecddcdd1bc70096c70f6d7b01cb0767396
MD5 a48e0f0c6ac98d35d1d500875d49f972
BLAKE2b-256 0be61326f3d6ac138e05432fea56a6b50b7766cc7d4a5f0c6c3987e268aabc8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1737c002154cbecd88739f651a83819a50593814494f3f0aaa04896807155238
MD5 07e8502cf4c508554188c338b4ea8d34
BLAKE2b-256 7e2ece4f766b17726befc7b606eb70e03b160f8df0914722ac46e992abc59f0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2b12a16215b725075de67f9ccdb53b2ce3e479023ca261d6d380ec866c4dff61
MD5 e9bacf67dd7fac025fdd44db6fa575df
BLAKE2b-256 bd51b0929183e666de5d8738cbb7e89bc835eac576123951f7759f6f9a98c655

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.0-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.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 866812f963df25671fc4f75129c1e0e4f348e1b7be3c780af40f7600e0d4ec6e
MD5 f9f87a0ea9945ae30ca43205d341576f
BLAKE2b-256 d61e0dfcfc7f39758d82f16a8646f2a90d65133ef0a2d4b9f6bbbe1d50b2a76b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4ed7f28b99103a2c10e5f05fe8272a0a91e95f79d1918b5b4bc45a20bae633db
MD5 402163ed4b96de78084166fda833cbe1
BLAKE2b-256 cce47cf7104a3f321972bb6226a21e1bd670ce57e94c4b80addcfed11b57659d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c9e0f5b9ed78086398e554eaeac7e918b428150473eff463d9d97556ac110ca1
MD5 096bafab43e1403cb5a5c6b0befb6e21
BLAKE2b-256 ca43d7a94812a7fd003447e3847fbfa04780f94bcae8acf133258c0905b7e404

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d1b08a378d7407e889d7fc8dfde95e5dcecb409d1eb52cb801034da2dca71995
MD5 2772f5f22654805b87380d58d80c0ef8
BLAKE2b-256 e67dde115d416e96fc154d2b088a87d48708d0f7529bfe907750c67faf46302e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 497b89d40cb4a7d0940f5ed9c234982e7be26101fb24520c0a9bcf46e4d75697
MD5 5fc84b0377db224d41c9ea435365f12c
BLAKE2b-256 ad0f4bbe932664853ef43e4a8030833d1634765c5b9a697e73400a11463fe124

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 246b93caa6329166ce0d0d7de75bf755c1e5de5e531faff52ec9aed148dcc077
MD5 9c9de04ef8299f931a86c7e744ea957c
BLAKE2b-256 a37d43834c62ccda0966c999a20ff84a47bb4d7b581b643d64e4e8d95a4a21ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0bc8553d251a142a47d943ac77a75360d0f8c4c6b6d8b01bd9d95dd9550067c
MD5 0b4ad391e3500ec6f76103f49dd927d4
BLAKE2b-256 c16ff4b34423b535a18288c734ab62069e35490c227353ea75c9bfe98d62e8bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0ce8007c4f76aadfc43144ef399b7b436d1bc423a7f1890535112be8ac2de767
MD5 f8d75b3d652800d6c81a1eb3bf330b71
BLAKE2b-256 0f128963a1b61ed4e474e9ccc7a58b5941764fbf347734eeb9b45693673906e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 5d288661632c8b0031412b6072ac08bde29bfe60405cc4bfce64b56eef9544e6
MD5 214155cc0a9f41ac74704dc7dc2df51a
BLAKE2b-256 993e8e13b1f676dac1320b06b9872976aa10e75a730363577cda07be7d8ee3e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 33a4c55d5e0c3c22653cc178096555e7f7f621437c7d2a1b0d015b45e3a94284
MD5 78d2271697b4930113dbddec6e93bde4
BLAKE2b-256 808f712b87b31b06e5efee1fee6cec2cdbfe6a6cd98cb1ffec9bd7871138b21b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 e345ce7dbaa7fc044886c4cc8bdcfee22e020cf0f54dd053a226c46ea68fc2e1
MD5 d3cd643b022d5e0bd6b7083ba91da026
BLAKE2b-256 d58912ee877579562998c2e730e366ba12ec0506e0c87650f9b8ff94e1fd86f7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.3.0-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 7fdb34b41d2796ff7028b6ecfb04d9dc0f1e36b6deaf9d0339ad235178e93c95
MD5 0c50404a05f35f08ea9a699ce9aafcda
BLAKE2b-256 ed278dc271c8d0900e3c331c9bc9893e16994381df36d0256c3e75bb604476f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 967c110226bc990e60f8ad847ca9e72f458829b681760889ab466dbb883cca09
MD5 e2b0a6a501e36b5e3842620cb5faeb65
BLAKE2b-256 522509746825e7ff3b9b618824bda45a2fcd35f16ef30b68da488c02917f0bd2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.0-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.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 548f3b3635bb4ff367083b50a0629b8110a330ee2700a607fd08b86b8a7e02a4
MD5 a64d678b80f99932fd45d5ea2b73005b
BLAKE2b-256 1d3d90eac75d39247ec10e92206d5c4111e7737a60ff244c79d84e5e0a128ea4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1a8ca9eee114976f313340c726bf68e3cc394bbf9c7fd863e03f38c36e0bf417
MD5 3f5974b09102b81eb7d83156f64446fb
BLAKE2b-256 83c4f78d55bcb1ffd3658f83e74a61c099441c38f7a95fd37c3e7ba9987ef2e1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.0-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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fad5a47295e40e89e6f159a9e714cc518a9b346baa9cb7df1211af7c40de1555
MD5 91ed110065634d496cfe3b3d20eea77e
BLAKE2b-256 f64971dd45620097fdea2754791539c547d2da683785c468319a86e84341f133

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp312-cp312-pyemscripten_2024_0_wasm32.whl
Algorithm Hash digest
SHA256 892b15132ba1eb570514114f4fb3e2e8d1535f0ccdc0d9f3551f19db702b3e65
MD5 f56f2744724900f62be92f3d677bf4da
BLAKE2b-256 9864a08ea102019702042e059b357e14c5f34b22415219405d08500c50b1959b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5dbdbada8bf7226590420a0740b3c6d444b73e27d5a2b41ffe42a540b25e7868
MD5 2a3de0e8d13a756a3b1fdafcae3180cd
BLAKE2b-256 0cdb57a9e6902a257ad78706dcb835c3003939958cc618c99eafa8639735575b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 54c89b280217b3d2c3a47033b8170e20259b959bd5c9ffdcf6b13d16839b1cd8
MD5 64a05022f5e00e32e8297278dac7f5ab
BLAKE2b-256 1405c5dd4ee90390d57074d2c3e5b954657c3489ff08ac55a03da2881f05f3d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 cd49355fd0184e8598f4b63b5c3a6a59b292338ddc1dd31a675b6380f96e4b35
MD5 ccc4f4ff9e910f15cc8401711ce47ff8
BLAKE2b-256 614a5f222afef2e97e341ff5ac2c13f1bcdd876e0bcec79f5cc3850c73cb0a49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e884e29e4177d2bfd443e1742b3d24751298eebee7e2f1383029cb79484b1019
MD5 72bd52b875869f221b82f64387c0be56
BLAKE2b-256 d41c5f58094afdab5755aad1e536eeb93419abda612975c5214b1d35665dbd6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1dc3721aa3dc3b1de2b969f601da928d87288cecfee7aca40ca07146c37c78a9
MD5 c7b060ebedf63aead266f051bb472cc0
BLAKE2b-256 440b8a0cab96d286739124ac2b268d753526a61165bde5df2a15fd9ad46671aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6d55b02964ef7b5c8c6a3955b2b5ab57104d424546c2d9daba42b55b549c7a3c
MD5 c4873db0c617f063c7d9049b46b76c9a
BLAKE2b-256 1389e1208cd0d08a6c0aab0d8ecc5e7c2f4be87790e4d5df1ae0568009739ecf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4cbcfc87059b67dc10e38ec04c7c0f206cdc7ea458e4013380a4a9273b5b65fd
MD5 437f88673f15c1b3fc789eabb8f28f9b
BLAKE2b-256 250e51973d76597f6a209e8c8d557639145d06dee484cee5f582a44b9293feae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 51989fd781bb37d0af2d68114280e4fa81b257e9e72f279fd49179ef6008b4a5
MD5 26ef8265e672bb20f58a808698fd9e8a
BLAKE2b-256 1e532b9fb324aab6a1c81734e28910a440c6e2183bf75b365442446608c6abe9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.0-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.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 70f12e35e894ea97458083cf539d36cb13aa91c1de08e00398686382ae251d03
MD5 5b16a51bd0b482471685d80d2ccc17a7
BLAKE2b-256 b80cb1b75e31728f9fc3a44121454bb9bcaaf4cdd04978a769b55cd541b3ac09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 11c833d18cf2f14c41cba058166014974c5c9c0707e361ca0a030ac10c720979
MD5 a2f8d221b28cacfa4a3db59cda3b514c
BLAKE2b-256 89c8a7c19d91efad1836fd0a999f5ef771f54c9794d06b7d6358cd8fd85e3eb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 af35166d40166ebc13c46c457e2dae6511a942bf724dd2aca612b4649c36e77e
MD5 bb623f2d0cd1c6266b25883e3ad15748
BLAKE2b-256 c528e39ece77f88846ffec73c81bbfce30aa16d40385d8dd53d8578878e91a75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b11e3ada57af25855e9e309ca9edb14e8c3e43972339f1f823842bcc3e2d5fca
MD5 90d1152aaf3f322fb575a1b49a31f09a
BLAKE2b-256 9940a95954bf6908be05a5fe5f1e6641bf3c145c891eef2bff528cd0bd276796

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2e06552257aa21de05282b458abbbe4855740c7a4f052ebd6c0e88073db72e8f
MD5 01489feacfe6e0be510fe6b2a682d9dd
BLAKE2b-256 a058f7b56246b4b8a6e9e63a5c40c137298e60be7936103dd65aee411aa43877

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ae94d631220a340a028874671a34b4704e77458d9de0e11e7be5043f435de674
MD5 60d222a622b5cd87c7b116e70f74fb37
BLAKE2b-256 bd2ac30b8da5824398ca9800cce9929e9ae70e7a69482ac6f7040f300b175885

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9fa3cf28e664b02de07e7d8aff319e733c633b3c5ca9057ec3553dadf361ccfe
MD5 194c0d4249af8993ea8176c9685ed834
BLAKE2b-256 19a48f2dfbf5c4d72d8146dffe750205fe44f275dc6b21735665ad759b99a0c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9ec0cf04ddd124d2860378302f6b54c757e7d09e41d9dc3c2131e647874cf1c8
MD5 af6d201f39acc798cf684accf7555b2d
BLAKE2b-256 ae75991847c9524390379d36ff2dddfbdb70940dd3422942c611d2faed523f49

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.3.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 817ef6eef2606dd4fbe51961a5f5e840910684af421940fda72a29ef323bf97c
MD5 6cf22f92e97224e54f7dafb924add5ab
BLAKE2b-256 1ec60a04056cd874eb2d86b49030ee26805fb6ef18174d48ec8181911b5496fa

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 60c3699f0870ed1a197bb1d7a5fee0309143c33fb09c6fa9de675024230be824
MD5 7118ba879c1ecf1b15fc170f5a9c37a8
BLAKE2b-256 ccd09ba3375209c310631b06b6788348234dcb104a9f9925371cc05099220100

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 14.4 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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7f017f40a6aa5385f59e1ddd8865d2360e9bef095f08b7ea1e660734df23d07a
MD5 c8fd262d767b9efb5bd93ddf5ee666bf
BLAKE2b-256 3275ae7e13958d9b17cefba1c73501e1022c05137833c892407b010243a5c4ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd22eefd5e07471b07b98042c3dc6170b5bf1ed512fa0c15a1fbf79225af2671
MD5 21c7d21e9b9a3d380e9878f4205172ba
BLAKE2b-256 da10f2e19ae3c8edb795ef41f419319b727069f392a1675e6b577493dba95007

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d43ed05777afa0c9b1065c80f7f98db591cd715a6ffa095453f64d1adb61e743
MD5 95fb2a22bea27a54fcac9da49de7d487
BLAKE2b-256 a7288176cb7f34345ef73968654638907f822869ae88ff78517a6e7029c146ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5cb74f7cd4633ccd03db91582348dfbacdf81433ae538cd638e10a409d580986
MD5 a851ef895eed24adf0f8c8d1aa990536
BLAKE2b-256 a58b990e826869fa790a2ed1721f6812db1245b24ea4035d17cd01c0ab6f90ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 570824ef5e6b16ca4dad22323f790defc21e266c0b3beeb1f0ffc081f97b6d51
MD5 91d2f72821c085531928422ca0c9def0
BLAKE2b-256 9f215544261bba8a5b77333d125dd877202520df61869c2f2c1e83018aeb2972

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a6d1f9c82c137bca54997527c34dd7b5638c2b886ecd3553c65310211534e1d8
MD5 42527d4eff579fcdb6124d32cf50e693
BLAKE2b-256 cc3ada8a98ec3562975d9ac4804f8593b4472376c112cf729480fa1d7c06a6fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ca9a874cb140a3ae808c64783335827c68488a40375bdacbaf78a08e9a3cebc0
MD5 4fad688ba6523524cf094e14d8127d82
BLAKE2b-256 9a507593f59d9cd556c3d3f80c5153b5d664e452d531592e838e2d4635f64203

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 937e7e6eecc80de7de04777851677c7e06664b209cf1938c94a87afb26592fd5
MD5 bbab121f45e0cef6a39d0a9a914ca500
BLAKE2b-256 dc48119a8dd4e350579be1ca3147ed256a3c680bd7391adb4bd0f7e1a4d45b22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3a762d86998ae33076935c5a67304d1b92ea62d0e3cba0f2f4daf3db87e513b6
MD5 b228f00bcebdc38046bd2ca5050863f0
BLAKE2b-256 df9d94b57fd1a656613b92723271c857cfc0b7202ee0418d53d81ca997859931

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.0-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.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f3578d7e01bca05e220e0ff1ed6222ce8b03e3623937b50bed6f76653bbec039
MD5 e70f0cc8f4a6c248daa9843e8ca15651
BLAKE2b-256 adf55892007645ba219aaac90c31f08991428cf324c808beeaf6a9a9e96239f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 99bef3483e2665278759ced0dcddf252ee333a8f17d832afcf50bee2cb393ba6
MD5 763259d08e5d01de187caf126435461a
BLAKE2b-256 24235eb424bd29e7e5c60ea509b86df2b4933be97b5f4c35d729d7a2958594cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6bdc6b4c5f4a6b7c4523cfd7db032490de47d5fc325cca873395b5f448ba06bf
MD5 01263732ad7bccac488d3e3364d6141c
BLAKE2b-256 2997652b71dbca27a85a8d9b692fc0a1f17a71f62b9c938555639f5dc76e30ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 850583e48159956d9c2f023fc7b1062e0151a0842426cb7669cdc4e7974d0c5f
MD5 e0511a6c1f3618cfcc1785c90d61da3d
BLAKE2b-256 ac6bc9fd1d78a8d68a8759b1da6527aefe704bb74a8ef6dde714ce75dfce171a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 48e2ce5ff02bf9be2d70e79a411e1687185ab2310402e1c40773cea773384a70
MD5 b5671b6b0b50aa68312c7804b149295a
BLAKE2b-256 153f885ab5273754ea45b88ad5c726989d3937641ee23d654d455c7b3c7dc69a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a05bbacb7c92c682e07da3bc13be8ec99b8b6bd9638280acab705e6b1284553a
MD5 1af152237621ad2ccc4a6d2c1279d823
BLAKE2b-256 b9dbe4b0f4582d8c09144ce5662e14045b8860ea9fd75e00ba566316b8e48400

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3bfe4669285ecc65fe60b184a54c71b5149fdda8a4c04ad54f0d77804cd2dee
MD5 22c39bfbbdd460cbda4897be5bcfc2fc
BLAKE2b-256 9e8e77ef1691d9d7b9bfa58dc2789df627818a699bd774b30fdfe775be8e516f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8305fd5463f278170e6ecdc6f373e72f6e7b095057ad1d35b734231eab3ef8fa
MD5 bbf76689e9223c2e86749c8eb4d37af2
BLAKE2b-256 4fe81b98c6b7aa8524f3d19d475c8c8151766d5649b75552377bf76de1efa7f0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.0-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.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 651cdb44753a3484d15c4230fbc7ab39b462683e4e3fb605feb49000e514d84a
MD5 de44ca0bfc25e4d8ee9443d41150e9fc
BLAKE2b-256 3b2a2f7a559c5df0f08e4db7b2a780dd2ec00d34e814f996385436c65f5c0300

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 91e8b33c8aac5c3d3f0ea8e60a73ff9518998738bdcc272c8d128e685413033d
MD5 15d3109931f14dafcfae3473b23836d3
BLAKE2b-256 dfaa4a53939c154df5d97cc24f51d3d8b386d81df70b74741da9e44be8ff1e35

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 14.5 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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3d54917ce2b14f3a9b5d7422e2f4e4362dc39ab4615070b3c6a77afb1ddce527
MD5 559f7cd7bf195be5e63a1c4fff9d03b8
BLAKE2b-256 c81035c362242099f52e155c876cd4e045c967bd19326f1672837af1a8803912

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a9ca5ecd106605aff621e36b3ed7a514c753661e1b009c054e68ee1001df441
MD5 2ad8dac6290f1fd6e9dcd1ee715416ef
BLAKE2b-256 a4cab2b627e9d565af1e575542ec1b0a9fb291254d7ed006bdf791db76bd5888

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 62e68b043acc8a134836657635a386f43237fb589175e439a73d62cd62fa53ac
MD5 ab24d13bccb62cf01a0fe5d845293f04
BLAKE2b-256 6ac90920f5324ff8a1fc7b698317288c84abc7b32edf033676171ec07b77251d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 54e4b9874e3b3a20923345ae2d6d43bfa264ed5d0cdbf32145fe797748d3294c
MD5 84093d7891b748b884363fc7fe331af0
BLAKE2b-256 269843430757dd49400d929bf7d03b903ca8e0a6978d8f05e297c77171a85782

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 da00202fc7c41b37ba6303be0e98e3299251fdedbc3a3a9382806bb65c1389ce
MD5 408bb7fe8b5749637f2f2acec0d3fe0c
BLAKE2b-256 3bf8b03c2634443419536d89ccf222d1c8b90a6ae8d6057469097cddffd4257e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2fc276555644dc7e87082cad9c5a9ae05c292e8901f21f4d814fd5d11aac9773
MD5 bd08c5cd3fbe475c7d5653a9c3cf8791
BLAKE2b-256 d44f813b58b2ef056c54792f1c54dc17b3ee61a342176a2393268ff7f671e7f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ef979ad01298fb763ef7ec3946ab3bcd1811ffb81879a0e25f2dcd3572f3d56d
MD5 0de50a0357c265ef1a594d2776c20080
BLAKE2b-256 31b30eab9dfd1a74945301e33eacd21a4d10f2a0b2f88621e8a9b28d5612b062

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 41bf8f4ca109699555b1adb7012fb971646e49d6f51b174a0a11bea3b4771ae9
MD5 9cc1ed45be20ad9c547d6e6b30664129
BLAKE2b-256 38e99b9313823eba98f0f3c4da1976a91c17a6942fa520f892c2328a166acebd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e76a87d077c0c8389b453efe2a7804de4570df9b107165b6c2c13b8d495dca55
MD5 42ff6a20aafa65c332499daa831a81cc
BLAKE2b-256 dec31c6db2b859965d62df6bf971e113bdf7ff6b65410a8657be363c9b1182cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.0-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.0-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.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a9f876052f0ac297b22f5792e07b3f1e9378678f8c5127222cb6da83df1789eb
MD5 8406856d6536d9705b8d5c9c577c8ef5
BLAKE2b-256 f71414134397a3e0689974177c692645aa3630a543677d2d7f5fd3a7735776cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 bff9129d3ae5bd5cf2d3b115c682e8691092872ac070dc8eafc91c55f20780c7
MD5 dcee0db13971416c7ea2ac7722fae356
BLAKE2b-256 e3c0c1f3f444b18b61e461a546b0d56e3a0631e2efa851dfd590d2eb659eb9c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0a039e07bb860193419f3083383ceb976e2ddbf224e01210e083df6c9cf7150e
MD5 266fc41c31dcfad6eb9a63dccbe48174
BLAKE2b-256 8e34ec507077e78c8e7a8814f8268b1bfac84aaba8c896566331bf6bd31bb61f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 fcb1b15430ca9aeaac2ade8ffee79c274a78566cf8428182c9f9c1f780724a2c
MD5 65eaf857b73ff60560b05ddb54eb3fc3
BLAKE2b-256 6c519f7b956bb92310fbcfb0bf80160613245dfe470cd4465739d4dad5babee4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 15d1e7c078fae7486b6d1af6c8c2b2684a6ea4a19ce7f645fca28b4a8b320739
MD5 a4edc3f5d70f9bb6279698781c78acc9
BLAKE2b-256 23d63ab5012e4d3700a3059f8fc73dd8d61c66f734490604323f2c8b1b3a8723

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d3e8a104c67660561bb38a11dde18cb183b153edc6f0506d109aff0a4b626c72
MD5 4d7c3f941fc0e3073d7b740d1ee05cf5
BLAKE2b-256 58ce104b1ec5921ca4c61d2f73b245553a79c065de963878bb0dfb7b8556e273

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b16f14fa786439debda070ddae17f8ec5034c1cb95df520655f7141b9d07a367
MD5 686ca8557e9c98bafbaf3cd4ed93e171
BLAKE2b-256 0cad196c73b21e8aada02d579a45006ebf934153b3e92117d18dc8d92f81ec09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7d774ef44b18967180ac98b97ec09ce264ca111ce3d6a094babe8558d30f2ff4
MD5 e1f609df232bb26512c4ab7d3aefe0d1
BLAKE2b-256 2f4808120bd197ac852c57e33a43db3bfd5bbd2071aea4eb4e3524f4fa5d67d8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.0-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.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 d9f77dcd59bcf89bbbecb38207c9b9de7b7b08f15c162172982881d879e2c4fe
MD5 c639daa6e726a2ffa881f6916aa9e239
BLAKE2b-256 0d2f5b47f235b199eb596da468e661c54bb569d7dec7d3dad00b94c2a50b3802

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.0-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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4450ea8794c8e412a996456964a2cc49ac0d60e520474ec674e878086e95ca20
MD5 f169c033f203e7f4aa55f9f7741e2474
BLAKE2b-256 c9e58658188cde16be0cd341752f8e4f9a655127f75ec80954cc9c8e5f68e77e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 14.5 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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 be0c490a9e2758e0f3bb2cdef09d48c7dfec6ad57049590909506d136e1ae1d7
MD5 f8902ca45e211a5a99df1310cee50a8f
BLAKE2b-256 2819d96c2aca0c8c007e95e2960349d71efd556ed44abdcc190d5741db672226

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 55.0 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.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e814c58f549d6e271cf09a2715e1c5594f9869613053373c78b9d347154d6f35
MD5 20300354101e0383f53c14adbc19c59c
BLAKE2b-256 d3a516080ca1d7d9e769c3fc1e4e69637bfe4d6524be361bf1ea366276a7029c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.0-cp39-cp39-musllinux_1_2_s390x.whl
  • Upload date:
  • Size: 60.2 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.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 aedbfd76a169d56a8a9080147c85af6e7654cc29c0aff7493e2e44829690bb5a
MD5 f634924e9ca8f1e6eae9198df8d77440
BLAKE2b-256 5cfb3c8274c14d510041bd7f9e3a69d5560f5a0989abaac92bc8909f45c5f4e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4eef7345231eaa8cc03fb6d7b162b3deaae6f359fffa17b32e2abd1a4aa65dfb
MD5 9a16234154aae483076769491226b379
BLAKE2b-256 450252bd9d290aaede9a655b0ccb1e8545337807a9fb7a4e89482391d11c384d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 44d3ba3cfd7836d2de9d5b9920a389f7639fc4aa1d3bd8322cdebcc607d467c0
MD5 f6fd560cdfc08019648c216420e0c639
BLAKE2b-256 93094a7b3f46e312d0fe9763f02f7b1b4d7c291f3d08be358306832a22fb601f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.0-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 54.4 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.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 26681365fe2fd61228bb7f75b8d7cb7cdc035eb62168b955a884fe24149d4ad7
MD5 6c51fa8270c26f7c32d14abbe53b7919
BLAKE2b-256 474637a95ae7ffbc613031a1ab0bc6b3770bf849e60c4657c83f3507bb9d2461

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.0-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 55.7 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.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8100f6a1485a80ed9a4cd0b4f79a334cf50fc4eb02dccae74bbc8fa518c7a396
MD5 de7904e37d006d2cb4d8a43aeeef5bc6
BLAKE2b-256 cac0bc904c040f103b4e8d650c42aae797872109f8f922ceadcc9c4bee2436d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b46c7c8fe66250b5b315333c416aab467525c60b177bc90df9f252b1dd64f33
MD5 4c2b07b06a647459199443762c5d71be
BLAKE2b-256 38ddaa4c543a27527665ecf36abab4f4fa73572984475b9a3b3bd7a8e98f27b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d9f27843e669b444c6d51e449b4f5c467a272f0e77eee7ad2c51cccf1419b959
MD5 64a477a68d66f2f4547cd08b62906d10
BLAKE2b-256 edb4fbaf91594c24d3a8e13e7c9a2a3fd2d78bc065f9fd55ead142bcf3909dd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.3.0-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.0-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.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9cca515cd05e16afad12d5c8c4ae065402de45a117a4d10fe68c688b2a0486df
MD5 5af9136238101615b36b165bb48e1121
BLAKE2b-256 b715ca0ea0a92794fe0ba98551446d4bf436f63e96a9ff0e6ada13841fb8db73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 42f4aeb0735ec378245490a5b5ed5cc128a546ba1b8d5ddcda50eddb64f79012
MD5 d8ba36c7f54579dddbd24c27b9256baa
BLAKE2b-256 10790d2a64e7d110261d80effd1539ad44f0604fa6f15ce7a48f2c877ac48e62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f00d2b8517261e497ecf9a84c1716372ac40a96e1d095a2bf828b418c5a4228d
MD5 a4480376ff198339f7738245ae07159e
BLAKE2b-256 bd08dc04416eb5c8da5f162b6d1fdbe02ae2f67bc6b17c422bd50db2e78fe0aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8558035dadf491166194f374659a83cbd18cdbc84a5877928a3a3dd08b74b21c
MD5 ed7f488bbfa92c6286956a435d83d56b
BLAKE2b-256 ed6ed61dc37a03e2b1e45e5c8b4be58b6bea6ad3c0d00828a9979c49b3d16b26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1bfaa276b283b5aa96ffc50897155ed647059f5b6f20c38260e1dc337bfb1a82
MD5 e9ed499b77dc33df9a484f39450aeb54
BLAKE2b-256 71e3643f6736da58294dcdae10e4fece00e75a1058c44f46b193ce225187dd5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c41fe9a7baa1eb324959ad35e0bce39017661fd017416071a90e563f16cc2e56
MD5 a810f8c5f2c43d3e9a3ffaca50efbbe2
BLAKE2b-256 c649672589cb208ceccb41feef0fea7e337cf9ce1cf90fe8c957591396bda8bc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.3.0-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.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a876ccbe9908e79dfd9b8208ee367d1d5b2d555991b1a8e1dd346bb73bea667a
MD5 3c4d12de00603075e6adad4b16db3125
BLAKE2b-256 d42732ae0545bbd629d0ab142527c58a5d2459b39c4bb6b18893a06ead998237

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 15a2316a03faeef2b11f216cfa89a1c07b1ccf0c28bff2c31ab867c8eb2445ed
MD5 9bd10ed8e14c494bed7b74dbbaf4e39e
BLAKE2b-256 ffdf538a2c712e291c85e1e22987a095f248609d9bb46d2998ab7fdc06a05156

See more details on using hashes here.

Provenance

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