Skip to main content

xxtea is a simple block cipher

Project description

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

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

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

Installation

$ pip install xxtea -U

Usage

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

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

XXTEA Type

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

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

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

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

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

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

Padding

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

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

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

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

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

Rounds

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

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

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

Catching Exceptions

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

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

Project details


Download files

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

Source Distribution

xxtea-5.1.0.tar.gz (19.7 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.1.0-pp311-pypy311_pp73-win_amd64.whl (15.2 kB view details)

Uploaded PyPyWindows x86-64

xxtea-5.1.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (14.3 kB view details)

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

xxtea-5.1.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.4 kB view details)

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

xxtea-5.1.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (14.6 kB view details)

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

xxtea-5.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (11.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (11.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-5.1.0-pp310-pypy310_pp73-win_amd64.whl (15.3 kB view details)

Uploaded PyPyWindows x86-64

xxtea-5.1.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.5 kB view details)

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

xxtea-5.1.0-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (14.3 kB view details)

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

xxtea-5.1.0-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (14.6 kB view details)

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

xxtea-5.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (12.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (11.7 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-5.1.0-pp39-pypy39_pp73-win_amd64.whl (15.3 kB view details)

Uploaded PyPyWindows x86-64

xxtea-5.1.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.5 kB view details)

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

xxtea-5.1.0-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (14.3 kB view details)

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

xxtea-5.1.0-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (14.6 kB view details)

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

xxtea-5.1.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (12.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (11.7 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-5.1.0-graalpy312-graalpy250_312_native-win_amd64.whl (15.4 kB view details)

Uploaded Windows x86-64graalpy312

xxtea-5.1.0-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.1.0-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (13.9 kB view details)

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

xxtea-5.1.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (13.1 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

xxtea-5.1.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl (12.2 kB view details)

Uploaded graalpy312macOS 10.13+ x86-64

xxtea-5.1.0-cp314-cp314t-win_arm64.whl (14.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

xxtea-5.1.0-cp314-cp314t-win_amd64.whl (15.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

xxtea-5.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (49.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxtea-5.1.0-cp314-cp314t-musllinux_1_2_s390x.whl (55.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxtea-5.1.0-cp314-cp314t-musllinux_1_2_riscv64.whl (44.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxtea-5.1.0-cp314-cp314t-musllinux_1_2_ppc64le.whl (52.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxtea-5.1.0-cp314-cp314t-musllinux_1_2_i686.whl (48.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxtea-5.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl (51.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxtea-5.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (49.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxtea-5.1.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (44.6 kB view details)

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

xxtea-5.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (50.4 kB view details)

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

xxtea-5.1.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (59.5 kB view details)

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

xxtea-5.1.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (54.6 kB view details)

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

xxtea-5.1.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (49.9 kB view details)

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

xxtea-5.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (51.0 kB view details)

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

xxtea-5.1.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (48.6 kB view details)

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

xxtea-5.1.0-cp314-cp314t-macosx_11_0_arm64.whl (12.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xxtea-5.1.0-cp314-cp314t-macosx_10_15_x86_64.whl (12.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

xxtea-5.1.0-cp314-cp314-win_arm64.whl (14.0 kB view details)

Uploaded CPython 3.14Windows ARM64

xxtea-5.1.0-cp314-cp314-win_amd64.whl (15.5 kB view details)

Uploaded CPython 3.14Windows x86-64

xxtea-5.1.0-cp314-cp314-win32.whl (14.2 kB view details)

Uploaded CPython 3.14Windows x86

xxtea-5.1.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl (8.7 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

xxtea-5.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (42.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxtea-5.1.0-cp314-cp314-musllinux_1_2_s390x.whl (50.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxtea-5.1.0-cp314-cp314-musllinux_1_2_riscv64.whl (40.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxtea-5.1.0-cp314-cp314-musllinux_1_2_ppc64le.whl (45.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxtea-5.1.0-cp314-cp314-musllinux_1_2_i686.whl (40.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xxtea-5.1.0-cp314-cp314-musllinux_1_2_armv7l.whl (43.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxtea-5.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (42.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxtea-5.1.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (41.3 kB view details)

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

xxtea-5.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (43.9 kB view details)

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

xxtea-5.1.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (54.6 kB view details)

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

xxtea-5.1.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (47.6 kB view details)

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

xxtea-5.1.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (46.0 kB view details)

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

xxtea-5.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (44.3 kB view details)

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

xxtea-5.1.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (40.0 kB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

xxtea-5.1.0-cp314-cp314-macosx_10_15_x86_64.whl (12.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

xxtea-5.1.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (12.4 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

xxtea-5.1.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (12.4 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

xxtea-5.1.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl (12.1 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxtea-5.1.0-cp314-cp314-android_24_x86_64.whl (13.5 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

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

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

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

Uploaded CPython 3.13Windows ARM64

xxtea-5.1.0-cp313-cp313-win_amd64.whl (15.2 kB view details)

Uploaded CPython 3.13Windows x86-64

xxtea-5.1.0-cp313-cp313-win32.whl (13.9 kB view details)

Uploaded CPython 3.13Windows x86

xxtea-5.1.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl (8.7 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

xxtea-5.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (42.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxtea-5.1.0-cp313-cp313-musllinux_1_2_s390x.whl (50.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxtea-5.1.0-cp313-cp313-musllinux_1_2_riscv64.whl (40.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxtea-5.1.0-cp313-cp313-musllinux_1_2_ppc64le.whl (45.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxtea-5.1.0-cp313-cp313-musllinux_1_2_i686.whl (40.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxtea-5.1.0-cp313-cp313-musllinux_1_2_armv7l.whl (43.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxtea-5.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (42.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxtea-5.1.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (41.1 kB view details)

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

xxtea-5.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (43.7 kB view details)

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

xxtea-5.1.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (54.5 kB view details)

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

xxtea-5.1.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (47.5 kB view details)

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

xxtea-5.1.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (45.9 kB view details)

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

xxtea-5.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (44.1 kB view details)

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

xxtea-5.1.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (39.8 kB view details)

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

xxtea-5.1.0-cp313-cp313-macosx_11_0_arm64.whl (12.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

xxtea-5.1.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (12.4 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

xxtea-5.1.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (12.4 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

xxtea-5.1.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl (12.1 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxtea-5.1.0-cp313-cp313-android_24_x86_64.whl (13.5 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.13

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

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

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

Uploaded CPython 3.12Windows ARM64

xxtea-5.1.0-cp312-cp312-win_amd64.whl (15.2 kB view details)

Uploaded CPython 3.12Windows x86-64

xxtea-5.1.0-cp312-cp312-win32.whl (13.9 kB view details)

Uploaded CPython 3.12Windows x86

xxtea-5.1.0-cp312-cp312-pyemscripten_2024_0_wasm32.whl (8.7 kB view details)

Uploaded CPython 3.12PyEmscripten 2024.0 wasm32

xxtea-5.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (42.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xxtea-5.1.0-cp312-cp312-musllinux_1_2_s390x.whl (50.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxtea-5.1.0-cp312-cp312-musllinux_1_2_riscv64.whl (40.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxtea-5.1.0-cp312-cp312-musllinux_1_2_ppc64le.whl (45.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxtea-5.1.0-cp312-cp312-musllinux_1_2_i686.whl (40.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxtea-5.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (43.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxtea-5.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (42.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxtea-5.1.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (41.0 kB view details)

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

xxtea-5.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (43.5 kB view details)

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

xxtea-5.1.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (54.4 kB view details)

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

xxtea-5.1.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (47.3 kB view details)

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

xxtea-5.1.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (46.1 kB view details)

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

xxtea-5.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (44.0 kB view details)

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

xxtea-5.1.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (39.7 kB view details)

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

xxtea-5.1.0-cp312-cp312-macosx_11_0_arm64.whl (12.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

xxtea-5.1.0-cp311-cp311-win_arm64.whl (13.6 kB view details)

Uploaded CPython 3.11Windows ARM64

xxtea-5.1.0-cp311-cp311-win_amd64.whl (15.1 kB view details)

Uploaded CPython 3.11Windows x86-64

xxtea-5.1.0-cp311-cp311-win32.whl (13.8 kB view details)

Uploaded CPython 3.11Windows x86

xxtea-5.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (42.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxtea-5.1.0-cp311-cp311-musllinux_1_2_s390x.whl (50.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxtea-5.1.0-cp311-cp311-musllinux_1_2_riscv64.whl (40.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxtea-5.1.0-cp311-cp311-musllinux_1_2_ppc64le.whl (45.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxtea-5.1.0-cp311-cp311-musllinux_1_2_i686.whl (40.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxtea-5.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (42.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxtea-5.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (41.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxtea-5.1.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (40.8 kB view details)

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

xxtea-5.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (43.1 kB view details)

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

xxtea-5.1.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (53.6 kB view details)

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

xxtea-5.1.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (47.0 kB view details)

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

xxtea-5.1.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (45.5 kB view details)

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

xxtea-5.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (43.6 kB view details)

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

xxtea-5.1.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (39.7 kB view details)

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

xxtea-5.1.0-cp311-cp311-macosx_11_0_arm64.whl (12.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xxtea-5.1.0-cp311-cp311-macosx_10_9_x86_64.whl (12.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

xxtea-5.1.0-cp310-cp310-win_arm64.whl (13.8 kB view details)

Uploaded CPython 3.10Windows ARM64

xxtea-5.1.0-cp310-cp310-win_amd64.whl (15.3 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

xxtea-5.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (43.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxtea-5.1.0-cp310-cp310-musllinux_1_2_s390x.whl (51.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxtea-5.1.0-cp310-cp310-musllinux_1_2_riscv64.whl (41.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxtea-5.1.0-cp310-cp310-musllinux_1_2_ppc64le.whl (46.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxtea-5.1.0-cp310-cp310-musllinux_1_2_i686.whl (41.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xxtea-5.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (44.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxtea-5.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (43.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxtea-5.1.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (42.0 kB view details)

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

xxtea-5.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (44.6 kB view details)

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

xxtea-5.1.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (55.5 kB view details)

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

xxtea-5.1.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (48.5 kB view details)

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

xxtea-5.1.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (47.5 kB view details)

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

xxtea-5.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (45.1 kB view details)

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

xxtea-5.1.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (40.9 kB view details)

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

xxtea-5.1.0-cp310-cp310-macosx_11_0_arm64.whl (13.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xxtea-5.1.0-cp310-cp310-macosx_10_9_x86_64.whl (12.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

xxtea-5.1.0-cp39-cp39-win_arm64.whl (13.8 kB view details)

Uploaded CPython 3.9Windows ARM64

xxtea-5.1.0-cp39-cp39-win_amd64.whl (15.3 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

xxtea-5.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (43.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxtea-5.1.0-cp39-cp39-musllinux_1_2_s390x.whl (51.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxtea-5.1.0-cp39-cp39-musllinux_1_2_riscv64.whl (41.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxtea-5.1.0-cp39-cp39-musllinux_1_2_ppc64le.whl (46.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxtea-5.1.0-cp39-cp39-musllinux_1_2_i686.whl (41.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxtea-5.1.0-cp39-cp39-musllinux_1_2_armv7l.whl (44.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxtea-5.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (42.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxtea-5.1.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (41.8 kB view details)

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

xxtea-5.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (44.4 kB view details)

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

xxtea-5.1.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (55.3 kB view details)

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

xxtea-5.1.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (48.3 kB view details)

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

xxtea-5.1.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (47.3 kB view details)

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

xxtea-5.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (44.8 kB view details)

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

xxtea-5.1.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (40.7 kB view details)

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

xxtea-5.1.0-cp39-cp39-macosx_11_0_arm64.whl (13.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xxtea-5.1.0-cp39-cp39-macosx_10_9_x86_64.whl (12.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.0.tar.gz
Algorithm Hash digest
SHA256 23b2feb295cdaaa984e8f1b6f3652a5d266b1329e336f90b17f2e6b8301e143c
MD5 ca3e30a7226d08cf2182671989d751df
BLAKE2b-256 cbd45adb251428d7ef180d85f006f45635b83d57c713772e1d5d0a1db6012d7f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e9ff547f6375661b337c1dbe8e7637e3cdc8223c3b152ed0bd4200a9c6fc8eeb
MD5 a2f4020b07f43c0de7a713211df3ad43
BLAKE2b-256 35c870522e88caced832e6569d2c10563175fb50a0d41992d371c1fb82a01830

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0f5a6166257e8a05cb7fbbbc04b77e637d764cfe7d9394ba76249aa1fc951fb4
MD5 76c96c1326e923c91b27f7efacd895ec
BLAKE2b-256 b4d6f3693b7b9f2c2e8cdfb768eaa45f90509c5ee4db756f143fa0aa4f8765d3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1af21e8d7f9bc58457a125c1162e8b550b3b368fb5dc998744f7e74c6db56db2
MD5 cf4747eaaf09b2e0f40e787d0588307c
BLAKE2b-256 ccc315a95266614ea97ab862478d4b69377c3b68a0ff1d3093b3bce9d25e7b4c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 bb3c65685aa95c61a62e0d93032604c86e22c60a6e3e5332b9d6a23725a8c3b5
MD5 8e57de403276dff3542fb7107b074961
BLAKE2b-256 157a92ef144173c7b010edf789128ce8b6a2e69553cc6b1ea8b54e604f0946c1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a56426cc7e245b610def789d254890368ca393aca088eb1484e2f96b858d9122
MD5 1d22fe17c97550f60c40b7f244ce525e
BLAKE2b-256 9dddab544903badf423b737437f5f71c96f11df3a4bfaba287a3cffb9e45f019

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 067b0630f018691f6bac1aa8a7a94c3f59d95ea829ac5a64cccacbfbe6f27c1c
MD5 018a7940630f055f3a45993f01764a00
BLAKE2b-256 ca625f8cd6c2c2d08d25af4159fcdd93a89c333b1d6bc13e481273569732e274

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 51385451750b92e84228aa43e9e8cf1a6a2b3dfad28ace869db504a1a5b087ad
MD5 fad3354567fa18a6ce9fc244809b9a4d
BLAKE2b-256 3ac3021d49e6ee3a103ed5a80f6dcf4ac765bba2d68291a7f7d8352b6a39df58

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b2fcbf1e83ce8f53c47b322c0270f3cdcc3c20346660172e96560559d4d241dc
MD5 f34eda22ad3de0681b5c19f0b487d172
BLAKE2b-256 b7b2c2f984b29f7c2ba5c620c47369c7afa352958aa09c741d04f6ad880ccf27

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.0-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 32d324dccba503996c5195c2bf202e4ab4410a3139cc0b161ff5b6565cd2285e
MD5 878c8cda1e734190bf69f76d4093dea2
BLAKE2b-256 292b1d50675d1d70511a0911b680ba517f312975f52cf8485336814cad077c9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.0-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 224903360215318835928490f54c9a98e3c8445321b344282637c826c2a3665a
MD5 62cf90521d4002c21333e1c62b83094d
BLAKE2b-256 0cd3fb93e44858b72e59ccf069a4b1e7a349fbed2909ad6851d1b2c840025839

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e888def5148d34e025dd3ffadb09c1af1a80ad3fd998a04f58120dacdfcc365
MD5 a04392fbc5c3c9a7122b231309c21b80
BLAKE2b-256 85ce16891ffdf62779797e4e911a5a8689a497dd78d575c79354b3f421eef2ee

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f3685e1e5c4a17a511f4bff6affec9b62ab79259b52c33d14538e819b832837c
MD5 429326cda09d3ccb9dfb8e0c394545f0
BLAKE2b-256 54801cd113be7f64f54fef533219bd087a897c5ae31c6570b68b50ab57cfaef6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 220054dab129d0192623c080ed5a688b68c6b6e8b0e10209359dc74ae53e02a0
MD5 650b5e1f3251c2e5d120c90066613274
BLAKE2b-256 fb42dd6c4d136c3870a58a49a631d2a027b5d57b33a25cca10ca2078f5ea9efa

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7019c782ae60e70da8d006942d8cd1428280a56984955dff7f3382922a6cc754
MD5 45ddfe48dcd98cff72a8693d898382fb
BLAKE2b-256 256efdbab87eb7d681bddd72ed6488fdbae12b4e7fe8f11c7538f665715840bf

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.0-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e341ee7d747a13073050590920be12e3c6950017b86a0f35f50df03a958e5612
MD5 c90e6f24aee1822f092d6709dbd2b2eb
BLAKE2b-256 2ea6d039756cf0d14a0277e2f25d84d90dc1fcbe8bf48323b1d0036655aa03c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.0-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 65030f1dfb6bcafc6ef30a6296884d979df5decbf02b934b364ac38b6801f66a
MD5 2606019c6f9ef08a3c44402c224ebc9e
BLAKE2b-256 703489912d858cd69484fee96ec8a7107346a3a4e965cb2570bbf532044803b0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4116e81b6de0368622b740c28239fd8f11f28ac51b38d352cd9641f2b13454b2
MD5 285db2cb308ed66deb074f0422a793a9
BLAKE2b-256 be578f2e6a6ce0d59adbb78f81e049bab367b05820904206496824830a53aa59

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3035208dfbd32784224dbfc1f277db6ec4df0f3dbb9f13c31eebc76587e64f1f
MD5 b17e6d75730168e68851a4254a2cd38a
BLAKE2b-256 b23064b7305ec632b152d644651cc326790d2338e5373b6e3ff82a5439d8816a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 9d0adcdc152aeefa5eaa1f3d7b2c7eba568486dd324579edff7371bc63f89cce
MD5 01bee2b7d112ffce2413098a6f8641a1
BLAKE2b-256 f747288b906e2660c32ba60c0baa765bec7f51434998474645b55a5561fd7e8f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bf96b8b1abe89beb05694d2834143686a76e185faaf10f5dd393b2618d8d22ee
MD5 d52b7884936fa84840d03a7ffc4f70cd
BLAKE2b-256 5e9c8823eaf870d5e99a3cd06be7c20672c3586f28ef6275612c45a77472a15d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c2286757af9eedd9afddcdf8d0d78e3172456f9c9d358b79765348e36d52ad28
MD5 c70c3acc78a99d2fd96b414e16d9ba10
BLAKE2b-256 a444e70f9a5e4a7d2a262e28defca90612de7bfff19524b83a04b757eb4ca93c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 361db1dc2a2dd6811141e0529fd056452a6fa637de38160ac2dc14cf941d1352
MD5 5f7a1651341a17e0d8038995afb7c668
BLAKE2b-256 f9f2748aad37fcd90c78d28f491cd0cd6966d9216077f9c9b7c86cd47127f1f7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5fb8283e235f166da0e1fdaea078ae8f65f1b06dae8bb18da6c09efc7fb9e62c
MD5 a7b97b07174f05e7893865df914cd172
BLAKE2b-256 68cf1f45b2cc24a63aa687beb7ca231f1c878ad4c1845d4d5b075d76f5605511

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 2ad1413d968b5da2dd3f37d93bae7bc2f52a0b07b968a590db8e32ec44be18fc
MD5 9b3c366f4636ace04a59c846e1103f32
BLAKE2b-256 47e2fd664ad49ccda24d493137418e01d05d7fc5125f46a0b44569602a65734c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 da06853fc5339f69b3eadb1e95f258cbe3fdac20f4d7737140842c37020ba715
MD5 71b1c908885ab64e95a11e40180c5aa9
BLAKE2b-256 ec17dfdf0b8eaf30e61306595fba5392e6f81804fab8a2d8c157fea49edacfbe

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 5ce75f17170676b6e26c199b3544890ead02f2589c2990a349ff5363c7fb4467
MD5 ef601d93b5a9536e09057e25d5755b48
BLAKE2b-256 c3a978b62098f5878f513fff3ac0b121959acf88b1d963cf75b98f9e97904d14

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ccd039799ccf0b0b43c24b7e30642c3cd4bf6a79db9a807dfd47ca7f5b704a8
MD5 229e2d64c67750d447e47ffed1190d1c
BLAKE2b-256 b624d355d3d5349b33e763520d52299ee05761308f49ced269dcf6625a803637

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c1085b6520ebc1350b37320c4137658635cdd147ee7ee3c8cfa6054d5ea7b8cf
MD5 0f7dffc3b2085a91633b000771909886
BLAKE2b-256 01de8048c86b433878ca282367a6eef5dc51f97ea3302b52a8d5a6e030fecdc3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9891e133a184c1a6be54bd107f0de5c855f6d807db2215773855a59b12ec061a
MD5 db26fe1d47c35900b251b913c8f1c786
BLAKE2b-256 cfc6d877e8a65c8dcda4dfb93c98a42eccf95ea1fe30038b5363303824ffa717

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 dc59d3790cfe975f249604fc241ffd5a0260544661a7581427d3a3f47cd30b9f
MD5 2a9fc1df3917dc8bb674c18c47cb91a1
BLAKE2b-256 c4508fb45c033ccffa3cf966d8f3c17bf60846cab1d275b56f59934df564527f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cded0868bcc94549f46cdf56775b9d1b79e95a6e16c796faa74e2156e7e82670
MD5 aa5174fe381728ccd4d077a7eb52b0e5
BLAKE2b-256 99cf8312ef8d28583fe3bf76b973927114f15112f44bd4a5852fb1512d1e93a5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2f15f6e7e7d73d4a30fbeaacc17f615cc329de8868c276becb45d2d75ec570e6
MD5 66928c41c5d5549e339f1a11af5607cc
BLAKE2b-256 ad97f6fc7fe16ded3da9c061169fa803cf0b71292b0c271f203015ad492ba9aa

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 71661c5699a2f3c3782684ddc61a3c691e260965d3698cd1336fc6646a566f57
MD5 df4df238531505760c0b2a0d6dd577a4
BLAKE2b-256 8d70cb6461121358b40ecd0af2c2409e5c093cfe2be890668e278891680f05dc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 63f791354052662ddbb9ee99936fcdb6e04d2f6b1756158b96163ff50b0d106a
MD5 c2fd5e03988efcb6c0cd2278141ba846
BLAKE2b-256 56d98afeff2447935e680184f8db2f3469828cb13ab44ffce80ecebdb90385c5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 027b3f3154d127eb4fa4633bd7cbd8d19778503d963a8cb9b86dd34f4c02fc31
MD5 ab365f918a6fd06999d335aafb67ee4a
BLAKE2b-256 f6fbd978c6d69452449ef9c90e95ae7c0537812a75d1bfd5c84c06d5716c0f84

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 fb2237729308fad4cc2ad457bab118273e4b2fa7626bc3dc9bf7504485bf5fe0
MD5 b1392d9bd3c9f5cc3094041a21ed4606
BLAKE2b-256 2b2d75a82af6fac00ce777e70eff96c04abd7362f3e415b20a75bd1298e34101

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f4080d0fdbc664c2097a8f73bdcb6cd4fd61b348ced073daaf87c26f1c1c1dae
MD5 9fea52255b52af320a8c1a49fe2e1b37
BLAKE2b-256 8ba2590955658a3954f8382698543f2c8abc2b62ca98435bc57252773ce47c35

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b2ce127913a6c9812f31233584b19340ddcbc370b074f6b9b316d6afc163304b
MD5 a2a9aadb56813b996f45eb33ddd9f797
BLAKE2b-256 94db1f6b121e9e040098eabc13b277cce32261838d19bd05daeaaeee4cac15ee

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1789c88895ad85537f58d56097426f61736c44b6ca44b799ae591b191eda05e7
MD5 a8099dfaa6bb725a0c8e264d8a1305f3
BLAKE2b-256 a955975aa4d0be23626988c80dd8e192423db7295b5c481ca983e5667617ae9d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 83b0f7fd3f7f9bc83db89476201fefebf662473f2df74571c1c8480b312ec939
MD5 0acdd7a04d297cc246fec332e1bba56a
BLAKE2b-256 fcc854917b9d7ffee46766e4754e956484223db4a2c86cd6f8e6b293307823ce

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2403f140ec2bb78b05bd225bf0adb01f30dd703c2278802f91b287367c4007a7
MD5 0aa9cad58a387875125e51475b9c8fbb
BLAKE2b-256 f2eebdda2758e3fd8863c1dc38ef911038ac6b7c3676815e80c625261525b550

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c06ef30819761fb765b493b719b5bfd57c0a3cdaac22e70a80482982d6d4e60a
MD5 31898fdac80fdf5a8dfdf021692b9c90
BLAKE2b-256 bec070fc3e3a309a1fb99417be4313b53d4cea5669ddaf5075bfb17bf4c5aa25

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 7f4009bb0a8c1cb6b647d98cd112a77e270447a37ffa3220df250684298bc4db
MD5 d717eb19c6dc3aaab7d227da6602b0a7
BLAKE2b-256 ea1677b9e8addf3ae163aa4dc57e618d005a5a70670599e49246ac2780a279f5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a82388326769006e78135b4938c522b4ebf8a2cf3813889fdc3d4439ee564c61
MD5 5f3f6e2368c99421b0fda7b1c48cec37
BLAKE2b-256 6573c08a0205e44b94d263beeb2c74b4c8453991a56f89290b0886e9855f6717

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 924680f2bed0225121de3f59572b4116c327e6feea1cf149b5a6d3b5a36d1630
MD5 494c438e57080c0f6f97bb17db2ecaa5
BLAKE2b-256 64077ec9e9c7a6873a5f0dae2b7b176b698793dbb14fd245c7cbdb074aace018

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 e319c08997837e3b87b7fe54278aa6d3f952180ba56adc6ec4e98e4f59416b45
MD5 3f88a989de9a856116525bd62d4125ea
BLAKE2b-256 84a3079461c9c7530c4542c473dbc99cd042a33785785b470a703e11fdb96187

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 116cbc0eeec99116ae479842c0884461186787f990a219b4e99ce34fddfd5443
MD5 6880a8d274fff14267dc93377ea2181b
BLAKE2b-256 d700879c916d1497be0fc49df3381a516c7829bdd8ab93636158848a7ba72dc9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 97d95ded1093d60ec5afeddf19d09b1a167f006c8fa5e1a62834e67eeb36b107
MD5 56c8a3bb8e68cd71689bd5f3cb9d92a1
BLAKE2b-256 265d16393ff7fe39b6196b8a24f6723240b7919559b1dfc55152d42ddc9f147f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7f11f8d60f58196a49141a80edff2ffe5022b65b7aaf4404ef0869ead569bc16
MD5 427c489dca6d57b1b878644532003316
BLAKE2b-256 8b7b5b0b56ffd71ecba4611d66f91121adb6df23bcf52cd5a72d71ac100d41e1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b968ce6db3f853cb28e74ed67875d17464acc727df77e767b8e7ba0bb85eab95
MD5 9dd3103c926eee99e305bd43240cd2a9
BLAKE2b-256 2976630331a2629e54cd86813b909c45f27eedc5767c29ba0092ad42b15ebb23

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 52ddc3c634ee427ee703bda1705cc62681181a3ad5ba7b42efb22a63df1d0b05
MD5 a8f065548115a2a5b91e04993ce08eb6
BLAKE2b-256 4454833c4628cb6ba6177e934abe3f3abcb3d6b426e43cfd94579dcf41b99287

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7a648dc32e27b990aec1ae3bec18f3ff6c4608fb87d14b84d82dcfd93e1e189a
MD5 f57662a254428d9da36c5d842de88767
BLAKE2b-256 c6591b17a34681c25e51ec59a8dc36676b93de3101af5ceb31aece4ce7d159aa

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06638dd2419cb8b426643ddedd50cd7425889087556c7c48649503ff90353499
MD5 a7a96ea05262e72e102f057adfa3e7f4
BLAKE2b-256 5421ed2a56922f035be684a4094524e7359ee19e59085a29121d1f76312f326c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 870a8fe070140ba906b064c429409ae6d4c11b4c566488590a0ba3be275aa1d2
MD5 3b28ba3f15d96885adccdec35c6bd828
BLAKE2b-256 47f0b1270a07623408d4d94ca97fef156a6609b587079815682482e598afb42b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 442d4a72fc79d1b87015791018c041ef92c7a015590afcff70d7c40fb488a315
MD5 3ae3c5016ee38e39d185370c694dfcd3
BLAKE2b-256 5308fecadc73fb8bdf58b6c298587bb0be51a8b5cdd1ccb34345526c156a2b21

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 39f2f44dddc9be81132de8a926a42ef70b33ca4efd93300562a915f63e1c6aa2
MD5 f8a53a4179450a66d1dff849b6f81ea0
BLAKE2b-256 a8bef47c3bbdd3607b265b1c6d8a38bebec9b4663ee2feef80d87f1168d1d8cf

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 23b6b150cc3e4587398a7e54598ad081902eab0192e376306c853683d2f3243b
MD5 1bde4c955554bd637bbdeef99ec1cb4d
BLAKE2b-256 5e6a488bf18c45ba138ae1753e64022a1b600849701ba8e61647ee5753653d6a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ece6b452413bf251eba508abcf3af68ac87000c8793e758bf84947bddcdb2b58
MD5 f5657fecb02a8265aceb4c9da626b6e4
BLAKE2b-256 857acaece70079f3224844bbef7c654ec4e6b1d16b89520acaed384a55b09d25

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 44d9c5b7800c19abfc573eb500cab49a2751cd01a0933168b7179662be8627a0
MD5 74d310738c6ad45a16abdc5f44c8d48c
BLAKE2b-256 79b0247042ddcb8da8331960ecaf80d1facbcd5953f71ee4ac355979e605037d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 736994ab459c2199ae3e5d613a3b45b6e6212a513f0bfeee9731766b4a3d857a
MD5 e3c7d5e0a680abdcaa1d02443062b4f5
BLAKE2b-256 dd0698e8204af84ed5a3096b7adec9b1732b0856ed4ff595d6222a1cd661a239

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bcbe2851359c9ced98e3e96f6601dd0c1734724b7cc49aba2c856f825389a4d3
MD5 825081266ce73bc7c0c04f131da91b3b
BLAKE2b-256 e0f2ed02bf200f96b9d25c861f925709b95248cf68ece68662232b2958589c45

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 aa491b90fc492792bd334309d9332d898cdd1ecf0c8972a2976aece1e9ecd4ea
MD5 041abb15e3ea5fb0450b5eb9a2ea1ec4
BLAKE2b-256 059501ca826a321f72f31190af30336ef9033ef64146a8d88e9db85e0afee782

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 414879c1c7f7a9a1900dd8023588c5e78f7486173450ed7338c072d9d1ede334
MD5 74e6e482c5ccf606174df49881f48dad
BLAKE2b-256 a2efe9871054ab73a19fe5e96d84a4fb953b45e007ea6938a23039f90599f19e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 0314cbdb1d1b02f0ec85abd7e9ce9f754be1c46389a673449361fa917665da84
MD5 026ba9374d0e1c0c409f26a632e1f54c
BLAKE2b-256 05b2239f380dc5a7125fdc326ed59269682fa1d97008aac9c954044e2e646612

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 3d6da975982da4b2c9c09d8382212199fc2880397887eeeb017dbba8dd232888
MD5 137645872cccfcb79e360c086e6eb27b
BLAKE2b-256 9e454e11e849236c394fff4043b2bb2c178a989e62533c9dd1b1ba89e96a5df0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.0-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 de3640b894d3d169ce2931719df4add261bae91061b62a8cc7b869443e43aafc
MD5 a20e650537b60d97f1526d19a38d05e3
BLAKE2b-256 1c6464f311c1cc0ebfc86af76a24e9d3097efc2c612fa5541a1e43f3238ac698

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 29ca82d30056887e522cbe40896fe88bd6ed87b0b0dc96d4b5df816d27c71c30
MD5 8dc9ce3d866e75755d777aeeaaf61002
BLAKE2b-256 64c0d44259b666f26bc8f3300fdd7b2a2a647637633753295964f35faf06ae8a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ea5c848b4e594f6449e86c3825c5a57fd8c71d1ae02911e32886b99dc92d0846
MD5 ca8efb7d562a695571ee3a164624ef86
BLAKE2b-256 a05e14c9c94f032ad302bfd7d49071e7b0ada35ed5f548c33e5446467010e5b2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2ba6a4ac8f55ef1b469653ee996ba2675ac07eb96baf5acfae7af3be7495b5d7
MD5 b2f25590aa2a3fc5ea867fc62121d9a5
BLAKE2b-256 0fdc07924f74d439df1438111033bb277e8d3aa2727eb920f95952b4ae85f4df

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9826f48140f0022df080c54a45f2e73b26c8c1bafa84c5400112702c91f4e895
MD5 22524ad6a6687517e1ec56f0a8f77fe8
BLAKE2b-256 8f02d035fced885918e80c35f091928b2abdb6968872f0d1961ab74ac857a267

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 32dfa8ecca1df9f70cef3a00beba4dc9b86afaf696c9fd8abeb6cd8ee721dc6c
MD5 d588b2fa2a0cb013eb489751ffe44e51
BLAKE2b-256 bba314bc1b7d55c6d0934de202aa9e9ebba0c2ffd56e9ded7a64cbd556fa1aa1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36dbcbb10c923608aa004269c53bd93c777e946ff692abc9230bd2615a0ea2b5
MD5 9a1667c383f2f3235dc5e006ea336330
BLAKE2b-256 c534d38e1da36f66cf04777202b941fb997f46388c6b6fef02157c3177af840c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 dc788c9abc6ab2f2e424cac3afc1e96b65805ba650dfde18fe8d01a5c7dc2464
MD5 6525b82912cf09cc6550d8bcc068c990
BLAKE2b-256 5de4ad0bdd5e2d880810e41bb24bc3deb5149d6414592ca2b7a9ca8e98e1a653

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7e3c0ca75fc1e89367dbb349787cc50993f229bf45b263c286c6bcfc4353d8a3
MD5 c042be43ab7a987ac564b1fddcdce099
BLAKE2b-256 a7aa3010172fd97425be2749465c1338f76829c4b4c1a11584b8808db38f4b2a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9ccff2cc54465818d2c1a9d3f7b5d7afd2a0af9f81645aea0da4c265b6077382
MD5 053aee6807d9da6d2d0312d958e6b03d
BLAKE2b-256 0024f0d65684b009af3cffe318e0b79871b89163213c8c17e29f252e54d7d109

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d284f4fc75d0cbec88374122dbc845e869453dbecc177721dadb58bb86f019f6
MD5 e477d03dcbaa6aa07275129a8501e790
BLAKE2b-256 888875054c61b3d0c1b64958e840d75428dd03582f549ea60cee386d7525f7ac

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4a260a9657d5a463d2098fb45226ce459c27609340f50f296c142280829bb389
MD5 0361f7972ba6f79f68e745ae0a94d5c9
BLAKE2b-256 805aa87c69543c44ef948b054140ecf2a2c3fa87b2f33e5710908d0ecd4d5520

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4322db92ae4444cdfdf97fb699ad07e5a60997d85380fe62aaa523e45bf8f20b
MD5 2d9dadd5f22d43061d6e4666736f76cc
BLAKE2b-256 cdd139ddc511d91a6fceba1dd79ec1d281d17c41867c402f63a24dc67da832e6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 039ea45966dd0587fbaaa00ca61227ce889607a65a031db68bdef37f532e9315
MD5 c88ad4c8ae2449697cfd5829b2ad9c14
BLAKE2b-256 054f9c1fc9084fdc459d130925837217c192536574ccd285c01793e29b09c220

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a2555ebd3bd96b45a3be4669cc338d34504adbca020f4a76f5d42b6086d1908
MD5 32216e4c5f0544899cb63756f36666be
BLAKE2b-256 d4da4b2036b310361af9891e03bc7cafabbfaeedac0cef730d6ea839dfd5df66

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 de68036b1e450900df1f953d1cf87fad6baeb866bb832e4f6cd48d8893a27897
MD5 b18af3f8b3fd526c4c4d0f7d94457670
BLAKE2b-256 0b6d47bbc8df53e5a066cc4af2b764c5013af66497ea49c6138d331b1728beec

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ea3a7fdc8deded87849944b66b1c5693c489c17907779662e5c568a6a6744ced
MD5 a78f76397d98f7b1f12c911786d02318
BLAKE2b-256 7274974c7d0bf1753fde65eb37ee1ebd6c1260c4e2a291b87184cb0590021ddc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 848f3bda984fd6640a1fb111aefa75cdfc62f348c004adbefdf00cb9201af7e5
MD5 d7f39414cde397019e1a93c49f526aea
BLAKE2b-256 a1ce592f1ad7c2cf95cd1cdf550ed9657e7ba4791dfc5111b1f7b11c5774a04d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ce9c4dad9d556e23c263d9691466b31202933a7448e3f4fae176e75cffa2aa45
MD5 cec2524047e1e2a36552a4d76fb52f68
BLAKE2b-256 5a93126e5f73f3235777eed17d64ba339eb0e2d0f21d90650681cf79d394937d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 eab33b4122017cb65db027eb64d379403f5876ada71951abb38df7e9f5d5203a
MD5 4bc8d0f561243e98f60f2bd9526a806b
BLAKE2b-256 e3b8d3d446bfc92bca0b6355a97f1ac156d3d93c293d55a1a198fa576395cd21

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 758495efc0181110c45d019c8a2ddd7df1e50890f1e88470ad99d7d72652322d
MD5 bb838c46bb0c00776c3f5d46e9665868
BLAKE2b-256 5b8a0a54678e435f0820762b227b3e4353edd6be55adabaf74d0eb68605b5a5f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2c798ae5d420b5abc78025209e0ec3986d5cddcbfec311baa308f5d64642f3c0
MD5 2950738abab59fefb496ee28b244ca0d
BLAKE2b-256 87a2b7d4f753079d3a6c19bcd62124aea6f7eb967fe53c43d85c7679cce3639f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 e553e0d31792913746309c5763de9fb36b4486043d456b985c5f0f294a5f3d5f
MD5 8c3a40f325a63ba141b0bf0a4aa9e70f
BLAKE2b-256 840b5eb8b233c8a05d74385214e390265cf773c5265b6c51d4a60063b12e88ee

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 21ca38007eefdd95935917db7de9ee0bd54292a3e2ec9f5ca9845d11a0f6e295
MD5 a15aca8c5f98e77af2d1eb2e1876b708
BLAKE2b-256 bc1aa5b0389a65c6579bf2871da1403b77f9cf5a8b4d7b273dd671b97f9d4880

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 52336539963032dbee1a36a29a722c8067eba66d372ac14a8f609f7cfeba9f68
MD5 6115d23367b508159042965ce17d27bd
BLAKE2b-256 c826d65a4eb418975a81531f533f8b985b65b5ac0075b64c6db319d5475ba90a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.0-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 3a0bf97c93072d3b17067385abd7cd1a06bff8632241d483b569c3a24220a837
MD5 b24d370396e2d6553dc43de342a6f097
BLAKE2b-256 b669e1acd033c2fbd04fedbc86319d666e666809a39cb79e7f48000c4b82b45b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 a96003adbace34ecd79a2dab3a6d4247bd7ebe19dae0f29b8e14ee215084e2a0
MD5 4d7672a714ad2b621c2f84dd65d53b4c
BLAKE2b-256 0447480995b445171810b0247cc245b550183a38ee7002c4a1d9bc3a6156d2ce

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 e9eefa27fea76c4d8706b0fff1f2553389bcbef5d651fe12de97f5476d83eb14
MD5 8ff7d06e2509478b3beb0e4e52e0f032
BLAKE2b-256 a50e86b7a448ff22417a164941adcb05c29a48efd91af80cddf44b6765d7927a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a2c9dddb3b0b471e5297db01f6c90a25808120de83c287f951ce4315217824ca
MD5 457fc208430579aacbc8c68c7f5328c3
BLAKE2b-256 6cd90bd4cf53fb45d9e321adc370f0c259f87e363f61f2f83b9d911d77a0abf3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8455711c1c9c046f4092d3626e2d8c8da30ae4781e2ff1b21375984b861d83a8
MD5 79f1070b3f5028fa3591f849335e2f6b
BLAKE2b-256 39733bd1f2c87d718c20bba78a9e9437f3a6b8fde43dd39f31027b5796249435

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp312-cp312-pyemscripten_2024_0_wasm32.whl
Algorithm Hash digest
SHA256 c0d54920ac37ae4561003d03404607ddddd16e2dc0a960dcff754fd771472a1a
MD5 b637061cb354173142e3988860980748
BLAKE2b-256 532a86ab5e9c5e7ef8552b65eff15d99c977c0a63e1074cfecc83153899e8a71

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91009a1b3f424ae0061b8101e0a7fc7cf14fc3e89aea47957342e7c20e1c96ce
MD5 1a2d0d58cb5a2eebd1c42ecc66168e5e
BLAKE2b-256 115a96a27b15fed1016208dd29df3a24dd326e216a2c7a4577edc57356160b56

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 37d265c4e131b8c8f21d6db4f1e3a257277c7cd0ed044ac7f0a0fd6db62200a0
MD5 69f5d37bde41c377aae49ae501cdb4c1
BLAKE2b-256 c184b0dec597c7fd414f372133c7350f49b0602f1afa9ed575d0d42187036d34

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1fad970e5fbad6acf69a7c01a5523f2e5ad7c8e606c9c41912d05998beb7f82a
MD5 ec5d2b0f01110152cb9c37d56779ad55
BLAKE2b-256 78ec5a09513e517023015548735395c55752a96f3b342013c04471b9798c120c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 271a72c44e837d9220d4558ab917bd342edc91888df6d7e8421f744d8fc92436
MD5 4ef9701838dfab141ff60c291fc5529d
BLAKE2b-256 2657bc7a51792ff8159ecfcb03dee79ed9cf158bb0ebb2d9ffedd16a71e4e0cf

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4d98b43f6f1696aea61ffc974a6c10d7fc2abaee397e8536ac20ec48ec8a501c
MD5 d16d16635d570dc4b56863af62a42401
BLAKE2b-256 751f19ea6db8cc7f0f001801ffea0bd22bad2c22f63a489d505736e4c01b531a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6c6b1f24e21d2ee8ac7e427287f5873330687bed44aaf7411196c0661727e147
MD5 084592f00c3874cf71f2d4f2ce8c61f3
BLAKE2b-256 8bd504668de76d47056786a365295c7d535e951ec14d3cf82a673848304243e2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4066fa32b838a0070afafe2249caa38c3c287a81c008b104a5c86f88fbfa60d2
MD5 1bb13d8b39c6a5417aee229eaacfdae1
BLAKE2b-256 27bab937c34325ccf60bfbbd7aa4f8aaa1a0ef0f5aca4d03a23cca0973c18118

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d030be9a0a2916ec00d5b6f21a6478a4d1ff1c322a05eef86971d930eb146eb1
MD5 2b49f88d6e979f423bc8f7428c0fbee9
BLAKE2b-256 5d75d07da8af3cb29c55aa8926457dcec416113df88a08579bcd079ae8aec1a1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 485bd418fd5b6b8ae208f2baaa9872dd7baa333b7403a386ac92af09a653ac69
MD5 e0cb7718671b37b73d9a214b62c91836
BLAKE2b-256 568b7c963b3fae2ffb3c4513a0a64d5338b054e9acddc42d5f9b00ca9a5427f8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b5d3876d86ab98d96c0c3d747f2b941397557c43b0b4fb40c74413108a851c06
MD5 5ef818a6369d9c5d02e159637d99d81a
BLAKE2b-256 1385fca3fcecd5c12fd86ed4527c7548b2c56c20d02e7a6a074e9f6ef63c442c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 29c2aa0b066289fef84d0cd678baa67384d3dcddd1ba0da729127bbf5ecbc9e5
MD5 da647db777bc2100f4614af1f766e286
BLAKE2b-256 998f7f01361a451dae3a2cd74d85dee3a237ebea22384d43e0465b91fd7f75e8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5e637e65f842cc8c637f35b5f26a4f85cacbbf5ace62fcb858f3554f06868df5
MD5 7ca0235087ac1149f7091ce917801562
BLAKE2b-256 60c90e90d3278933da63f0caa75ac270b4f4ff4f38c0e1e32d73dc455b32aecf

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a456be39d2f4cf8303ea5d564d1ba1d6afae17192d07f8e55170cb86c269a15a
MD5 31b154ac99cf9cfb4997b16b75797dfa
BLAKE2b-256 76fab3578380397fadb005fa15c62fc09af974612e73dec3603d52020d02ad93

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 2dd28dde1b5e27fbf1b77236afdda6732d033c3444f6123f497b9be6c48d21c6
MD5 652e4ab0096dd94d51c3dd707b1dfa75
BLAKE2b-256 d6b47df015c1ce90657553a3afb1d8c507c7b892e31c1825819602d8eca3e3b7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 775c6c193ee9c40e5ccf910a5ec6cb497d9dc4bd4cd84b52d599c0ac1c523836
MD5 14905dce74d41ef0c17bb9ace0d351d8
BLAKE2b-256 62a437cd6cf963c685e11e98698192b6194fcd90cde7704b41f25bb4154bf545

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1aa1606528785a84bab3e2829d18e3669ad1b1d580d1e29f2dc75acdf40029e5
MD5 71f20799724a423e1c87f257102a4204
BLAKE2b-256 bc3b8ad5a2c6dbc445080dd30f29f1e4c37fcf7564c17064419bf582d871b8f1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b44d5fbfb2398ecd911683855d2e72a3536b846f86a625a82d9e0a2f759ca369
MD5 add19b0a7af7d98883c86056912cb63a
BLAKE2b-256 7ffd7823e3a81498a45fb6f129f56df487f910fa599be3f18b1daf8f762308e6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7b0874e08b75393ddccea7354fd25676194b49e292db30edc414341542eeffef
MD5 78cf1b30167e806081b715df3bd18c32
BLAKE2b-256 53f153dd7c4e24812ab5dfd26899bef9251119553935bd1c4dee17165d2ec7fa

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7f256c847a593c732e3aa43707e7b978a28c12874a3ef7638d58383fd2e8b9fc
MD5 07da05a938600e78c389e132629477a5
BLAKE2b-256 55f9c2059ad4b5e4a9becdf7a35fbda51fbfc36ef4a6694a4a543fcbed6ddcaf

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a320297abb20f51f4cc0df4f370fa330be5a3b74feb3eadb264ae4518c4a02b
MD5 965d984315d41c88f8ea0ff6352ef78a
BLAKE2b-256 f4c1cce645829c87b97abc7ca1d9d5606b1f1d9bf108a3dfbb2565cb97cb4718

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 cb6564d5eef14a97fd02be1d67a377c1ad197d44bc5b17f6a490d712a0c3af9b
MD5 cda7694aa0517a91a931b98ae6b8cbd0
BLAKE2b-256 20c687e534646521b54812075d64b6a0e216a80eea1b0b55a55f60c3b117e0fc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b0557f03fa2d6bba214fe3aec204b0b3176b08e7de7d3bdb2647eadcd4d59451
MD5 9c792fdaa723abb558705819f9c7e85a
BLAKE2b-256 81baf73bb4cdf8109bf373f7f2ccadc25857544eeca8d60edd85ff73bc3425f3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 63d6b572a4b81bfbab030449e59f18483732719fe4217824c19c038c309530b3
MD5 e008dabc493d068f6ee16f8fc1b6dbb5
BLAKE2b-256 d50fbc28d39bafdcbf4b0586fffb67c1e312e3080567556f833541d95ecdbb7b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e32211d03f13bf26fd7c5f92ef7b26dedd77c8142cc5c582ffbd3323762f0034
MD5 33b735d99bcc3ef407363c734e879967
BLAKE2b-256 8ec1580e5bff1952bb5ac8c657c546f5c3c2bca22ad7bbb81611ab194bacea83

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9e79e2b4ab5d748725d46bb1ae149c9b6d0f56c8188f22738708360420dfa9cc
MD5 d4cb9b2c655e0f2628a18d21870fc12e
BLAKE2b-256 39b2f37ef445f3b19431624f2b163d0ac2e425ed769414ba392f5e268eb362fe

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8885acd6665ac874f0e406b9a3966abd2c37a3cceeb1e3de72eae99574ced6b2
MD5 d380b80246c9939dfcd855b245294500
BLAKE2b-256 94ac390df1306371c141ab6e58d27842fad8ee23c9c4661744954918bd9bbcc0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 28a2ed287220d47648e4381813d86ecf3f8ea81649200de2b3325800093af052
MD5 c767aa1f4593acdff344d179ac8271f1
BLAKE2b-256 68284c524d2e65233fdd040e53294479904728594bba9194be33db607a635f8b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b3bba8b94b33ddbe1f063a056a3ee179e2b0ea912e06352fe39e50ffd9c77dcf
MD5 da23717c96802d769afad0c0234e5ee3
BLAKE2b-256 4f1176c08680d2414cbaa6a9821ef4712341605b0e63ff8bec66c41632a8d926

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e1f3270fe5423ae7c4b191f73144ac7cb39018db264a5ed755068e25577fda1f
MD5 d6edb64c89c9536efb00b13ea62ee67a
BLAKE2b-256 38e8ce8409c545da4036e5caa27a9243cc4066960e3c772c2555be8b8a02540d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b2304b9c6210ebf1ee3f2099636de7ba8fea624461172b9acd35154d822fb22e
MD5 7d3d6c489dd09fffdc2b50f5ddd2904b
BLAKE2b-256 01d87909920136eceb1ead9c8d224cc1edc1f6d46f28a53e84c22ba4596f0a78

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 63ff4be6ad0c77fe78c852be2ddd4dbf816258f31bb04512acc48f4f46f4f677
MD5 be516f21c727ce0eda889c1a600fe39c
BLAKE2b-256 d236af41d7367f60dc2f517298c9b09a1a3bd1725f10317f9bc7bccef09ae432

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9e86e31d9d4a41f97d368e8c798ebdfadf39274fba051e04f5e0f90bad3378d4
MD5 c494145f8f7a3bb6a6caf2f058fe37d6
BLAKE2b-256 3aacddb422f2bc9fa84eb5f1187638804f6e50bcbd4f4cf258c48931bd1af365

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 efc0e650730e46510e3b9782da520fad876035df0e3c0e4fa5ef9b9178a3a77f
MD5 8f26242ee3e60ca625f71fe2e50b32fc
BLAKE2b-256 9bdec70e3924c4ffb060d040b29fdc289815ad481d931237c03c5ca1e0588c40

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d413fabe74f13deae51897f93924fa68cb787d5213b975ace922f67a5e5233c5
MD5 e7ba7adb731369406f0324fc32c58406
BLAKE2b-256 b8cbcb37351241c79e3d0b6242acad5d7a65e042cd1ab91be2a3625841adddf9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2e06ba802851a7767d78d326a06db6f9f21ab04b5bac38e727b0dffa72c7a72d
MD5 75fc22c65832a07b1043f103bb73683f
BLAKE2b-256 7108586b0deb79c1c651be5b35fb87cca25406cbd892327d9583ecee1508007f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 023adcf4c08cc0f0999ee0eb6b90aa5242afca3d0ef30de635ce379a7056c313
MD5 f7e7a6e064586943fa9bbfdc67a2738d
BLAKE2b-256 f9b693775784b2dfd6133ad9de9f89f480b6a2ce6c22af53158a76a111d0af0e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c39076000befcba0a3d4902a265c0a7db2781a2ac4a1ffaca5a640ca5ff8c741
MD5 8bb1424ab79cd0a5d30eeebaa6175f48
BLAKE2b-256 1ff5fb7b1930becc2965f6840c6c1fdf0eddde27a74c3ef329e74dca91d8493e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 760101fe94c9bcf66c2a6b801a7aa0cd6cbd176a2b35e99327a8a4c1359f030f
MD5 367d4a702658ca65dea9db24fefb9d8b
BLAKE2b-256 bffdb45b8b202ed2266e8a456fe0cc2c3ab2afc07c796705bfce6273afd848cb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4bb18b3665af3c8fa71241ccad5a577912af96b6df466fb3a040bbf2d3b97bd3
MD5 7247613d211e9fc3daab93feea357e92
BLAKE2b-256 0aa9a2b03c80752ad0d7b8f5ccee031dd1ee14e9ac8a1f16345f303e4d1bf426

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3e5e117eed37ddcce9d91bee2bc391ebe54b55a71a74442a36ae6d78456f50c9
MD5 0903e3156510c007cc11bd8fb1c088f4
BLAKE2b-256 370bdab7f9dafc8d7746d0d4d2043a4e6847e7aa7cccf80cb3d6e44a9c39dd78

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 cd7e186ec5a7c0a3a0197f3a8eaa80bdc132ac8008a3338e181c05d2b4b15cb6
MD5 615257e57c9ff6b945e6a9d4f350014a
BLAKE2b-256 450611d1b346bdf4447c31d69d5c6bf61d653649b4400753c900fd2815ba2dd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp310-cp310-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.1.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6b2762fbccad8766af4d676b7714b00051cb124a81b973599e603ecfbea722ed
MD5 27a522be14b8b2bc4fbb717070c8806f
BLAKE2b-256 c15b284487675bf9e7be211817275e47d2a22abed660afbf3a3b4026aff3b271

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4224e8119d912c58409cc77e4154c4cf213ffcab1046c31a20eafbffff4f40b8
MD5 1b9e8ba9ee33473b832551cecd08904f
BLAKE2b-256 197d2f89080d1212416560a820120c86211bbfd01608d9ebd9bdf4757422aeb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d2cadcd05f3762d63591418dd7597f53a9132f92b95ace70823cec0c79a8273d
MD5 cfed8416ed0b928fd1702048f5d44f9f
BLAKE2b-256 d299efcb778fc4ec69f72b12009d28a138d0d886e465b5582cd56661ccfdbc61

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c72f5e7cfbb52e97a285b43e57f415cd071a37e08c9f7d94a206080ebbded520
MD5 8dad89d382139da7f14d5d0515efa78d
BLAKE2b-256 6120e436b6f9f50a149fc25f7baaad703fa8c6074590feb79956ab636997048a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 622ec8e341009cea727712a1228a0e64e630d0c9db700996d1f4e336213480a5
MD5 18d27db2989a8ed41bb60dce3d6a9606
BLAKE2b-256 f45b27367f35e97407bdacb466eef75d0f10a5d134dd0a121ad553f7eb23e7f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bec780de2a77a2cc1f5ba976c96d652dfeab3157c0b9f1ca03a462bcc62c7d86
MD5 287867c5eac6f42438bd333b634dedf3
BLAKE2b-256 36265ca0f95cb07ab2ee0f0ca9022f3dd1ed352efeb4e90aaeedbcd9756d50ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.1.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f4bb3e19cb51e709e67272bf7c1640189fc03fd23138a5bd929cb52b6b112fcd
MD5 e444dd8153ad4e38e0a159fa12ca2622
BLAKE2b-256 50dc313768fbf5e326ac912502571b62bf50e4062308e081f98d9631c866ca28

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.1.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 94a772f740afa9b1a07cdb04703047e71ea15ceba446bee3d06ef9031cf59f1a
MD5 65b1d1e406ca31a4779353dfb95bfb80
BLAKE2b-256 4cfd0c7cca9f4ace0bbef5c84bed1730c40d1ea7cfe783cc3a47861afc6aeac7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.1.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 98189d05887c7d054f9c6b248cd70dd3d15633c4d5733b2a6d2055b26a935ad2
MD5 6bf8ad65d6d5989c0b5feae05d7055f5
BLAKE2b-256 ea9dbca8999954d57aac46c2200da1295e17876949bab524c1b6ecf8eda48a68

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fadd48c7cc6dd93e09ab805e3f22a8fe375338f7262a859018bceb9ab83a40fe
MD5 f02e6c7b814c730a7a980071f9daa240
BLAKE2b-256 8f558fdd87dae8da54d40869fbec82bdc258b6e5868a1a19c9272e47ffa7d8e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.1.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7aaeb92d7ee73b4a5bd0c7656c04f28401ba9e47de47b923de1eda4c61b0be0e
MD5 10980523d75c05811a516d883db0735b
BLAKE2b-256 452d2e8d2211c92429416b9ff056c163f2a6ca90ba20913c250190ac87e668be

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 baaf2988302217e1260ed52cd37ee3ddf35b2a3713d01e231e06bd8715437ad9
MD5 5c3b179f3418f46fe53d3e3c0a0c5e4e
BLAKE2b-256 ca67d132afc7a1a745a600245d10e0307dfdb0ca37fa38c49465e0677cdc6384

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 73b370188cdc49a9e8aec7ccf9ce2582807926b07bae5f239837d339bd8415f9
MD5 cabc110bf7311d73c6095f25de4a21b1
BLAKE2b-256 ee14f1587d361668a9f5d1b2980e81e77e57b09326bd4c4917a9302d3ddfd4f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp39-cp39-win_arm64.whl.

File metadata

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

File hashes

Hashes for xxtea-5.1.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 06ed58258ecb7f447273e759b6419ca1505865294b4be76cd9f9510cedd06821
MD5 569281943af2df5b0cfb5b80f6b91149
BLAKE2b-256 1659dc86a1338268892a38e2fbb39e271ee50ff5b5106b022801906f2dd524a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp39-cp39-win_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for xxtea-5.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8f1c919ff40e6c96feb2ebce996fe0f0f121e98ed63b28b8c97a460be0be7b1b
MD5 d0126c264e2619ccdd1a67aeca5ad5b1
BLAKE2b-256 70de3720c543ecdac49af5c1bce23e9ed6e9ef5d9443265b3ae26dc413fda452

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp39-cp39-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for xxtea-5.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4cd34bebaaa13bff29765919e88657bf409142947fc364e5a33cfd1ae220ac8b
MD5 85375437bd48cd5ce9472be6c4f755a4
BLAKE2b-256 e8fac2f7fa11df0b7600fbb91eb830c7d3b69d9b33f5963ac060265015883044

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp39-cp39-win32.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

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

File hashes

Hashes for xxtea-5.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6667294f781e68dd81c6f54d343f909374d6bc0266512cbe8701acf77027c3d
MD5 6e1f8e86d0d51c658c0c54cd5790efc5
BLAKE2b-256 1a3d67ffaafda4fdf1839b29cd3d68291133ebef5177c6e5aa38e94698eb4b88

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

  • Download URL: xxtea-5.1.0-cp39-cp39-musllinux_1_2_s390x.whl
  • Upload date:
  • Size: 51.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.12

File hashes

Hashes for xxtea-5.1.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 31f07314404d1eb7740a6c79e14317ddb003cd4f13492eccc0d9022338accec7
MD5 45ba556d71b799edce5b1ecf8fdf7c6f
BLAKE2b-256 8680a7e1f2b193f22e066f3ed48bb0b8d580a5fea2e55a1d20e55b3f6634d370

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp39-cp39-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.0-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ad76e881baaffee84c0552fc6f580790e161a1846aa2e373a80804891ba02e03
MD5 825f858dc6b50306bef1dec4ce3ff51b
BLAKE2b-256 1d59e90d43e4d39d1b27a49660e6495748932a354669e6e758b2685dadd6a748

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp39-cp39-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.1.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 de104a3af3237cc71120514a2c0cf806198a7e1f0c9ff189cf388eb04947d785
MD5 fad037383c07bd473274f9ba43b4fb9f
BLAKE2b-256 dfee308af79b4944527015cea4fbe65f834982a4dd97c35c23453ecabee9d3d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

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

File hashes

Hashes for xxtea-5.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3686494e1a22d2eaf70064ae181b47856d95b9d309d8cb5655f27e2ac3e5b605
MD5 753b1c8eee10934fd9248f608af18c06
BLAKE2b-256 3eae02e2b93b24c6339c7d087ffd78e60b7f629f684e36f22d23e0a1f63826e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

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

File hashes

Hashes for xxtea-5.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 39974a78be322701a176aa3c370e2300ec84b73aa28591843cb32b6d8adc7b27
MD5 8484060d05825883688a4ad6068fa566
BLAKE2b-256 a8309dfdf34e533466efe7a3d5f082cf491011639a8f8d02fd56ce9120e20c17

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2469350d497262230f54fbd87f6a800a4c9929e9b1513d62282e2052b6ba3012
MD5 221a8ce33b332cc8d87021c43008a657
BLAKE2b-256 08f883aecdcd1c2e8554dc46f10a38808cb119fcc3a7299c9f699316980cde68

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 9f5f01d373fa03542ea2f008d15205466d6cfd9ed0db588d2cab52df7b8da9d2
MD5 8c4834ee94c9ca058d96555b9c5a4965
BLAKE2b-256 3bd10f324beb54c22c5f330589efc3f4d8b52cf4cc4835efe0a5009cdaf3e6dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ec254a30d864844639a77c4d5bd656e43eb7a174b343fd2a805f78182f8f28c8
MD5 4b41735646b5e15dbe0182c26690b388
BLAKE2b-256 562191139429bc634d7b663e6c0f2493e32bbc28b1a20b3a0b725444d64ffad5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.1.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 775ee7d3291dae5fd2e746fa04fed60e8e9169d5b10c86a3cbbab3721b440b8e
MD5 4d1bc4b368a439598e48077734dbdcb6
BLAKE2b-256 ccd9d7935b7983de4a15da8c7c45075f4d76889941b19816bc9d8f082d55d422

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.1.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d2592c21544ec3ad127722535ed68ec43c1f67f394d5db897e09bf40125387d6
MD5 c79953fe4cc876526bb70f731caddae3
BLAKE2b-256 ac7ebc6cb30375dc4ed389a12ae2a7271d536bfc23454049d557177db81c2903

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.1.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d674948dde39cd5c52413653a654f9bad38334bd71bbe36fd911105b11be5204
MD5 d2543e05afde6a33ef285a420fb09813
BLAKE2b-256 d9b8a431c9c30daa41a8629850b40d5a10052ae3f150a0729e3cbe2753b759d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0c95541e854c95b69d24867ac61ccc13ae0857499e60d1c9c2172397f555e15b
MD5 a1d9a8524e4b1b12b51cc2c4cb99b549
BLAKE2b-256 4c18a337c904b13af5af1133da3b7497309f04f0aafc610d88e3658249711176

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.1.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 19aab303d10704e46ed02f87aa3286cb2297d08f96f3d4171184feeef8948063
MD5 5a0d95b1740fc64bff64ad499113ca2f
BLAKE2b-256 f306697e7f712cf8e118f262036834ea756e8c42cd555984cbddf3c3a232b32e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for xxtea-5.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e333a5c7f87c0a7b6c74c58659582f9832da29436452b87e3c88a055a6607cf3
MD5 d020911ed18525f67ba86a58d2264224
BLAKE2b-256 1e1b2f07a218c347239e2f5a0b512047d510f8b52fd0845bdb4cb14b619a3c88

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 457d6ea53b44e28664dc895b2b12c5b5a2964c4d18c42edcaf7e82e51519cfdf
MD5 95cdd790dacd9eb119e0568c09be5242
BLAKE2b-256 5febf885f44bbb6cfe8e79d89a62d236ee10fd49b0671ec39c5f46ad006ca0e4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

Supported by

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