Skip to main content

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

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

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

Installation

$ pip install xxtea -U

Usage

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

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

XXTEA Type

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

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

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

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

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

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

Padding

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

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

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

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

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

Rounds

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

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

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

Catching Exceptions

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

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

Download files

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

Source Distribution

xxtea-5.0.5.tar.gz (20.8 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.0.5-pp311-pypy311_pp73-win_amd64.whl (14.9 kB view details)

Uploaded PyPyWindows x86-64

xxtea-5.0.5-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (13.8 kB view details)

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

xxtea-5.0.5-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.0 kB view details)

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

xxtea-5.0.5-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (14.2 kB view details)

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

xxtea-5.0.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl (11.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.0.5-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (11.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-5.0.5-pp310-pypy310_pp73-win_amd64.whl (15.0 kB view details)

Uploaded PyPyWindows x86-64

xxtea-5.0.5-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (14.0 kB view details)

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

xxtea-5.0.5-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.2 kB view details)

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

xxtea-5.0.5-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (14.3 kB view details)

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

xxtea-5.0.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl (12.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.0.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (12.0 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-5.0.5-pp39-pypy39_pp73-win_amd64.whl (15.0 kB view details)

Uploaded PyPyWindows x86-64

xxtea-5.0.5-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (14.0 kB view details)

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

xxtea-5.0.5-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.2 kB view details)

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

xxtea-5.0.5-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (14.3 kB view details)

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

xxtea-5.0.5-pp39-pypy39_pp73-macosx_11_0_arm64.whl (12.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.0.5-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (12.0 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-5.0.5-graalpy312-graalpy250_312_native-win_amd64.whl (15.1 kB view details)

Uploaded Windows x86-64graalpy312

xxtea-5.0.5-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (14.7 kB view details)

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

xxtea-5.0.5-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (13.7 kB view details)

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

xxtea-5.0.5-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (13.0 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

xxtea-5.0.5-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl (12.1 kB view details)

Uploaded graalpy312macOS 10.13+ x86-64

xxtea-5.0.5-cp314-cp314t-win_arm64.whl (14.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

xxtea-5.0.5-cp314-cp314t-win_amd64.whl (15.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

xxtea-5.0.5-cp314-cp314t-win32.whl (14.4 kB view details)

Uploaded CPython 3.14tWindows x86

xxtea-5.0.5-cp314-cp314t-musllinux_1_2_x86_64.whl (61.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxtea-5.0.5-cp314-cp314t-musllinux_1_2_s390x.whl (60.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxtea-5.0.5-cp314-cp314t-musllinux_1_2_riscv64.whl (52.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxtea-5.0.5-cp314-cp314t-musllinux_1_2_ppc64le.whl (64.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxtea-5.0.5-cp314-cp314t-musllinux_1_2_i686.whl (61.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxtea-5.0.5-cp314-cp314t-musllinux_1_2_armv7l.whl (61.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxtea-5.0.5-cp314-cp314t-musllinux_1_2_aarch64.whl (59.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxtea-5.0.5-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (54.1 kB view details)

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

xxtea-5.0.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (62.7 kB view details)

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

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

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

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

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

xxtea-5.0.5-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (59.1 kB view details)

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

xxtea-5.0.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (61.8 kB view details)

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

xxtea-5.0.5-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (59.7 kB view details)

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

xxtea-5.0.5-cp314-cp314t-macosx_11_0_arm64.whl (12.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xxtea-5.0.5-cp314-cp314t-macosx_10_15_x86_64.whl (12.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

xxtea-5.0.5-cp314-cp314-win_arm64.whl (13.9 kB view details)

Uploaded CPython 3.14Windows ARM64

xxtea-5.0.5-cp314-cp314-win_amd64.whl (15.2 kB view details)

Uploaded CPython 3.14Windows x86-64

xxtea-5.0.5-cp314-cp314-win32.whl (14.1 kB view details)

Uploaded CPython 3.14Windows x86

xxtea-5.0.5-cp314-cp314-pyemscripten_2026_0_wasm32.whl (8.6 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

xxtea-5.0.5-cp314-cp314-musllinux_1_2_x86_64.whl (57.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxtea-5.0.5-cp314-cp314-musllinux_1_2_s390x.whl (57.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxtea-5.0.5-cp314-cp314-musllinux_1_2_riscv64.whl (49.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxtea-5.0.5-cp314-cp314-musllinux_1_2_ppc64le.whl (60.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxtea-5.0.5-cp314-cp314-musllinux_1_2_i686.whl (58.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xxtea-5.0.5-cp314-cp314-musllinux_1_2_armv7l.whl (57.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxtea-5.0.5-cp314-cp314-musllinux_1_2_aarch64.whl (55.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxtea-5.0.5-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (50.8 kB view details)

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

xxtea-5.0.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (59.0 kB view details)

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

xxtea-5.0.5-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (62.5 kB view details)

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

xxtea-5.0.5-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (63.3 kB view details)

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

xxtea-5.0.5-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (55.9 kB view details)

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

xxtea-5.0.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (58.1 kB view details)

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

xxtea-5.0.5-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (56.1 kB view details)

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

xxtea-5.0.5-cp314-cp314-macosx_11_0_arm64.whl (12.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xxtea-5.0.5-cp314-cp314-macosx_10_15_x86_64.whl (12.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

xxtea-5.0.5-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (12.1 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

xxtea-5.0.5-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (12.3 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

xxtea-5.0.5-cp314-cp314-ios_13_0_arm64_iphoneos.whl (12.0 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxtea-5.0.5-cp314-cp314-android_24_x86_64.whl (13.4 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

xxtea-5.0.5-cp314-cp314-android_24_arm64_v8a.whl (13.3 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

xxtea-5.0.5-cp313-cp313-win_arm64.whl (13.6 kB view details)

Uploaded CPython 3.13Windows ARM64

xxtea-5.0.5-cp313-cp313-win_amd64.whl (14.9 kB view details)

Uploaded CPython 3.13Windows x86-64

xxtea-5.0.5-cp313-cp313-win32.whl (13.8 kB view details)

Uploaded CPython 3.13Windows x86

xxtea-5.0.5-cp313-cp313-pyemscripten_2025_0_wasm32.whl (8.6 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

xxtea-5.0.5-cp313-cp313-musllinux_1_2_x86_64.whl (57.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxtea-5.0.5-cp313-cp313-musllinux_1_2_s390x.whl (57.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxtea-5.0.5-cp313-cp313-musllinux_1_2_riscv64.whl (49.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxtea-5.0.5-cp313-cp313-musllinux_1_2_ppc64le.whl (60.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxtea-5.0.5-cp313-cp313-musllinux_1_2_i686.whl (58.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxtea-5.0.5-cp313-cp313-musllinux_1_2_armv7l.whl (57.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxtea-5.0.5-cp313-cp313-musllinux_1_2_aarch64.whl (55.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxtea-5.0.5-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (50.6 kB view details)

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

xxtea-5.0.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (58.8 kB view details)

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

xxtea-5.0.5-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (62.4 kB view details)

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

xxtea-5.0.5-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (63.1 kB view details)

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

xxtea-5.0.5-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (55.8 kB view details)

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

xxtea-5.0.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (57.9 kB view details)

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

xxtea-5.0.5-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (56.0 kB view details)

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

xxtea-5.0.5-cp313-cp313-macosx_11_0_arm64.whl (12.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xxtea-5.0.5-cp313-cp313-macosx_10_13_x86_64.whl (12.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

xxtea-5.0.5-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (12.1 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

xxtea-5.0.5-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (12.3 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

xxtea-5.0.5-cp313-cp313-ios_13_0_arm64_iphoneos.whl (12.0 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxtea-5.0.5-cp313-cp313-android_24_x86_64.whl (13.4 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.13

xxtea-5.0.5-cp313-cp313-android_24_arm64_v8a.whl (13.3 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

xxtea-5.0.5-cp312-cp312-win_arm64.whl (13.6 kB view details)

Uploaded CPython 3.12Windows ARM64

xxtea-5.0.5-cp312-cp312-win_amd64.whl (14.9 kB view details)

Uploaded CPython 3.12Windows x86-64

xxtea-5.0.5-cp312-cp312-win32.whl (13.8 kB view details)

Uploaded CPython 3.12Windows x86

xxtea-5.0.5-cp312-cp312-musllinux_1_2_x86_64.whl (57.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xxtea-5.0.5-cp312-cp312-musllinux_1_2_s390x.whl (57.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxtea-5.0.5-cp312-cp312-musllinux_1_2_riscv64.whl (49.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxtea-5.0.5-cp312-cp312-musllinux_1_2_ppc64le.whl (60.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxtea-5.0.5-cp312-cp312-musllinux_1_2_i686.whl (58.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxtea-5.0.5-cp312-cp312-musllinux_1_2_armv7l.whl (57.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxtea-5.0.5-cp312-cp312-musllinux_1_2_aarch64.whl (55.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxtea-5.0.5-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (50.5 kB view details)

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

xxtea-5.0.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (58.7 kB view details)

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

xxtea-5.0.5-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (62.3 kB view details)

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

xxtea-5.0.5-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (63.0 kB view details)

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

xxtea-5.0.5-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (56.0 kB view details)

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

xxtea-5.0.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (57.8 kB view details)

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

xxtea-5.0.5-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (55.9 kB view details)

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

xxtea-5.0.5-cp312-cp312-macosx_11_0_arm64.whl (12.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xxtea-5.0.5-cp312-cp312-macosx_10_13_x86_64.whl (12.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

xxtea-5.0.5-cp311-cp311-win_arm64.whl (13.5 kB view details)

Uploaded CPython 3.11Windows ARM64

xxtea-5.0.5-cp311-cp311-win_amd64.whl (14.8 kB view details)

Uploaded CPython 3.11Windows x86-64

xxtea-5.0.5-cp311-cp311-win32.whl (13.7 kB view details)

Uploaded CPython 3.11Windows x86

xxtea-5.0.5-cp311-cp311-musllinux_1_2_x86_64.whl (57.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxtea-5.0.5-cp311-cp311-musllinux_1_2_s390x.whl (56.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxtea-5.0.5-cp311-cp311-musllinux_1_2_riscv64.whl (48.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxtea-5.0.5-cp311-cp311-musllinux_1_2_ppc64le.whl (60.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxtea-5.0.5-cp311-cp311-musllinux_1_2_i686.whl (57.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxtea-5.0.5-cp311-cp311-musllinux_1_2_armv7l.whl (57.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxtea-5.0.5-cp311-cp311-musllinux_1_2_aarch64.whl (54.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxtea-5.0.5-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.0.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (58.0 kB view details)

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

xxtea-5.0.5-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (61.9 kB view details)

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

xxtea-5.0.5-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (62.8 kB view details)

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

xxtea-5.0.5-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (55.6 kB view details)

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

xxtea-5.0.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (57.3 kB view details)

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

xxtea-5.0.5-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (55.6 kB view details)

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

xxtea-5.0.5-cp311-cp311-macosx_11_0_arm64.whl (12.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xxtea-5.0.5-cp311-cp311-macosx_10_9_x86_64.whl (12.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

xxtea-5.0.5-cp310-cp310-win_arm64.whl (13.7 kB view details)

Uploaded CPython 3.10Windows ARM64

xxtea-5.0.5-cp310-cp310-win_amd64.whl (15.2 kB view details)

Uploaded CPython 3.10Windows x86-64

xxtea-5.0.5-cp310-cp310-win32.whl (14.0 kB view details)

Uploaded CPython 3.10Windows x86

xxtea-5.0.5-cp310-cp310-musllinux_1_2_x86_64.whl (58.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxtea-5.0.5-cp310-cp310-musllinux_1_2_s390x.whl (58.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxtea-5.0.5-cp310-cp310-musllinux_1_2_riscv64.whl (50.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxtea-5.0.5-cp310-cp310-musllinux_1_2_ppc64le.whl (61.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxtea-5.0.5-cp310-cp310-musllinux_1_2_i686.whl (58.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xxtea-5.0.5-cp310-cp310-musllinux_1_2_armv7l.whl (59.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxtea-5.0.5-cp310-cp310-musllinux_1_2_aarch64.whl (56.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxtea-5.0.5-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (51.4 kB view details)

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

xxtea-5.0.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (59.3 kB view details)

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

xxtea-5.0.5-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (63.6 kB view details)

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

xxtea-5.0.5-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (64.2 kB view details)

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

xxtea-5.0.5-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (57.2 kB view details)

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

xxtea-5.0.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (58.4 kB view details)

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

xxtea-5.0.5-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (56.7 kB view details)

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

xxtea-5.0.5-cp310-cp310-macosx_11_0_arm64.whl (12.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xxtea-5.0.5-cp310-cp310-macosx_10_9_x86_64.whl (12.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

xxtea-5.0.5-cp39-cp39-win_arm64.whl (13.7 kB view details)

Uploaded CPython 3.9Windows ARM64

xxtea-5.0.5-cp39-cp39-win_amd64.whl (15.2 kB view details)

Uploaded CPython 3.9Windows x86-64

xxtea-5.0.5-cp39-cp39-win32.whl (13.9 kB view details)

Uploaded CPython 3.9Windows x86

xxtea-5.0.5-cp39-cp39-musllinux_1_2_x86_64.whl (58.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxtea-5.0.5-cp39-cp39-musllinux_1_2_s390x.whl (58.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxtea-5.0.5-cp39-cp39-musllinux_1_2_riscv64.whl (49.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxtea-5.0.5-cp39-cp39-musllinux_1_2_ppc64le.whl (61.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxtea-5.0.5-cp39-cp39-musllinux_1_2_i686.whl (58.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxtea-5.0.5-cp39-cp39-musllinux_1_2_armv7l.whl (58.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxtea-5.0.5-cp39-cp39-musllinux_1_2_aarch64.whl (55.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxtea-5.0.5-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (51.1 kB view details)

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

xxtea-5.0.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (59.1 kB view details)

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

xxtea-5.0.5-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (63.4 kB view details)

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

xxtea-5.0.5-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (64.0 kB view details)

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

xxtea-5.0.5-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (57.0 kB view details)

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

xxtea-5.0.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (58.1 kB view details)

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

xxtea-5.0.5-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (56.5 kB view details)

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

xxtea-5.0.5-cp39-cp39-macosx_11_0_arm64.whl (12.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xxtea-5.0.5-cp39-cp39-macosx_10_9_x86_64.whl (12.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5.tar.gz
Algorithm Hash digest
SHA256 e4c537689cd06e589b036f20b53ea0e852cb89f2150d8e995e8f5e51d375f714
MD5 4b5a2219c361dcad6c173fc1cb9901c0
BLAKE2b-256 450824912ee783c0ae4c89cee5848dee99667033ced314db5e19f27c3b97a23c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 069d3155161cdce72906425c1b1a1fab97b95d96b566f0af7ef70a95d77912c9
MD5 2240986f700925593370c5742ce6608d
BLAKE2b-256 477280e3b54f8eaa3dadd5e0826dc1e7dca7c82d822ce2dae5a726a5621f9d2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.5-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.0.5-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.0.5-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a411f822614059b8efc6a4e539faf590cc898a29bb957c57ffbd832f836ea003
MD5 e56e7d92cd6b8c5e2886e7d45d4ae081
BLAKE2b-256 0e96c581d251eebfd5079be2bd68302fdfbe74625808c2361aabe6bef39495b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 381a3bfe36b6607bb87f0f96b3e17b21b13deb2a0e9182f08f7bbbb4e7aa81f8
MD5 9334e9863d6e9f806a0ea639f9b78769
BLAKE2b-256 84a16694c66e774c256b1655372ce13b983688ce9dfb662a80ba07876c1404c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 efbeab04f9d278250b2c0b8d7ae04e5964cbbf957ff5ad4244b62a35667404bc
MD5 dcdb71ac5a760330d99ecfecd897ac54
BLAKE2b-256 64ee7f2240cff5d71d0e7b4109bbb07eb0cead373f93638d8a61fc78195e3514

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 095fb04847c2f61a29b38fd1a3a251c79a4e41fccb0732046733355545896d37
MD5 1cdad9f000f6395a67766193a867a940
BLAKE2b-256 be9c691cf5ad264ae74c807d77727794176f274e4f376b00520460dbbfb31642

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1a4ae884316feffb02ee3cf47a639b72cf7446f15438c6507fe142055a6058ca
MD5 944412d5dcae2e7a08212a65df9ab361
BLAKE2b-256 710fe969ae4c01f4a6770e3d693c5659bcd66a1d2db6742525e5316697c80513

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 19c38721bbec2cab8ac441a7c5ecf5d1c5dd2116adee75e5b4dd20087f778e53
MD5 8b962f06b073d1ad8de682fd89ae6bef
BLAKE2b-256 b69d87b57a49b18db378abcb3a28248cd047be2978886cc6e4fe1d3520674dfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.5-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.0.5-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.0.5-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 324254fc2461561874eb8e8dec8628779a46a9502755f1cc812b63551db1f39b
MD5 352806826fcb0f099ff765c65c58a677
BLAKE2b-256 9c65aa98a8062809532aabecbff5569ad13c51e71123be07c6499b452e2cc711

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0f70c1f92d67f0b4521b5dada29f0e91c06b6a0d623f2f3b9cfea807df938058
MD5 f69fe63d7aa0aec309d5d66461307769
BLAKE2b-256 265ff1ff6f25adc3b9f820fe6aa77974940c8cf140176f3db078cb2db7e1dc1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ce817c97f74c4c907eca0083c7b35add49e78ba49eb45c36d166f828f1f86eae
MD5 5c737b97f1a9cd9e70e0bba721473ff5
BLAKE2b-256 7b88594d65724b09c1fd95a938805f0c24246ed4357bf5c124abaec190aa7946

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4187f4ee1c56fc2981320081ec3a677101b7c974f4a7c1f2b7d18bd4beee9c86
MD5 72fed34ba2f09b909318f579a1dcea63
BLAKE2b-256 11bdfac5d137f1e10911e6ba4abaac9522028fe7fd64a9b3d5572acf300ba63e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f0f0f580487d7de929c508431ddc2bfcfc812a3c13b03dc4c6c90edda1ae55e2
MD5 d830129cc7ff003bf947019a3368241b
BLAKE2b-256 766c35e445e8632fcad2de855f355e22c15ff0e1776eb66ca5005738c86bd511

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 306ce274c4b4fead8075abbec6a9d479f5666e73407e3ee229ded67cc17be928
MD5 b38e4361fcf19b22e969ff57e97363e4
BLAKE2b-256 5f267381a9a02638c880bc3e0803a18cf958a489edd9f06462242bc7b99cdb9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.5-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.0.5-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.0.5-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 944b3d788f87f04962cdb941dc06eca0d6dccb24e3ef268f78d9f3175010199e
MD5 8619c03e6d5b4c516bd5a97160880b67
BLAKE2b-256 b4562c9bf5d3dc0548a8c2551209b4297ad80e81f8778e65bcc5195ddf8e5a76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2d23063707b91cae56252db396c513082c203d84c0fd1276df6e930a596a19d3
MD5 e991dbc1eabb5ebfd4b20b550c3eea7e
BLAKE2b-256 5e1ac567631bf39ec2ea36bc5462c49342c47442edabe2b16bc6e33a44960797

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 8ba94b3117b7e374baa2ee1dd0b14664dd9306803c1bec781ee6422301a7a7b1
MD5 e4e54b807df048de585051226581742e
BLAKE2b-256 19adc6b148a84ddc4a5d41c035aa3731bccce7c3c178231e9af7c3907ab7ffef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ed294a9e96ccae2fdf2ee7e1202b985273ee0a644fe684dacbac3c4810f35e7
MD5 1808ed19cc051151cc4509988fcf89a6
BLAKE2b-256 32e08b0d9caf43e87d40ad2c7e54ac097cd320a072432c716f18f33a524b4543

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d6c7d2138a7dae09086c98ef82eddacc0627084ce9feea6488fa6dbe94d626df
MD5 14222d25d9c1e3f836fe71076f437045
BLAKE2b-256 aa313300fb4ab9ef88f5ee4f9a28b2d46d0eb10909cab65f39108de483284560

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 ada6329837a6daa21462bc95c5b49f4ca916f28a430ba34d9b77e3ba82ac3183
MD5 5de81ac6fdd09d93153b510a01c84c15
BLAKE2b-256 2f9db87152caef3c4fcfb18e5e148a99fdc6454c8ec88beffc5da635f4131f52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 403f7c69227c9c0248e90a25df40e2bc45f32f35684559d1825bbb0de43ce583
MD5 f334b32e32cd5764c92beaf15cc8d0a4
BLAKE2b-256 4cc9c5bf51b00541b5657550d2d92e0b60a8644284f041ab4b91e40a392f540a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.5-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.0.5-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.0.5-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 bde801981df0dc731c0d9156794ce091d5bc374359fb19526b5ec79f208e8d03
MD5 cfa6374817747797f52767f7926cc9fb
BLAKE2b-256 bfde574b23d44e91568d587e7dd0049baefe3e8aa2f03a4d652cb5756577ae2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7621b4f216e66ed772f0b42706bac4cedf4cc9777757dd1a3e929a4291c69d5d
MD5 5989ce7f71cd8613a4f95d0cefb80bc0
BLAKE2b-256 e82507e3ab8eca73e309d85ca068153f1dd156608e602b47a59916dbf1318ffb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1e75f4d608050e00ed1222f38ee5071e3e9f6ef7173c1119d242d4564fe13fb5
MD5 49e764828cff6e90f888b1cf5c6e0bd6
BLAKE2b-256 78ad2b18492fc78977d2842d06dc45a3b9a9bd2513db6832dbdb2fe4a6e124a0

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 d7d3e0631d9260acdd8d783d9755b866d8945c7c2446541548e2216aa652635e
MD5 25facf50d471a14af8dbd6e53e7ef9ec
BLAKE2b-256 a688c68002984566fc6abd82cfaaafc79415f85b3ca12199b761281d7b01a919

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 745ecc91b62f0d9cd824f3f16c3c225fd82a5a0234460817e6e3af2c6fa1675d
MD5 4db751be272d0e47e283c15500dd4484
BLAKE2b-256 67f5b69c3a50c9a6900eef50d5531e04cabcaa22d6e26da550156a3c5b0b4fb8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 c4331ac5b5703ff586d0756dfb3191bbf916e6eee9fbf92fb609ed6cdf310970
MD5 f16660c3bdc0a17c20cb5d66eb353a0e
BLAKE2b-256 a0ac6f0c815af6d3914b8b40f96941e3569dfdfaec1c42eae32bf59a87ffa3fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4756e8abd2d702ec5f49d43fdbbc632c7cc12391f92a97e6527d7201780efce4
MD5 40ab5e6117ef1dc2b39d48a68cfc6859
BLAKE2b-256 66fe66c51e327e1490de9471faa71f62f6db2dafcfe9c7c4c32b9de454311498

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c033468807a39900e1e6db31cc277b94b8d49af23998606b6427cee85d5a1fe4
MD5 1d7fe2df9abc8dfcd14db0690a93662e
BLAKE2b-256 d5ed3bb24fe81a9c63592ba44f1d1e158b62ce845fa20ebc4f97c4d2e1b6e80d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a1a49e64e2e6fc5dd8f93d336409c9ba932cbe5ac59733f4a5c7b4c303a0e2bc
MD5 93cb5e41166449628aadba8699e80b39
BLAKE2b-256 779f30e4c76836ca6ffcfd5e567740c3a4c30d3cc9c9a7c4ee43b70177e2b4aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 60ab8f3148800623daf0b7815e1426698ba0aee4c0dc02017adb42f02a0c1dec
MD5 3b94c091bca020c54071370de166a496
BLAKE2b-256 f2c6269f075ee3c392a44df7e3e34737c348fc0682434fe15f191f72cd9af43e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 72f32bbf72d4a0c5c3c0b43c5c3c58030e23e1f1a075872b3aaa250add0525c8
MD5 3bc162c7ef849dfb34e9741fc124308c
BLAKE2b-256 b412af54f9219510c8441653b885e72d9d18c51412cb444e5026c76736ad78ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0b687bb4b2d1d02b8bcf93051c65afd3be795cddb1b0ea117c8640d709ae31a1
MD5 c8da60d9fd53031a3b2b0a902045ff1c
BLAKE2b-256 8bc8d8b626da6112e9e37cf83118e23e6c5831c175ee2eb992864d2ea10abc33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4fe1b822b6765968ce417bfd63ea42dd0d57cfee8812f1c6e2d05ead9c37c8e8
MD5 5366531889ab8df90ab9f3a7713d7993
BLAKE2b-256 9fe913fba3d80358b0da971c5fe3a7b3676c336470801a0a59349d89af521d91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 01398b586cca316774dffa6bd9d9bcc288e0f0b641b28d7c6c6fbaa347d13e18
MD5 8a16ec969781081991d395628fceaf54
BLAKE2b-256 3bce537631f7cb77a2615f026bef6ea321d5b87d183b3996653ec06ea07d96cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.5-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.0.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7d54c630b050c2091c14fc9ab18d869e4a909bc146bdc0a0847d736ab184a302
MD5 04a2233c3b854aaa931a9843c4180647
BLAKE2b-256 a66f167b1d9d8b37f09ce37862d8caa52cec4838a8fc052fb264da00083c3aff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 01c4ba5c8bb99968a9c95ad70ad9a37dee861288e32973c20d2d55376b215c9e
MD5 6dd61aa7f8edbd03aea0e20c243c6f2a
BLAKE2b-256 2652c66d78b767d71534956f3cb2dc183f432d103cb72e4797be5e350565a4d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0967b95755528bcaf3ba593483c62862d418f2d7d67f861f60ac66bda3731e45
MD5 134340bfd7ad00031e055b6e2b7b5b49
BLAKE2b-256 bce1880b570ff1c517cd9f1ff20e91f9b10695309cde10d6ed5dcbf1e9740d3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 21cbbe05be0b0f1aed4936d773f5414b3bcfa954d5f239fbbb02a9c942644966
MD5 415c6557e41e3bc8640e70a6c447ba57
BLAKE2b-256 29e93c97644864fb9200ba57699223647965ced57e5fbcd2d8a0d779327c6342

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c3e301a23fbb64d3d7f0afbb9940895e21dcce39508cf2b81fd64f773123b953
MD5 c735d6cda4cf20200c7fd0d72069ee60
BLAKE2b-256 432644132b2ad54f8544bc67f9c6df637603baf7f13dc1d6a1fb7e057a18cefa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a3af617afe14f36861750620ab782c5e24cd6286d376bad9f7317bb4a5555a0f
MD5 40fbacaa9d8a176301a223d744e0f8a6
BLAKE2b-256 02b528ba0cfee681b32835c931f7a3cc00da288f7009248be5c1cccb20bd057f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e7094515928c953b411147f0377560e09e978bfb6f0a071440581ac47c2b879
MD5 8bbfa2ab9f34067c65e4bf49579fb883
BLAKE2b-256 bc583405ece6496a55d2710669edbf96bf995aaf706a32b76eaa0e099ec003ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 513be056b479dc5cb2bc8eaf49a55a77d6c43c005a5b53915a2ecfd32c6a1eb6
MD5 517a3524a4d94d71d72887ad1a828944
BLAKE2b-256 fcadfce428f1a8a7225a730991f6779b533cb018ce023fbdd56a0c5be5c1dafa

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4c176bb28e19075a486e32141239feed7f85eac7e2fd24fc565568655ca4795a
MD5 adf2090cebdd3c006482847a57b7ff05
BLAKE2b-256 3144afa07ec12c8b62e2f5cfe6ac616e21f471a611969e7df6c1c8c7855fd876

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8f3327030661287ddbd34326f38a49611ae58a0930325e1bb0db7f069f3d5bc1
MD5 7aa860657c0218a4bae1167f4221fce7
BLAKE2b-256 45b0f2398b2799c58c1b688cc0b96ff116dfaef786201c18db8d61bfbcade23c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6e10fe19f24dd6af6a4a6caea5d739d7a4504060eccb4ea1d9a395ac51c6b065
MD5 24ecca1c7c523e90450efb0934b96641
BLAKE2b-256 779eff95cbae27941aeb1afc7f17987016f30ce2619045052ca1b7d43018fbf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 8ec0a87f42b1b50b16d4729e18e690691157f00d85c3cc1ea870fee58e2658d4
MD5 3a2f9a2a0ec6d21a3e8d6a420d8a82cc
BLAKE2b-256 6e497f67db1b1d866f4cbcb69b1d8b8485573370d7d743bd8302ffb1206a5d53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e82b473390f7735bc61af28c06f4c56342c8aab42c9bf16233746475231ac9d
MD5 6b0a6c994cf5c05a424d292394ef7829
BLAKE2b-256 e8a6a96b65e474b42444a5676cdd8bce77b4221c638147f055cacc8387a14611

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 cdd525a23136c4351f57e9fb27f6668dab4db0c6e69de1c6d727eb9aeff42ad8
MD5 5b7b806001260e6559e01b28facb2d49
BLAKE2b-256 65511e5f5052c2d572cf72ba52da7ed80e482e6f2d36ff5b0732cfcd8f01b8a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 851118d65d0524430b95a4212f8c9a9f42af8551a1f073339bf90ad85a4e93b8
MD5 fdc4e6da764e8c41000de45f2d795927
BLAKE2b-256 4f4362c1336c270b133126fa9dda819c0cdd6934c7ea5161b1c028c590416ece

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7aff93babed19f4275699f8806c6ac2a50ca7ab760b5bd6ad8005620bd2d365a
MD5 f85b0d4e9ee5aa652d2b5acfb7833460
BLAKE2b-256 2e99c57f58056cad8d8b892b8be042cd05eee20111f9aae693d7548607dd4d02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 01874167d05316f43738bd82e695c7e110da928dada6311d4150549018b73060
MD5 b91999e35ad0386a4b083700a1008efe
BLAKE2b-256 a0dba099ee19b9999fe7e3778857fde0bfe0f0946e6886f5cea04ded19d6b449

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6c28c0e612f8afbf8ad7efc1b7c0b989bdd5d1b87d84a0778604bffec7ee3769
MD5 c53314f47435fc97b585123d824617f7
BLAKE2b-256 2e760abd58f736042742fd353b942d8a17f32da051d4b695a03417e1dbe967b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6c38ff9d7427271d15884a3a30730fcfc4ccc346a269e62f285b1a4dba02fba1
MD5 d60e275861215a793808f177ef0cabfa
BLAKE2b-256 650bf2b389d7fa76aa95383bc606c1e6616237ba34b1bdd39f71d2e09ed330c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 794e086bc248e3488ab68f656fd977b2457219afc0b79988419416a583e05440
MD5 7a055eee968f2f2c0a409590d9579f76
BLAKE2b-256 46af6772479bd51c49c4217830589237ace141d845ace2270fb31f79a0c9cab1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.5-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.0.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 caab81257dbe134c8cd94b5784dbeed4b908354b73daf2ceac0ca7dc62dc1cbc
MD5 cdbbfdb920933e227720e35ee0bcd86d
BLAKE2b-256 0371b1b8bf1aa18d761e2c0a371807b85b9b7f3858264d2257a4f8ae5dae243c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 ec06bd5ddc4d9fb18d3de2e08908cb1c3775dc5c5934023875edc826944d4131
MD5 1ddfde4e6c16922b039657b2beae2090
BLAKE2b-256 7a24d2458a7c42c9e1ca00cb44f50a2e61d5ec69bd6277cdcc894d94056a8b02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a8275c3c677d863ddf9eae11c60cd278e4e866b87332e2901a1c51453b814117
MD5 67faa0e78c28d86c8d23215dc99e9626
BLAKE2b-256 98d8d6030bbe3fe5cb660ae3df9b59e9fa738489edb5e237c9b99313cf08bdba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2b3a5c974ec129308cb3197a8a838ebf3505e20200cf01a931f9af20971a3eb0
MD5 dbf0978551129822b0bee60cb8840215
BLAKE2b-256 b6403af4b3e12221c960808c564a067c56c993fd888d62f09be7706eb0e4d915

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2b4e6ce8f894dc1d3f68475469f19472fe6ddb3f20ce3307e86894b0aea79ae1
MD5 bfbe07812cd61488f4d619b47c24d835
BLAKE2b-256 d5673fcebecf327d48e3c8d0c1a91504e88174c8c12439e446320b500c1cf5cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 24b1baf49d73031ff46444a12f1d50708603b23cddc55b6320c8802ba0722504
MD5 bcf25b03555d5ed8237a02f6c4628734
BLAKE2b-256 4eb6a1b26109a4845a7f271f56e6e1e8608631cbd59f38eab2e5fe5e97917b60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24eadd25bf51de8a78c48f88a6f06cde1ff652518ec739899f48eba0a3a65a57
MD5 246522b77a5e35d04dbd41cb9d7bd66c
BLAKE2b-256 c1bb0d22da0da2a023307333360145970da8f3b39bc2b29253082eae71d6155a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8805cc33c28953d5b113a2e92e21899580d2a78687d622fd3cfc53b3b2919cdd
MD5 7246026724c12c822256d0c0f0685c46
BLAKE2b-256 58e8b8c6cdd04edb6a9b83773ee163e162e5d7f71dba72ce23be46e82438285e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 7363015f8522ee2708205c9a3425cba82a479d5764855385f330179426da79cd
MD5 d5b20df9af36db0947bad777f0b7ca78
BLAKE2b-256 bec0028dfa244d36f4d2f3e376cbc03317dcc8ee6a0909d52839f68f6e2920f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 de423d46681c77fc9bd8c1c79569f154f5565c6d12ef0fbf369da10195f76ccf
MD5 c8884f72bed0003d0ba5b3a315a4ea68
BLAKE2b-256 83ff813b9d1d39f8c786ef05d7fc01e28765c2c6af43515c5ea673e6b3699a25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 b1bedbad842848165e208d0b79550e964fa3aec8ccb835c5bfecfd789550342f
MD5 e4aed6cbaddada78f5d6899fdb0bacc5
BLAKE2b-256 0f0143304f35f9960cc90e0c9cf26c51a849c6545caab7a39073cc398195c97c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 67cc3150bc9a2b205586dc66e572b7df712b1913b883ce7f0241e69707af5698
MD5 3d08ad5eaae6631f5f890861cd79dcb0
BLAKE2b-256 2da19b7aac728ad98f7c52d8c7c3cbd97f1aa89a659d7525516027e1ea7f291f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 c1cd1d0bf3a32316eb593fe8520bc8d90fdf403547377d1ec7715c392909a86f
MD5 9c81d1d9e8b1ce55f96756c17cf9105e
BLAKE2b-256 f5cbc0a1028c6ef40838d621d26250bd3dda1f87de53a113ded28f9ba35bec2c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 abdaf874cccbf57a1f7009b5c2713e8f8d5589d02758bf4643fd9f11c7b1b958
MD5 93ca0cae087ef60b72cfc26aca304d62
BLAKE2b-256 a9ce01236a61d59700d758c0b1389f8e7865cd3e4073e997d9e1f2ca0d00111b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bd694e8a94996a67ce29cd8db5659251d32e76e74a06a30d7fa18de5f4df6373
MD5 5c31e3b5f20f55c6bd78f96e7b7c299a
BLAKE2b-256 26fcf112d84f560a46c4214de84bda6735d38ce4796a82525e631c9df1f10c11

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 cdfab9fd608178d17540ccac48782993ceb2ec3a5a0016ffd752d50a6b892bc6
MD5 604d029bdfaf5260840da6299406edd2
BLAKE2b-256 b128b268ba3ffc34532d87b40ca96af2e18fa0e797addba01bde63591b4c96d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 bb7888623633348759da0833a663c5dcb0b17877166ebfb61906850e20c06590
MD5 56010aaf8e86c618b25143608533fa3d
BLAKE2b-256 57317717a9737bc935ce709b4e3e8bf55e4fa260886a62b8377ce29bb0926691

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fdafee0d96f9860b2922387a89eb6d855a8d6987152676a62c8d76c94e0cde9b
MD5 e8ccd27c4edb955af77a38623d64d2ec
BLAKE2b-256 f825765272131642ae0de7211c35d521cd256bd90fdc064eb4ca21a68e5f6096

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 03b43e8abb318a3e77e70f23afa15873cfd713340ac1ca9b98cfd4305534e8e5
MD5 692eb15a3e7c9e86ec94515a0772061f
BLAKE2b-256 51ba8ddaec0f1a74c324fa8a9ecb712b1c7b3c718cf13e28ced41028cb603d70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1eb6b4b7a051de52d7d2236af5c136765daf7b55552e93880839649b5ba65991
MD5 a6cf6e3a1f2e87a2da44caa55491b856
BLAKE2b-256 2f91a07a8a82eb63cac584e612db86c6b351269372a1ad8a9de69fea96eabb5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6cdee07eb22926ca5899bfff6fb31632e1a3db7aef1d60ac37d07f2bcac0b9d8
MD5 10cfbf0ec7384a62816d8e006f3adf08
BLAKE2b-256 9e5981ea3f601ad1b580b98d51f2e429d836c748da68fad6d39ddb3389cefc66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b0522efcb5fdab70e82dcd1b75a0c62668e945cf728368043577b2f80380ece0
MD5 712b47c74f8f437df97e82b4012c07b1
BLAKE2b-256 0062cd0b330e401a6e90620f7cbb4556acc3e4e79bb778b575ae81720fd7512d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 41c7db4bb1748db61bc4059969760031f6beed1f79b4a7cd2e003fabd56c5226
MD5 270c1d1c8e06476dbbd400b3dbd36a6c
BLAKE2b-256 9ff8979fb21028249d83cb2c0440a61e619ec29cade29647391e845e0aafb6e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed33ba6fff6c6369607dbd3ef0888d9e3357af9c63ea8882215094a3e06ab490
MD5 3cb76551f434911283c4cb5f34022509
BLAKE2b-256 f1d68c9f2610457aaea9e34fa8aa4bc994ae442d39723739cc8954155fdcc521

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 44fcb0005eb0450e91135ca8897fadf2018e26691554f6bd09c9f3594a54e5be
MD5 d0825a097d74caba2baa5448895ffeb4
BLAKE2b-256 f73ac04fba4dc042f2c65eeb182e09a31d6d26e590669aac4027bd6b8843ecb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.5-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.0.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 73439556a3f5b2496c12c38066bb140fe7ecc419db48a3cf5b716e1e757376ca
MD5 67a517699783646d2ffd9758b47be3f7
BLAKE2b-256 84a14b244b40a1605a5bc51b5f4f537d6cfbb1ff1d8304c63955cfdac1826467

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2935f440716f8a7fa636e54972606c42b78d763169fc9269a9441c28d9e534eb
MD5 5d5fecb22094d295665da8c0f2ec9655
BLAKE2b-256 7ad0c4097f7bda3668f4a5925ed88239b54460d3e23693df3bccc940d53c9823

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ec2f83b39bea5f4461993f3a2c111aacfe9e20219e6b1ef38f9fac28e2a3dfd3
MD5 0b07d1ec63546d7365d56b36c7288ea5
BLAKE2b-256 4d2ff5178173c5f8182ac49f187098dd9980da5a1f8fad3d924db4675b2163de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b0b039d1cda0d60df37e4f644339a583183ffac57f69fa52501d18d3fc6813ed
MD5 11922d9cc67306c3db522ffdf7b34fcf
BLAKE2b-256 bd7875cf5532e17a838d51ad67713a34227c7a9f717cebaaaada5053825de068

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 351f9d4d1824057692c3e38a154deb8ef9d78a5d3c38f8e3635606cdfd41e31d
MD5 063e831c47961f137aefae7329f06faa
BLAKE2b-256 dba2a77da104c41dd054ef3d2d132b1bf1596c07d7398c3216d4247aac360f3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6dc1b6bea18687dfb21d05a03a48b5fcd361fba59430af0fdf34a42d68296b41
MD5 2fbba790cab9ef5e3ca8fc65a20a38f0
BLAKE2b-256 3820e70406f88a67fdaee47e2999ca4de51e9d8f500bd980be06f7724a249f14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee1687465a3d33a72c5ac1a8bdae2e5f566b4daa2c9e9e92d5026c612ddf48a2
MD5 255a016d05df3d93401802b690bd7646
BLAKE2b-256 1788740228503ecbf2d8496740c795151c988ac5589a539e4517573e0aafce9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9b42f5729d972c25a9a17fca952f0b3097207610166e7479311667721c563dc2
MD5 f50b8cdb2f4e985d4f2fbd238d0b3d6d
BLAKE2b-256 43a90f906490967c88e4ea26652841e99f996a8033b1c986416298c82c9389a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 d28dcd3d56926d2a6462782224ecc09e8740c1ec27c17925ee9b9d487c2ae3e3
MD5 33f32c0bee01384505ad6abc9f79f03b
BLAKE2b-256 f0d97531e63ba353f47e092a5019c44f9110067c833b67ce3ab7266f840edbdf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 154a8648707cd4f45bb4ea72b7d81603265dfc888a3d371e29e28123b68186e6
MD5 a35a418ba50859ac060780f096b64483
BLAKE2b-256 f224697c53c1a6d39311bfb181996d36c807e8d2941aada2e79923670c18d7a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 55807855c3559e3db0ec0d3b38b7303d1bd7a4bb619ae1f802bdc029be71f57f
MD5 5687b94f7920a8b79cc6c6e84d1b0d6b
BLAKE2b-256 0ef3c4b42d76bcccd570f9952b7525c24b7a3876d2e985a63f90d19be74ae09f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 23f37d94d27a163ce0ce9e685b7036a5eed5718d7a4b06dbb67537a7f67bb5c3
MD5 22f1dba72a632f15fb9ad22098a3f031
BLAKE2b-256 681b6ce65e0deabc03e64879a491d84666308ebf7ab42cf57ba3d297d920a096

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 b419f8c0db79a75053d6f299df6cd4f8ff1f462a33c938dd404fc435b970072e
MD5 1e119d31166e6f5cf4d16df9d668b142
BLAKE2b-256 6455ea21ba25bdbf47e615de0e9b37802452c358cf46258f28277167abca0c5a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 25be976e30259a45c6f1d19163fc9eaec622410bd97d3bc6768aa50c04e3e4fd
MD5 ecd7968710dc88b795627d51b48bb6e0
BLAKE2b-256 467c64d38795fee6f59733c1bcf34cca8d470383996c58e66dba95c665531829

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 413dc21c025da5c02612293447d4a0faf3a59c7d9607d94b1651e07d1ffbdbcc
MD5 25968bd9c17c91ff441b7b5e4504b15b
BLAKE2b-256 e8b11b15c2155532d318edc6a01e42f069d6c884c2da729e0a26bb3a126794fc

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e408cca8b08cfbb78163715ec36761e3b1b9b1263726481fc3715fa178de8ca8
MD5 116c1a136df70f8cbed0f0ae6ffd63dc
BLAKE2b-256 2094b0f89cd5db4ca73f8b9cf85e659a9be7d254df2debcd4a55cd2cfd67deea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b333af946da1345719b3cd56d2d25a428a01b225e1dbd1f4bbb80195aa78fdd
MD5 b125c0e3d3cfc0f250789a37c8afda6c
BLAKE2b-256 f8713d7788af752fe82844a4a56b4d486af76b879e946891de29aa94d68d2b5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d2d318ddf5ae7faa19de2d67c2d4e14443f6f7f6e8b8993ad3e2f72d33904d9c
MD5 68bf96b970fe9ac5a4494c0b75997636
BLAKE2b-256 c0cee4093d29f0fba5223eed987715c8cfca0a5a72d5180dd69f08d62f69cfbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 aae749726cbb09d234522b8311e9881f27f2bf494f8fa01ec399865df074940a
MD5 1697aa619b76e28c23054b33b8c8c765
BLAKE2b-256 540e1323a63b9821702a5fe0c4bcab351fba9854d12a6e34bea091f433fb9a03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c08dd8bb6b0ab73466e3f7699593b1f8f5a25b9820b59e4a09df9c2aca7433b8
MD5 eba4d0cb980ce187661fb9fe6dc602b1
BLAKE2b-256 c32705671e8424b78adb5080b5b39aff19b4bd39d8d8a36b8cb08af67d0fb9a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f81a3105ebeec4e0e4a63136ecb28e0019cb530ee2fd091a7794ba91ef001bac
MD5 37449865729d0edc1d99be09ad0ca279
BLAKE2b-256 84e87b4c1bd41992bdefd3d3122a561481257fa17755e8d52d7ac69a4e82b636

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 173166d19a594ec3885f8b8c8d085be8041cafb605634ee096f3c97b20f76bae
MD5 20777bb2c6ba290b5675e4ae30473553
BLAKE2b-256 7ae12ee8a5f1e187c7e1fbcdd08334c7f027e57f567c450f5eea179170c4b07e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a37fc1606a093fa96d27a165e7dac23ddc4aaf666763a04f399cba4c7a9119df
MD5 885edbc246530b7e53e05410a9298eef
BLAKE2b-256 ede351eaa134e5d33b0ece61b00d87845352674c8f2e52cf4e171440e4cecce7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d531ddf5c6d1bf2074b584d577f3a97c0cfb64d631652a3a80d162af015068d4
MD5 7567c4d489b08cad47ede72707f7aba1
BLAKE2b-256 dd016cd1e23975e237c384fbcaca0cc506ba94b257ea2008392741d3f996e034

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.5-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.0.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c85f4fe8abdb39f2a53bde08d3d611b5d186a8d77356182eb40369b5e2976d67
MD5 664da22dd9946ea222ef0560ddcf2850
BLAKE2b-256 378c6b354465c70267611f9279dafae367dd1973ac0eb7fd1f002459def824ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 805ec79f80e2a8f01a4bfc03ad00cbddcf26271048d3b7057e08cebf6f50bba6
MD5 c79ee7307ac106bf9fca251f2f1de10e
BLAKE2b-256 16131a97d6a33a0e1e17566c7aafd79f0f548f3d3c2f10dd65970fe487525677

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 fce94b6f1497729d280d2edcc1aea4f88e1504aec4beb5f9275cd531052479f4
MD5 911d2d5a8397c71a99615e580853c035
BLAKE2b-256 7b97c1070a0877b9784a2f78792e10d77649a2770d70b8d779cc6227a5b59098

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 aa11b347b37fb097880aa3a2bbfe11cca6261463535294bdc8fb36fa68507521
MD5 7f6095d269873252dfc2b616228250c5
BLAKE2b-256 c5c0c432c61e6f19154421f81a9b6f39ca9a0ae2e83f0aa92b1679ac29e5ceb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2879e1ed7f3ea1ec30ac6ebf1cc90e63f2b9897aac0e4d7c0045c7d9aeacef9e
MD5 b08c67f250310b67e5845aa097d06e4f
BLAKE2b-256 811250f16756de56672b099c7a5882152f1bcef0bcd30e2de8121a9f35e83c48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 2d1b13f054296f867b49215c79f655d969d8c9126edda54434db9434b72139ad
MD5 7a64293b01386ca56a1a96663160924e
BLAKE2b-256 ecec829a55324a03ad17608cf00ab9bd694281c83db7acc8d60b28f8e00025c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afe785ab5b5d9274f922401584efcb1392db2f927a50e05940b95629a913bc06
MD5 c19b74bfba8bbe29e87a93acb8e351a0
BLAKE2b-256 e52c6444c3008a6ea33ac2329347305b830d52610ab4ee86c06f76b17d4891c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 461dbde547e8e522885b2c99ebbc4e4f406d45b002da38849d9834dc18135a97
MD5 15ea08dc264f5abbf4e9cad42eb906ee
BLAKE2b-256 1c098dfd9eadc3b2e0341e080a34cfb81040571785007af8bdf76fe625e6b061

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 88cc75a1ca4ec22bd3b48b3245632ab08f631d7fe8536fc8565a01b45e70dfc9
MD5 4a937ae32070479d0fefdca5de0c26d7
BLAKE2b-256 bf2b0937b3e0bb547d72446211b865ad34418704812a3a2651d7b3b05922b48f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f09c6644faa82f1cbe91f043dddbd2847b5c260ec44cb6e61e32680dc39ad2bf
MD5 28ee4deedc50c2abe75eb78eb147a016
BLAKE2b-256 e6ed667d633b40d77415f6be7bcaf2b2e1c062857667250177ac96a9a10bf255

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 847615d756267e473ffe119e20eb3908da9ee99a12d2b776d0d99d6c6e4430bb
MD5 1bfcab5c650817fbf96beef2b2bf0261
BLAKE2b-256 962739248e1f0cfa26c2b4296b75f6ce98d28e568d2432ab5e9d43e7fe298054

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b175ca7e05c96089cc7bdca594529c17a30e1f1b77286a27274e095be8cb38eb
MD5 c6e1f5122a006ad8b6c8225765de92c7
BLAKE2b-256 2d001266c20234c7177cf30fbd6257d599ad21968c772d350613809f84d13ec3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 beb79c81e86251b7deca63f303753fd3bde3826232bbf2236347e60b60e29ca0
MD5 98c35ac66e1dc295f8a678faae5f923f
BLAKE2b-256 2f0ab1cf6cdf89f329d176ffca08aa4f26fca6623e4c214c8cc42c1a41f64f3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 fa270fb442380b4806358a9ec0050697dac1e1829e11e7b806c40ecc912eff30
MD5 7888f23e5ff75d2dc2d134e7b61004f1
BLAKE2b-256 0ff1cd9fc591b422ce25aa4ec181e409d4a2e2f66f4c66a5f86f6b588f820dbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 37d92f4fe9952d6d0dc61023319a4b53212686be02ef13989c741c45c4eaeb9f
MD5 6c805d2ddaaf227dba587a2e89fe23d4
BLAKE2b-256 ac99759f8a02a575b813db4bbc0d5ed6e63542c20570597f868ee9eeaecf2cbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d06ef77b60c0a6447b3c01b003e74700d1e6c9c25d22f71808a889fc5cec03d0
MD5 0792912d83d9de256cfcee68a41a2bdc
BLAKE2b-256 11c7090003098ff6b7850e00c4fe3415f2a089033e34a1e669a090c593a459b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cf2ba800bb9647d623ac3e15da8a5b0d1c9da880fc6557d37b5663e48424e4f7
MD5 83119abbf630dc754f5f4c5b875146d0
BLAKE2b-256 504cd01c7d661a887e6a2ca1f9423d26f4f964515648850d24d1f5435ee801de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a7b53f44994c44f0d0a85b161dd91d6f1bb921ac289ec63fbb3c65c5fdb07bb8
MD5 88621c55717b98ce3a5f4b49bfec581c
BLAKE2b-256 f4a569b199e688c94224c75f212ff87bfee6a6f789a95d06b4d0e176c1c32a3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a0793d19ebae49cf3e1762faca3c658532f36ed9087714b8d5a7df8edf29bb4d
MD5 85c0ba340517a4c5035cb2a87c04752a
BLAKE2b-256 f9c345669e88a80a9fb3b76b619dc9fe164a2a39119fc5ca04b15cde06a3cf5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.5-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.0.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1d289f2050f19aac9d2075cadabe4febfc9d7b3065bbedadc7e0bdc3d4575ff6
MD5 d60ae81d761a82685b3a909746a7e830
BLAKE2b-256 de7ef4d5d0a1fb6d1e2b8680533625012fa51223ed1ee6b8c69225071915c1e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e2df615779ee01631afdc93de3062a93e6d0f073129ddd21ea5ed61d36839dc8
MD5 f4279c8a2bdaadc0c100d8b3a99aff80
BLAKE2b-256 106db74923ffb896edd4ad7a1f644beeabc152f620a1358a3752b588cf6f89be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c5ae27ba440de5ba802471c1b9c8615b17e3782f4ec2ad82c8226957145021ae
MD5 fca687b2db9c4b7220a58862af1bcd84
BLAKE2b-256 c44d5956dcf334983c084bddf42ac90c581007f49269b0b93a6498e171fafff6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ac993a21dccdb79649d0258b82e74418a61d59f4211d7258705434f7b70839d4
MD5 3c1dc128cd11600b2e26dd5ea936f3da
BLAKE2b-256 088e61b9ce8180440746a7e2f7240a4c29f866fd00044b71dbbf3796dc39bba2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7374cf9b479596d02afdf34baf6e928ffc6a798cebc09e651bab948ee7c0e728
MD5 4ca64c13de2a07ead1db5172f5de3105
BLAKE2b-256 680195c84185bd256b238a2b42cc729ba316f6756dcd12e4b083182aafe0eb02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c4ee2a5172f359f1680983f5ad19c33efdd1da22e87e113d1886b76302e0718d
MD5 b0781d410d7fc1e1409187d9e8fa7845
BLAKE2b-256 709df850f66b3b221b896d23cb6577388607761c7e444656dc201aaf23cb816c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8394feab78a42208bb902dca781e62aaa3a5c3b905f827e0fb669eeee42bc6cd
MD5 4716a4c1681e515d0b2e169f13e46ee3
BLAKE2b-256 873a1036278bf271666549a5f23737f8d592ce343a68bd7952012c04d21d681c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fb66f90a10908c3d1fef50a24e6a75b53eb4703cbe21ba6cfa1f8fe7dfdc6a74
MD5 aabfc2f31130687f63c6943fc7a65de2
BLAKE2b-256 2e9a213c722fb3a9dda8276eacdb92f3b1253b569d57f4df3d423f3e8826eebc

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 273af7d21a3e9950cdec569db79a318c68eab46bc4e2f20724fe614904a4b1f7
MD5 894c04df889da444e36e9ddcf8fd4b0f
BLAKE2b-256 0ee2c53817858bbd5b4fa134797acdc5abf61c2b4938d58369c0c977a91df1a2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9567d5179ebffe184ef4aec834a788b73b746f7d3c1a047cb99c6ecc6803db1a
MD5 ea2d1b1af2c587b558ceaa87a8e97312
BLAKE2b-256 1ce93c312958ea06dadea6c22788893ed2fcbf50de28ea4bc81a12f789cca678

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3441b284dd5e18ae2cc5d22c75fa7117d52126e3cbceb8ff4fa6b73707c2a84c
MD5 97d1633278862751ef4d4aaec957c8bd
BLAKE2b-256 365e50d5c59d49ae01c5b2ee4ac171f6741d7978e326fc402d233f322f759439

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ab7dd3c79a4b742e787c26331761d67b758e7060780d3430d9e149e47699bcd
MD5 a07880e497723624c5b30c30581b2539
BLAKE2b-256 9ba3e1b1e33ab1b97833432906d57f510acd7801f77f49b3ef28db14a6a103ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 94bb0275735495386ab920320a6970aaf9e742ef8a8e9d436f6887639028c31c
MD5 bcb89f8b46954d2dafbc2d9c015ee507
BLAKE2b-256 64f5f07a3908cfadb753afaf3c530b010bd0b74149ed6ec8af204ea2c1d83edf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e483e1643b729e2ddc835cc37e46924ec98c90cd0ed345b949c21e2b32827f3f
MD5 118b3bb5f674132a0287378147d76c64
BLAKE2b-256 8d4491af3907a895b39b652e05d979e8749fae942e0451cb82a197535d8e2070

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 267915d816221b1ac7c59ef8a4606910990b5c609f48d81ad58bea1ccda2bf45
MD5 f3331b35ee4d549a1b9a3307e87bea68
BLAKE2b-256 9ff06d799bac17a70d573bb255f58f56dd534a47a90a84b33ce7e22c262dfc96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 989dac4b57c04dacb0aeb3cfea933fdf56d5251f7c942e000cd7c4f79d31f04b
MD5 91fd0e5ffb5c82cd0da20ce9a958d084
BLAKE2b-256 a1c30a3cd9b509103949a200b2fd77a22d59a28eb7ecd2b1c17c6010447d3f87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bce4e1c075a1925d510dc25682be17087ba75f921eabbe1311cbda648d9b509f
MD5 ed31febed1a9ff69f7fdcf3f1e01aab8
BLAKE2b-256 cc07a365ae011706fa54ab49b48641149871df2e24eec3f97c4bcd95355d008c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0dad2ea8d3311e475e6e38918d6eb6907da2bc47b043defead2f8080ef48b62b
MD5 1196c1dff023aeca6bc22e729f9eb1f0
BLAKE2b-256 455c8550ec77e3d419d05b822cbae95c8a767e0d8d1ca0908a6b4a9e2840ad12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4695eba6e676989b75c6d4fca5c43b12742bc851ec9256eed003444db5cdbf14
MD5 be41b026e2941942ec7ca9a81c3cad97
BLAKE2b-256 fc412716d377c8f719116edda27b3ad91535a8b948b846259e4bc4977c1030d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.5-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.0.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f7f1a9907db54e60392ea7543da56eae796e982d4a79eb45e8725fb1ed3afefc
MD5 3fef98c741b8e06424314bc4cd953916
BLAKE2b-256 d9c1cd0d868bfd0bab84f40abc500f8bbf771f3ad8ec503b34da21208f7aa4a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5e3f7660f35248d46eb235829ad5d3ebe94f93593b8519a172d7364a1a07b3e8
MD5 ad71cd43dc124a566374ffebc212b3cf
BLAKE2b-256 92a7d707bf9033532c59f75cbf98d61355e4710d9b5ec56e14dd30aeb9e00be1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 54b93871e58d9d2a726316e54ec552797577d6337c8f18335e33c09f94ef13ac
MD5 5bb81fbacc8ffb1002fd1c9538ae2892
BLAKE2b-256 c82eeaed83f6f7d194f36e5d5026a9ee7137da7daaed67b8d01a229e2c263825

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 dc0b5b37c68dd0893ea4de86791d030661edf7e7c15a9cffcdf628d24364375c
MD5 20ad8bcf420486fb80c433a84c470726
BLAKE2b-256 741443388ad8cc79cbf77bfe5ee816c4c0a4f111d02876a9be2911522b39a288

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0917ac03aeb15c5e81a8c2de506568fa81bea5f1668efa65fd5e48670ef9a3f8
MD5 edbb15309edf5098d69145ff60568967
BLAKE2b-256 32ff77ef79bc8588a594c63fd64465337879afc54100ea1f96f704484d80f461

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7aeebc206fd4cccddad1e49f41374c8337e6ea7d058825c0c95f9fe6e4d3ca65
MD5 e8975de61161f8063499a4357ca1757c
BLAKE2b-256 52022922acfc9cfc23ec37168ea96f67f90a7cc5bff36d76db227242f4193299

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 214695ddc6a192acebb329070ffb7db577a2ac36b21b814a868f1fb808e22c52
MD5 a2fd9885bd64ef47ed08142822ed4db7
BLAKE2b-256 f650f60e4fac505d97e844d8fb26dea2ca657d66a42976153c034cab84def7fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56b161a8b36a4fda2dc5f70f8e798351dc5cc02b5cc5d15a933a2969550f4b08
MD5 ec4856228fec1c4c622f893278fff803
BLAKE2b-256 e3ab2cb9ab7623eaa8b73ee945b702def65bbc267f15577f6632767892268d1c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 65bd2c5a7ae14ab84045e94b52d9d61234a9b0861eb1d95de7a0523f6544cab1
MD5 46ea36d2e12f69bd5eaf2c0c54cd67b1
BLAKE2b-256 c573c6e68a220e59937ab2568c33cfbe693227663bf642962253838152477be9

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 40427e994dffee1e66cb17b5635d24f482554b762687e2c9e74253bb05e097b4
MD5 343954864a4d4650b50aad1687fb4ef5
BLAKE2b-256 7cca0d85f211f60cbd591f6531f4e6bfeded684f3e822ff9e1f97c9cdc770a4c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 da7a040a97cada753c4e0228033f0a69b57272b9b30966534d4f5c46a09a2a0b
MD5 9795a35350ad928ef5fd96b36c86de5b
BLAKE2b-256 a2acf6bcd7e4146827a3804385004539e4d7cc03167efa3cc5407f7a9cc80701

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e432fb0c70114943ac8b8ea1871c79b923c21296f8acbd32c9883bfea849483e
MD5 801f6849b9338c87865847f440d5b55e
BLAKE2b-256 838e4f8d232afb3e97fc44af443e6170f74dffc796e0cc3a9ad8a1c1e41faf5c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a9cfd09273d1107f6f07dac66bb9ab634c45ecdefe46d7c15c166c8572703f39
MD5 535a1b082482f5a9bc131629296d18cc
BLAKE2b-256 8e432fafa80808cd9e2bdb166cbbb25c96772065c70127555b24a7f3c48da24e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e5975296723bfe0c6a51b42ec2ef52eaddc858820bcd059fd17f925a13d3eb18
MD5 06c2fcf1e5b24dab95bfacf70defaf39
BLAKE2b-256 5ad5c0d595490416a99d5645426d4cec70903dc810e205a425458f6dd46a0014

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f64e11b071dc1cc5f958cc5c89460ca418f0b60f05b34aaf04b00e01bbce6041
MD5 b0b872d0c0aba440178a631dfb6ab995
BLAKE2b-256 93f3023a650a7cdde3e461d5f9f5d1fd75da19d0c6f7a97cd9406d641bf3bcd1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 74401e33c576c26082c962f7d2dc3ba999800907b7ddcf465970e638eb491c55
MD5 b25804e3250b3eef1b78f01f0718c606
BLAKE2b-256 f21e30fe846977282e2bc439564088a3fddfce8ef3fd200c3847a40d788dd860

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 69e6af0ed170e248acf5fe9f5791d2026a5dabe003f1d0ab97b137743086188c
MD5 c48349a4e97a99e9899fb40945a5ba13
BLAKE2b-256 576dfe111f4d793b3cce4f7e4575ace2631d95189676fa47dd72840972551a62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a1b06b59f9aeb083acf2115335a9562eb77827aa0f4b2a21d3259a2354eee14e
MD5 5153736e63197314b5245a14afd9dafa
BLAKE2b-256 58215aa7c8b2a13d1cc01337117c8081fcb42f05d3ce538ee88bb37c8fa8dc67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d76aade863a58f4e46b7a7aeb7b941069e50e8b5eb2b669503acc5eeec804a8b
MD5 7ed62a46ebea85f0f56b09f1851f8400
BLAKE2b-256 c50588fc79c655ad58b0034cd23ce0f035899fe2c35ba27cc9277c0689424601

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.5-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.0.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4ba08207c3a6ddbd97b9f10c146219babff2f1c6c2f848589bed111f009dc414
MD5 685b622dd86e331a3b135cdf1797beca
BLAKE2b-256 57f30ca69523ecb834d9ac2c2a772b553b077880faf00dd66b1c7746f88f200e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 058ae22275d4799446bb50a1b523281b30bb20eeefb8e6d5674e8ae60878b175
MD5 3d258494673ebd0199624e210f0aac6b
BLAKE2b-256 abc9fd1142a6c0b973e383ac10e31e2c1e9c66aae3f37bf42178ea12547077e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4cbf9a1cd3746ecc7f7d699231b084bc57d3531fb28573d5b5db416956102913
MD5 43a300b4457143548038c673d8ac96da
BLAKE2b-256 b6628d164e54dd3e09cda89c613db019a7d2a4313037d04774ba160cea19503b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2eecf6e6d3d3ecc7f96e9c010377eba3b148b8e7b07e0b110f24e885b5c24e19
MD5 6b098c066d005fe4a107be6ea022d918
BLAKE2b-256 f63e4137645da9c9405c2dddc858a15af092f66ac4b48b5b431c1a4d5b9b8edb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 43ea699892e226702b0ad63e28d9fc3bcc393005b8aaf0ea525c3a9a619810d2
MD5 b5ac22ef1f061a7a8cdea9070899cf61
BLAKE2b-256 f7228ef4496ef07785711d82f5fcd1693a2e4338f7e96c1e19d0ba1f1a8ef79a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a58b92f05ce51a8766d653eaccf966c99849f0b43882b9a7c5050054d1182b15
MD5 fa86c86c343a78ebbebb0b1409c50aaa
BLAKE2b-256 9340c5d5b17e20e7713c6e9d0f0913a9a9189f1c275a9a32d8c89a7a1ab74edc

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b7d57f968a6c414b4d1da49da097a0e60bdd99eae43f93b2919230aecc422fe
MD5 78b72de12c1a8b9ac3591a48c4d15aba
BLAKE2b-256 15b420615744d14cf8eb2407cfc9643c71a6a542be594d42b336ba83ca11e451

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8c96964a62afe0e2d33b4a1e3fcac4de4942669743d9f14868a7ee7b09e7bf3c
MD5 774f5e888714baca1c510cd3a4483fd8
BLAKE2b-256 086aadb7044cb1427bcdfd27e57343540fc1fcd26793d1d70d2cd3fb720ab100

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.5-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

Release history Release notifications | RSS feed

6.1.0

214 files

6.0.0

214 files

5.3.3

214 files

5.3.2

170 files

5.3.1

170 files

5.3.0

170 files

5.2.3

170 files

5.2.2

170 files

5.2.1

170 files

5.2.0

170 files

5.1.3

170 files

5.1.2

170 files

5.1.1

170 files

5.1.0

170 files

This release

5.0.5 This release

169 files

5.0.2

172 files

5.0.1

172 files

5.0.0

172 files

4.0.4

191 files

4.0.2

191 files

4.0.1

191 files

4.0.0

191 files

3.8.0

215 files

3.7.0

209 files

3.6.0

173 files

3.5.0

135 files

3.4.0

120 files

3.3.0

136 files

3.2.0

121 files

3.1.0

101 files

3.0.0

98 files

2.0.0.post0

46 files

2.0.0

40 files

1.3.0

42 files

1.2.0

15 files

1.1.0

1 file

1.0.2

3 files

1.0.1

3 files

1.0

3 files

0.2.1

3 files

0.2.0

3 files

0.1.5

3 files

0.1.4

3 files

0.1.3

3 files

0.1.2

3 files

0.1.1

3 files

0.1

3 files

0.0.1

3 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page