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.1.tar.gz (20.5 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.1-pp311-pypy311_pp73-win_amd64.whl (15.2 kB view details)

Uploaded PyPyWindows x86-64

xxtea-5.1.1-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.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.3 kB view details)

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

xxtea-5.1.1-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.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (11.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

xxtea-5.1.1-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.1-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.1-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (14.7 kB view details)

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

xxtea-5.1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (12.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.1.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (11.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

xxtea-5.1.1-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.1-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.1-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (14.7 kB view details)

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

xxtea-5.1.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (12.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.1.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (11.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded Windows x86-64graalpy312

xxtea-5.1.1-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.1-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.1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (13.1 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

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

Uploaded graalpy312macOS 10.13+ x86-64

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

xxtea-5.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl (46.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxtea-5.1.1-cp314-cp314t-musllinux_1_2_s390x.whl (60.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxtea-5.1.1-cp314-cp314t-musllinux_1_2_riscv64.whl (44.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxtea-5.1.1-cp314-cp314t-musllinux_1_2_ppc64le.whl (49.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxtea-5.1.1-cp314-cp314t-musllinux_1_2_i686.whl (49.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxtea-5.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl (51.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxtea-5.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl (46.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxtea-5.1.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (44.5 kB view details)

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

xxtea-5.1.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (47.7 kB view details)

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

xxtea-5.1.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (65.4 kB view details)

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

xxtea-5.1.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (51.3 kB view details)

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

xxtea-5.1.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (49.8 kB view details)

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

xxtea-5.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (48.3 kB view details)

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

xxtea-5.1.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (49.0 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

xxtea-5.1.1-cp314-cp314-win32.whl (14.3 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

xxtea-5.1.1-cp314-cp314-musllinux_1_2_x86_64.whl (43.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxtea-5.1.1-cp314-cp314-musllinux_1_2_s390x.whl (56.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxtea-5.1.1-cp314-cp314-musllinux_1_2_riscv64.whl (40.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxtea-5.1.1-cp314-cp314-musllinux_1_2_ppc64le.whl (45.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxtea-5.1.1-cp314-cp314-musllinux_1_2_i686.whl (40.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxtea-5.1.1-cp314-cp314-musllinux_1_2_aarch64.whl (42.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxtea-5.1.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (41.1 kB view details)

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

xxtea-5.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (44.0 kB view details)

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

xxtea-5.1.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (60.3 kB view details)

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

xxtea-5.1.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (47.5 kB view details)

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

xxtea-5.1.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (45.9 kB view details)

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

xxtea-5.1.1-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.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (40.2 kB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

xxtea-5.1.1-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.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (12.4 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxtea-5.1.1-cp314-cp314-android_24_x86_64.whl (13.8 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

xxtea-5.1.1-cp314-cp314-android_24_arm64_v8a.whl (13.5 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

xxtea-5.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (43.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxtea-5.1.1-cp313-cp313-musllinux_1_2_s390x.whl (56.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxtea-5.1.1-cp313-cp313-musllinux_1_2_riscv64.whl (40.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxtea-5.1.1-cp313-cp313-musllinux_1_2_ppc64le.whl (45.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxtea-5.1.1-cp313-cp313-musllinux_1_2_i686.whl (40.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxtea-5.1.1-cp313-cp313-musllinux_1_2_armv7l.whl (43.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxtea-5.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (42.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxtea-5.1.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (41.0 kB view details)

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

xxtea-5.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (43.8 kB view details)

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

xxtea-5.1.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (60.4 kB view details)

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

xxtea-5.1.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (47.4 kB view details)

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

xxtea-5.1.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (45.8 kB view details)

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

xxtea-5.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (44.2 kB view details)

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

xxtea-5.1.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (40.0 kB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

xxtea-5.1.1-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.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (12.4 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxtea-5.1.1-cp313-cp313-android_24_x86_64.whl (13.8 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.13

xxtea-5.1.1-cp313-cp313-android_24_arm64_v8a.whl (13.5 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12PyEmscripten 2024.0 wasm32

xxtea-5.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (42.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xxtea-5.1.1-cp312-cp312-musllinux_1_2_s390x.whl (56.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxtea-5.1.1-cp312-cp312-musllinux_1_2_riscv64.whl (40.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxtea-5.1.1-cp312-cp312-musllinux_1_2_ppc64le.whl (45.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxtea-5.1.1-cp312-cp312-musllinux_1_2_i686.whl (40.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxtea-5.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (43.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxtea-5.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (42.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxtea-5.1.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (40.9 kB view details)

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

xxtea-5.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (43.7 kB view details)

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

xxtea-5.1.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (60.3 kB view details)

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

xxtea-5.1.1-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.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (46.0 kB view details)

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

xxtea-5.1.1-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.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (39.9 kB view details)

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

xxtea-5.1.1-cp312-cp312-macosx_11_0_arm64.whl (12.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

xxtea-5.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (42.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxtea-5.1.1-cp311-cp311-musllinux_1_2_s390x.whl (55.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxtea-5.1.1-cp311-cp311-musllinux_1_2_riscv64.whl (40.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxtea-5.1.1-cp311-cp311-musllinux_1_2_i686.whl (40.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxtea-5.1.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (40.6 kB view details)

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

xxtea-5.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (43.2 kB view details)

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

xxtea-5.1.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (59.6 kB view details)

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

xxtea-5.1.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (46.9 kB view details)

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

xxtea-5.1.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (45.4 kB view details)

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

xxtea-5.1.1-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.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (39.8 kB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

xxtea-5.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (43.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxtea-5.1.1-cp310-cp310-musllinux_1_2_s390x.whl (57.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxtea-5.1.1-cp310-cp310-musllinux_1_2_riscv64.whl (41.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxtea-5.1.1-cp310-cp310-musllinux_1_2_ppc64le.whl (46.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxtea-5.1.1-cp310-cp310-musllinux_1_2_i686.whl (41.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxtea-5.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (43.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxtea-5.1.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (41.8 kB view details)

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

xxtea-5.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (44.7 kB view details)

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

xxtea-5.1.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (61.9 kB view details)

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

xxtea-5.1.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (48.4 kB view details)

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

xxtea-5.1.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (47.4 kB view details)

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

xxtea-5.1.1-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.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (41.0 kB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

xxtea-5.1.1-cp39-cp39-win32.whl (14.0 kB view details)

Uploaded CPython 3.9Windows x86

xxtea-5.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (43.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxtea-5.1.1-cp39-cp39-musllinux_1_2_s390x.whl (57.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxtea-5.1.1-cp39-cp39-musllinux_1_2_riscv64.whl (41.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxtea-5.1.1-cp39-cp39-musllinux_1_2_ppc64le.whl (46.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxtea-5.1.1-cp39-cp39-musllinux_1_2_i686.whl (41.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxtea-5.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (42.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxtea-5.1.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (41.6 kB view details)

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

xxtea-5.1.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (44.5 kB view details)

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

xxtea-5.1.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (61.7 kB view details)

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

xxtea-5.1.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (48.1 kB view details)

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

xxtea-5.1.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (47.1 kB view details)

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

xxtea-5.1.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (44.9 kB view details)

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

xxtea-5.1.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (40.8 kB view details)

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

xxtea-5.1.1-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.1.tar.gz.

File metadata

  • Download URL: xxtea-5.1.1.tar.gz
  • Upload date:
  • Size: 20.5 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.1.tar.gz
Algorithm Hash digest
SHA256 fd08fb7999a8a9a0cc6740636090dd55b7fad3bfdf9c594b0ae9fdb7f1765899
MD5 fed9bbee7a05314d5d2e3ff32a5837b5
BLAKE2b-256 c92173304a15e41dc04f3c76e89950df5bd988479cfd37db3f5f5b60b23a0a4b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 07a1ce34862159bd902c1d5d21bb9eb67cbb03076fec45b44355bb66aef81f39
MD5 67b761ab2ffc7df7a69c7ad18b07bd45
BLAKE2b-256 c4ea41d6b99fe86555f8477b96021cb5c8c16e19ac61c1a96b7f5c33ee131fc0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ee3b9f5cdb549cc27e5fec2a1f5172b37df87a8cc3ce06d2fc2f32816fcf0591
MD5 a3b53f3a04ae9be7b58afd7f68b099b6
BLAKE2b-256 8d18b33abb6e5ee37cd9bd3a5d5159a3147de533dfd3b8683b3f24e24cfd251d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3cd1ef8765c1c517bc2b702351e7f1bb5b570fb32098472274a46e5258a404df
MD5 793cb0b776a7ab3079a29437ef1724cd
BLAKE2b-256 6bdf8b0e8f935383c12284c8cc718a368d625e7e04968b2498df1336e376da24

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6718d2c882ccf50155dec40c626009e2d438607fc4873e99ea622418c64593ce
MD5 ef7b043f669fb03af93ca07557f3340f
BLAKE2b-256 f025c3ec4a01ed97a88883e5696cf4bfc2548863aa6063733de708eea85fa7ba

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70259cd4754b2a1743ae610ae60aa057424232c76ac95cc276d470faa7c2a3da
MD5 254537efbd1fd6bc0fdd36d0f3570e67
BLAKE2b-256 e30ecc6f2d2dbd88a753ebd3e80ecd758d4615ee712f4d741ba965bd36282551

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4e60df0d0355a1e2449024de95f7274ef9154289d925293336e5111c7176800a
MD5 5169a29ae944b3812c43a502519734ff
BLAKE2b-256 b4b21a44222ea9115f0298ef3e927e86b52887e4e02683592ef0e9ce33d1fa07

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e936e106bfbead27af42420db4c73151c9a7769b3d2186da70f5193d08eda27b
MD5 9c86f08d574b29fc223112cce7452a3d
BLAKE2b-256 9b8d9e9e3d88a79a27f97ac224e58bee8132218099f47b583d3a9b3f740991bf

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f2d810bbce7d0bfaa31c30b22b616312bec221a4a50c8223dab5a3a8d37ba910
MD5 0d6c910e4bfb16ed20cf6c2ca9b4c9dc
BLAKE2b-256 3c449ccb5cbde0f33c1e62d0788167a6d6978ec419e28cb5d351bf4c6e8e95ce

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-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.1-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 9efd7ae241e9589f1174be6f7e9662e81640b726920bc886a7c2c1dfa19a3910
MD5 3175164f53bd418ed87db3713336e0d5
BLAKE2b-256 30a6a1cd0485669595514ed89a2e3efc629171b67d5d3fb601dd9035c788121e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.1-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f71efacece1434d99c923869d5a84c265b346574850fcf68ec06a5e419e1e443
MD5 44ae16ad5a762897b7923ae8ec63a97e
BLAKE2b-256 b7436bd4d66d665faf180a05e1005a9fdd74c99c5b49feeda98e67aef3f7a2c7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72605cb91bc0968446d10d117816a8667928a6c99368039da1d75384671418e6
MD5 dba98311f9adf20bfb41c2a7fac93433
BLAKE2b-256 2c9f2932d52475de691b01ff0c0a7c870f5fef864df8c2ee8caba40c6b429e5c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b77c344548ece1f96f6fe87158b81e613a160c54b8d5ba8ae1ea8f90f8ef669f
MD5 dee258160ef065757afcddf7d669eb34
BLAKE2b-256 bb5f319e2d562c441ec80c398f83748c587b17e4eb5c16510be3eb7bebe6f6bd

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 09f38ecd7499fb951d98c9ead41f0a33ad581d602f86faa9dbd0d8647c970c24
MD5 90b94c249a5ed71a362bb112902f3b6c
BLAKE2b-256 6f9cab6aa347f3551f78033c75e1c30f6e623109a8530459b5cf0613b370d311

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 46c3243a913f5eba941d2fd29ac1b98cd585686825e32e4ef95a2b691b284845
MD5 58cabe9a5c93410dd18922ad744de6db
BLAKE2b-256 822a3b7d73601a7dedce07a02cbaaa257018ac0bda47055df2765c124c126caf

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-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.1-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f666fede6a3d7b27eb978fef905a8805d8f76464ccff226e40694f8f841d6094
MD5 db60bf14617588cc5d7a50e447cb28e8
BLAKE2b-256 3e4e55b73c401bcbf68a50ffc8129fe332999a358676a797468683fff1ac126b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.1-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 3ab901aa23b02fe21547932fec1a19d35913df0858d719ec4b364c8e70d03e14
MD5 a14a0212abee8efa90720d133b199a8d
BLAKE2b-256 617eec5a3b0df974e4efe2940fadff308cdcfb95c7d88f31c79404a2d1c5974f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 170093caeaa84d6b57b8ff953ab2441567dd9dad7633f69c5471f582aae76aa1
MD5 e528ed506d751ac9ad62c093648b048d
BLAKE2b-256 2586d7305522ffb907806a549853435c1cba504a895a26f973ee29f132ec05c5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2f9fd726a3bdc9be5d1be11f4934a15f69b24266ffb26031029078dc2d118475
MD5 9d9ae5add2e67e396e1a3e155e33b6fc
BLAKE2b-256 6c64b9c9e968f4e35d208b7d1c4679608042399c255ff538fbe424adb977ef1f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 d71f010cefc53bbbd298fbe7f2754e8053123c4d86c5439e478bf42ac33cf47c
MD5 5462ead8b7af61245058c968ba4deb63
BLAKE2b-256 9dbd564b9b61b30aa9a94f63f4adf3cb7136015694e126d2abaeeae5ae8f0f48

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ef593d7dcca21e2ac17a5345b46de09f561e73767e7c46e73cdf6f903a79798b
MD5 f7011ff5f9860434931d8e0b334554c3
BLAKE2b-256 2f35485c22f4a05583150fb4c5237a63ed961408f5ec8e98c06384fd261db331

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 47fed5817437fcda7ab0365bba7d19d07bc0c64c1714b3aa02a0c9bf689dde9c
MD5 918397faef262e4f8dc81538ab4f9c44
BLAKE2b-256 6635e2e4841d648fa8c2839e33689bf886430382a936abbd86f9eb83ea86ad92

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24c5d434ebc6a950a50cf612c88b921a051adc1b0a25a481b5c46c75e38f0f6f
MD5 69e5062a4816c4aba5d9bcadc0559e7d
BLAKE2b-256 2c3aa3076e1c41d5059040ea5c2787b10542cc74b788c9c054006b568d9e28ab

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 faa6de7559355c5e6f8cd0911c87470b908ea81a8035c741921f3e2bd7e72197
MD5 bad0383bfa633067c2a2e82d509eecb1
BLAKE2b-256 c4c605eeb9b8eaf67f9eeb07d1445e20a16e4c2e5b83754af78d13952186c2dd

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.1.1-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.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 ec74ee88bde235d52c8965970fe83dc4a1a298097fa31397be2fc5f1666fdfa6
MD5 8b544c1c96e17c3a6452a707e7713699
BLAKE2b-256 a85d57b4218d2ef9501cd12ec1ba0648834beecc3eb79ba35dbf4759f509fbb3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.1.1-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.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2ac67e597efe1a895feb14c12c3648c7e0aa1f703b41e02b03f81c96bed951eb
MD5 75f5fc0fe3a70f0fee5cc5941ca026b8
BLAKE2b-256 396728d9a7aeef3ae63f5564695bf6a9a2abec4a9f6acfa7a9fb41c97cbe1fcc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.1.1-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.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 1d8b843f93e6be0b55da533eaa6826a187a7238b372cf5c720b1b8c573d6b6ec
MD5 973a41e1099b6ffaf36d52abb9c39109
BLAKE2b-256 44f3ae0d7da983a9adb57fc498f7a70b0a4184051643baec8a6ba95fb64de742

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e558559b5417f01277f9978cf4285df934e6a570d922dde647243bd2f903d231
MD5 ecfe7466933a9af922fe0cfa5b31b256
BLAKE2b-256 43e423b4b538a861a50d98b0da6dc5736945b0b52828220f59ed99ad8f590bf9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7f93699443c7dcb3b61fefad92b56477eb7eb505ea3e69584ba9dae86c4b3322
MD5 70d26dcb377a871061f5716bad0b919e
BLAKE2b-256 0e9805f1d47e8a65c8b81742ee21ef92c9052922bfd1571f88d6dd73557bbd9f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b76df245e61d3ede4260f491b3b7bd019fced17506c0c61dc5e972e9a1ce01e7
MD5 e1ef7815c2f51b1d8dc13cacddea14af
BLAKE2b-256 1c20b919fc44eaf69f090e4574fefd88cc4c2156dc24c5676bada7d6bb9cfdd7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7b4ec7a3eeb93cee6c48a7ffc239072f40bb33b8c4254141c75fd2983e9c7b6a
MD5 fae007c60c0da203e85f830aa451cb5c
BLAKE2b-256 80d79ec2e7d03324a84ec141a809c5184d6dcad4ba3c45e15d78da14af5331fc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 57cd4483eea897a44bc4cbbea16097c3d585182ae3635197019c04e5a7e79ef9
MD5 8dcf9e98d91ffff0b3909a4734776f6a
BLAKE2b-256 d8c282b8a40cc8ea04420ffdb2730f6d5cfd7af014f386a4a103969b262b2dbc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3a3adc40f222970a7c4b4afa4b9abb7f5273241986dffda981f0800bbd89e527
MD5 4eb9a59b95b3cbc51037a249b21b7094
BLAKE2b-256 e62604c5e23de36aed47fb77d3c5be66c65ca92bdb7ad93c540b251e58a96a79

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9824aa6d0e7130d0e4f7fb4c106b434ee9196faa96e63b310dc60d47a13d075c
MD5 e17d5f88a4a95c58b192224d238d00bb
BLAKE2b-256 9f406ac3661f7c546be39344fa754621e4ba883ab566bb963eaaf4583eb0f4a5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d7b51f6d6e9c5838491a7d9a0137829d5a16ee73c90fc4061f6492fdc16c339d
MD5 5ac7cf20e9a171cec04c55952aa605be
BLAKE2b-256 a94f9133d572e354ed4d267ee1976c35fe0b38ae2f42cc6feca3bd06556cc6e5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aa8693302b4c7f5a9faded293f3d21bf7565d59e8f5365f72dd9f8fbe0949648
MD5 5093a829aec5c7f1abc5e60dd24efdfa
BLAKE2b-256 297c9a844d31126a13fe3ca58574a3188ed97975ddb4b365c11af387b8fe1a3f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 03333936c8e67fd45b19f5c3100f4de92bcf31cd713208ea69de45058a89011f
MD5 3db74d50ad85fd518c90ac329e0f186e
BLAKE2b-256 1531a621af036f480ba3225c3a21e8a8e77c7dd562ea8044d6c0c77a2b37a616

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f021e17e34546b6a06b8846ac881a8aa736228dbe4d309b08fb35c01b4100c32
MD5 4c80abe08d41c35c304098741b8c4c8e
BLAKE2b-256 b4ac28542a17fee7c326b56db63b76cce0c96791e2efd2980d75a7ad1baa413d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c3cc68cdde50f094b9bd9a82c9492d24e93154df1e45adfb96f803f6598ce564
MD5 1eb8fd80b85a52d03dd39ee446b569c4
BLAKE2b-256 ffbf82af26657c431bc3addedcdf880a7e45ba5ba9aa52e224c3686f84254450

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 94657ba88180ce2fa01fa0d24783e9853205003bfef6b4f722992b79b5830d3b
MD5 78b2aa7fa4ad14b403571a7456327de4
BLAKE2b-256 26c36906870beab0f0977925966010a9379840ebbea965160bd9b334cc9e81bf

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9d86161f01f63abd629f005ca5e8bf7a8a1b9aa64a47f55c9d6646f950556f31
MD5 7e96ac69795934e71e41e824503c044b
BLAKE2b-256 4dd110477cf5662bec7b0027939328a6c0628753de380c00b3e87312a5235189

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e117e0f8f03a2ec5c8e900ca9f4d2ab78fdbf5bcc0349f3569853fd05557ccc
MD5 630bc95be010f403c07a65fff6ca517b
BLAKE2b-256 1b2037677b7541a474891e4a484295cab02d62953250d11eb56b0d452e3a5872

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1e43f38f327795e1ec624c811b3027f7cfd58518a908992809c465c4a1f01ee6
MD5 4b58af78c1678921bba01ec2fd15b1c6
BLAKE2b-256 d0d5d0e06b21f475e4831c2fc1d136d5a36422d566dc8a917f1ba884ab5a9611

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.1.1-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.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 5cd530f6c878820b2295cccf55897eca8c99801fbae52d118c733c303ddbc1e7
MD5 66ade0e462477fdea2bf24fd6ef41d40
BLAKE2b-256 eb7e6bbd4cefd6a491aae9aae5d93c61015c5483c045a69e383b544e9b2e1701

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.1.1-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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dc86bf1bea4e906ba9355ef534014e476593b196bc72a3b82ca52a8918ecc98e
MD5 3b66fb6f5399676f3821f387b01f032d
BLAKE2b-256 235e73da5c36ef251cd1c0be6dbd4517b0047ce1758e355b71d2316d6c28aea8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.1.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 14.3 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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 1669cebad75c27dddb7e06e8a141fd98a38606c9e926830f1dad80994e7c2d04
MD5 d2ff0a5445357b6cc2e7109699b9664c
BLAKE2b-256 f433d849f03339c13bbed6898d196eb5ff37c3aeabb0e0fa23345e511ea32195

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 c6f4e125d3b11c885361805eb00c19fc9cae61cbb0b89948e8074edd4e9a831b
MD5 65d34330be587a25a6870e671714bc40
BLAKE2b-256 9b42b42f7c2118f524119421153d0f57afce67dac557196487b5453d3a5aedc1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d78db4e39a9c67543a2467a1cb228255568b490c691a905009f693aab45c7195
MD5 6b04e2da267e85718d20c191ecf51592
BLAKE2b-256 d7d8e43d067d7deba1d426091dd835c2300a9dc2673a128a7d485dbbe3f297e7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b035f9cddb9fa1884530ff993954fff1b1d122384b25ff0e3adc4969e0b8ce3f
MD5 067a4196df5eef29e3bc538a2d0044e4
BLAKE2b-256 63232bd3248c239149eaa1ab34a6d5b2d7911e336889cc703c9e65d93a394636

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ea08a7e3a18c6f183505b5aec3a0f43dbf0519a7f6626e0c54e91c7948e6a88c
MD5 fd6b15ced76fb996c9f5eadfde006137
BLAKE2b-256 5e83c9c5da0aeed34e37d496358c0387ceb04e2fa579e9936f83081e8c1d1596

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4ed9d5eb9c2a9d0a78ecf8726a6e0c39e319162f59e9b55b90bcdc636f99c8df
MD5 471bc08e0db3294d29c97be69372c585
BLAKE2b-256 d5a40f708db28b3b2e7b9bf6de6a8638f013694ced087550289d47a0072f076c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f434f1979df614d44e3969941c01ed704c7a97e3bc2638eccc733e41d97aabf7
MD5 bdc46baaa0d5228a9cae0b6765d05e0f
BLAKE2b-256 d89a6c2c144fa058a16e97552150184fd5ede0c6ba57b3044883585eeead7f4e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e31191ba199757cae98b23ff288ecf8d3ad8b233bbed3771c7719732ce0cd625
MD5 3f6a45598488295265a60446c37c110b
BLAKE2b-256 df74a266b97d1177691033183f951c3b2343244c267b6457f199e2cd9312a4c9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f28f599f75dae1cba5cfa04b7d2cc64974d89a52f665f4e61631c5c259826f3a
MD5 a488f0e21e77313b19761d8f0635a6c1
BLAKE2b-256 2493c29eed45e2988a2cf39b9b8cda01bea79199a2d745a361a6665d217dfbbe

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 dbe7dd815e45e27335d61449276f9e14873066f51c8f7e5154193e84811771b0
MD5 0af503cf9532416b65497147ce3fb22c
BLAKE2b-256 d1fc5c6aead7bb3df84593ca2752d84a42b84a9fa464b36a11cb347835a63b72

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c619e23b370d9512beb43ad05e4f7b7b28a373da1ef79b9630db8b13cf006d04
MD5 70371b83d8bbfe39d797ca632fa643e6
BLAKE2b-256 0f1dcbaa0efd1f6112644269eaff34bd7a0b60cb66818b8af708e684d953e029

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b65c7ce751010a6cb3973b3bcaa6d9938e04f1ab9f5a6d86dc624da54e0f9db2
MD5 6a142d1d11313f392308304055cff33e
BLAKE2b-256 cda87bd5bfeaa6b66427df16e5b4ea029630f37deb6e19a04bea5eb1f2ac2b07

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a28893cf225229469c88f6b0dabc61f35fa0922c7331507d1bf2a07b5be5108a
MD5 875873f72c7f0e524a926f8f883b8eb6
BLAKE2b-256 88054a5b03891f83bf6333b2c69ffc69b1acc43bd638ac966ad25a3181145686

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 843ffb3967c535d48015debe0db1f6db53e18dcafe3dc85eeaa0b700df57d5ef
MD5 838c2357c2721f82bef320c319008cd8
BLAKE2b-256 0d330b1e341f60bcb3a8626cd97ccb1c2d4a6feec9ab107a25ef5dc13df0ee45

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cdf4e4137dd6a7da95b498df77c2f08f2149c65357ff9961d88c111b39d10f3d
MD5 493ba7b4a4b2c423cd014cf5610c0bab
BLAKE2b-256 63d699f58e7c51023db4cb4df42b84aebdbc646921bb411f7d6420f192c841ba

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 622533c18b183f652f7d83b00d9539386d33bd0673626cf8da531826b1180d85
MD5 79b99f38763126a1a0c4806a657a4910
BLAKE2b-256 66012d3afb5658f29e59cd17565b1b4e006f360f751b9dcc5ac5eada06540bca

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac6cd2ace6eabb8166cdcf384be6c255f5bdabb2f77b06b2f6cd810b93a5ae92
MD5 84e5feaa2a4137912ec1821e82512d53
BLAKE2b-256 03496f9af5cd8b5f2d80e55fd9049f6c577417cf4df6a82baa61df26995859a6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 17877fbaf95cd3078fda6ba406d052711cc22b3988d8eafc5f6b7a2fc40cc313
MD5 18b77d4c8d79c4337d76e644fad1c4d5
BLAKE2b-256 defd66f45c017eea968c236727221f37da3bf4e433baee174cef006e52d34326

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 efd8888fc94783d9953be510048fb53e045c03762bb953271d7dd642a4839812
MD5 829c45e1d23e51a12525cb2021aecea0
BLAKE2b-256 77672ba062679b2d904a93393268c89db78c0c6e4dfe686798233b923ed1d2e9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 b103ac8218944bc252e1417a9b88dce24b216416f62f7854631ef8ac89cbc35c
MD5 354f683ce1c7f54e90ceb1955914b008
BLAKE2b-256 cb3a14cf162e0720455c84d8aef61a2be13d348ca6f3d111dca5d6d65fa76bc4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 0401d851985e17438d253541905a0773dcac54fa6d532251ebbaf4910dc652a3
MD5 55960f0d55a73612d5ee3134c5e36e6c
BLAKE2b-256 9918cca7143ff1f4dd3fa90a30d80d85f3df1fc308e2b8113984131c68cce4a5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.1.1-cp314-cp314-android_24_x86_64.whl
  • Upload date:
  • Size: 13.8 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.1-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 1c3815389721e353e28b15f3d1b8e1bf7e3e3b06b6658234547741990604c30b
MD5 33e25bde3c99cfe7e9a0708aac1a55b0
BLAKE2b-256 b9d7e5f18b76db3d26baf000fe6bd48209e0ba13126423f19aa97484ac29a254

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 06bbd0bb352241a61d85e738e9d24b851a3ccd861cf486cce4b8343b262c5943
MD5 f0f2f21583def1dbc937d8a48028e6bd
BLAKE2b-256 adabe801fb5b3d4308f047e5c2147d1eccff2449e41684357bc0ac66855e4119

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.1.1-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.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 d88fa8b689baac1667f57e5f7498381cff080082c4709621e700a0f96906e730
MD5 935e467c1c12f5efa5707ba0cf9ce0ae
BLAKE2b-256 f9931ef1037b003d466cd2f23e73eeac8c26e2d3a4bae8b13726fc944a4df352

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.1.1-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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3a3c29dab8eff3886e4c511b4caf218af581ec1bea4ebe614e645a534e982868
MD5 0f17927713fdb02667f6ed07f51abafc
BLAKE2b-256 e2bb49031c72a8d7ad8b3b9c45907b4bbaf0b5928ed508a23986b32dd93b8e29

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.1.1-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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 935714c6bdc240930e47b4fd413833a7fa516244061aee7cb67067d4cc1fc7d4
MD5 5656270009acc03503b3134fe99425db
BLAKE2b-256 a1ae81b0554f788455c83c18e34f40284606c07d59567b812a1a98f0e9f18ccb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 518c8c771a16d3b7aee05195988cb7f3c9ef5baea93d13be09d479e08857ef40
MD5 613481b2216fa98519e864fd062618f8
BLAKE2b-256 2133ba85cd3517a4e76f85559d71c2dce4a125f168a42fe66e74edbed2700e88

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee7034c9d1476d193cb0ebf7ea2b31a07be5def807b76370c1259375d6f5a725
MD5 c0eb0b7e74997e721f9a3377b9b20ad5
BLAKE2b-256 503f7492370d0a2ce36e06581cef465c6583722f142cb7ec19d87ea09b1f8222

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fbfe0af3ff319b3a04fa9e7a6e25e4b8b3dd55ec31e2cc83c7ccedfe34b817b3
MD5 b08ea435e560ad0211ce1424ed43d4e6
BLAKE2b-256 846c938f14c425f0bcc45c1fd6031dce352a95e888f184abc4ae42b4bb6dbffc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3f053676afdb65686c38b20b8093a78268044c82e62a9dc5f659f3a36f20e423
MD5 edce0396570f0924c9b5e0503f096bb9
BLAKE2b-256 0beb393be0321418bebddb33319b76c845862e6c543f38a2771f1e3aefad7321

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d231a7d3ecd879b825bf49abf252346acfcfb747c4acbc0db68d1f562ef29139
MD5 5d99a3e4c62db6d91a61c9c1b8aa099b
BLAKE2b-256 b8daa75a51b02827d1d2655a18c160ed50310c834fc94f76d4bc4ce922165e4b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1e426db53c8f28f35895b8de0221e856610da609bf8ca81440fe2ce5367f725c
MD5 df0a52c1d9204eeaab3c651c89fcb300
BLAKE2b-256 0eb85430cec8a973c54f43c9be908dca0ec83546962de2723349f883f693e5a8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5e95f74cd7d385ab176b396043dd1f05648bb22bbc202326ebda4ebac8e2f4f7
MD5 41305552cd08d0847bcd221f537d9152
BLAKE2b-256 0c00b7532178c5001beb7e55db8a9338f9c73be32e7e18e7d9491a017de72f2e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 751333bdd18ac7a60f7a288191dd77f67a9a72717be7a28fc7c51c0e612f7ec9
MD5 94cdbf72e6de7df166a1a01f3ea40bff
BLAKE2b-256 06660360f12f2f7c62318c4c2a9a62815678a7aafbdaf22fe61922c09d57a2a4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 65f8df41691a5ea6002607906997f9d804b804569d7fb28d0e010ea43fd3f9ed
MD5 7743008a172b9064022855a23f98ee36
BLAKE2b-256 c6dc0975116d5a92a7bb9e53ab92ac304c37019c37d6fb95c11a3cb4ef266fab

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 64931aef1347ff86fc46b0791176f9eb1622484fa5eb4b8809c16d15fff12f8c
MD5 784c58ce2a69caa70530e07d2624bf94
BLAKE2b-256 118ad5f92de1a75856e987915fc9700de8fd0ecfaee9a6585d4cd5979ff26292

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 8a8ed82b3ca01df1b8ad6d657f1fd5dd328e0be51934efee56ed7a5d92dce8e5
MD5 ec025f5d271aa5261ace3436b32c6171
BLAKE2b-256 e38641b2bd43ffcde1045af5c8e9b8e007ff7598881a0e99a65e500fee71fa70

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6fc9d15b338436093499e035a9665ae949569d3a6fb782ba636a22936762788c
MD5 08fb8a357596ed76b009fccb7b1e7ff6
BLAKE2b-256 2bdcc2a6ce42b07dd231b46eb1764c4e49bea3a9c7e1c36433f4ae10db43f7e5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ab274a16a7ff5cd4406da528e3fe23cdbf44a94e04849142eb46eed59212e0c1
MD5 87c4321c015a9f4b5b96ab9766114b8a
BLAKE2b-256 1114f46cd3fcbd888c5c2d116b6bb99ff8e8d051b03d08cceddbdf5ae43a7173

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4c914ca698ad3f8c4b371619192b24f4e75bc5c43970e90296ab75f30e146143
MD5 b1f864e58cbed3caa7867f19f58590b2
BLAKE2b-256 89236933cf157a8901ec6f180de99a107f945c87afa146ecf320f11c1b1eefb9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4012f00e05cd3b39cfd939cd1744191fdaf819601be21e96576b52cb0664812e
MD5 c97a4d793ad34364ba4aa4161c144d6b
BLAKE2b-256 6a1f90609746bd00e1f9b8bf441a3a25edb1edb74edf006ef5c8573042546d41

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13b6cc9ad3203881326bf57e3285fc815c9c492fab46335bcb7bb395393fad86
MD5 2adb822680e095fdb3ddbcc0de01e859
BLAKE2b-256 fe7e2dba5f9ea9a39fc3ecbe29ce051dda6c71f8d1a95e95c76ae7331d891bb9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c2c7ee494f0b1836ef3da75962a99a313cb3670fa0e1f7f2c0d00a6342afde8a
MD5 76e5e622abe627a2250497259afa1e7d
BLAKE2b-256 03be1699893e1ba42ed67a4174f6f8f36531fe687dddfe0f322aa667b452d6ff

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 0694867e5cd8d51355449b0b96e97bc30554c8fc6e79c0c2109ae404a8a725bd
MD5 48f1de10998ebbb3c0b415c2548c867f
BLAKE2b-256 fe5dc868f483580e4b0154eb17dbf65e8a6e02d745ff4f9c4084f0b8b98271ef

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 ed81ee2294823db2e4ef9fc036361bbd72cb97494d662e13e06959bfe44eb9b5
MD5 de789e33fc588bde39a0a3d129d22bdf
BLAKE2b-256 d0e8bbe2273edc18091750dfdb02b72a210672a7e916028b47bb07754c95a29a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 3ca25ea30aca4b3547a3b46d4cdfcbde3e5b48b6b9cfdaeaab4e85ee369b824b
MD5 efdaee87d6a2fc40bc603872f4ae4222
BLAKE2b-256 a275992bcc9d6bce2d3701092df9fe3942d2661ca24e9b2e24221d248ce9fb1c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.1.1-cp313-cp313-android_24_x86_64.whl
  • Upload date:
  • Size: 13.8 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.1-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 3383f5dfb14b371dc9e4d9156de1947878c7deaa10543a22a9ba0a9894dcffbd
MD5 7e61775e99fa6e5823407d99bf7aeace
BLAKE2b-256 a2386223afa79f963dc65b9c2c48ed621e18df4be55560cd29bd288d23f93921

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 798fcb573d28798f189238d57ff9d1c517c085ed692e92ff1b0022857c887d90
MD5 a0d5bb329fc896d6a8bc16d5b80747e1
BLAKE2b-256 c6f470d8a7a8f860d46a45aa1924ead2cfaec8aa29659ad8e8c1d6fd87d1928e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.1.1-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.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 94d6d8456ed97e89d68720742de9da03094753c5d6ce1735445a0d4a0ffa94af
MD5 1df8a5c99529658222c77f252d776115
BLAKE2b-256 0247f66a182718bf2b0feb5509bac2b06ac498099bec887c192bb396d433d55e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.1.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 90c5b31f0e09412b994e11bdd7fcdfffe56d070cd6bacb335f0e0567052a2fd5
MD5 3988524f5c4fc587f91bb346d8bd443f
BLAKE2b-256 6c1f2225bf02e95b4eb06b8be10e89a359c8418c3f02ca44417c1f3b86f89957

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.1.1-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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 98a6eeafbd55b08355d33f2403592a9ce474d0d17180b62140df46a0e1c4ccbd
MD5 75d1594f5c4ed9292f2611bafc00ce46
BLAKE2b-256 eaaf5e81113a013559db129993923970d0fbd307ad57e7bbe54956498529dd95

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp312-cp312-pyemscripten_2024_0_wasm32.whl
Algorithm Hash digest
SHA256 ca980179b76a0c2a887ab0100421dc6d3aa7351df6b198540cca6413e7886f3b
MD5 af4c96c355deef7c22041df4dac365a4
BLAKE2b-256 676b00154ec4a1d532618f1496fe29fee53e70a7baa61508eb5a5168596ea7a8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c80dbbeff8add2722463a21719a668db8f3594e9ee7717fb86413e8cb3f2dd0b
MD5 d7a41552ddcd8712a9f1442606d2dc83
BLAKE2b-256 21cff4425a8b5d32559fe73b4e073dbee613b3ded9dabc9c83ebb236abbc40dc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e06778a42b6471309f436f18258d990f3fe8b404faeb6a3ed98248b9d0c5c083
MD5 43b3e2d4cdcb768ad42b8501b3888ede
BLAKE2b-256 3e7976e1ea36f8120e93230d6fb490f9913c7f9d6d35f2927da97f51224d390d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 eef81e164d3f223880c39a18e4c9a349f4e07c2fb8e1fa287f9c642907daf68f
MD5 e0e032bf519f3faaafcd03aacb91afb6
BLAKE2b-256 460bf02e0417df2b14e55f04442537acd039667c0759a1a8fb3bafff1fd78159

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b07f790261fb2161b96cf1dd8917ae4ea66f11cf49dd82c1dab34b85dcb0af79
MD5 8ef63d380b65b50547ea013459b522b7
BLAKE2b-256 0ce9db311b5fbe07c051ff56b5b845701b49cc055b4786388b561e515741d6c1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e23bf83a87a2e393c6be93b71bb86a1e91c3db21b61dc0f7268b3c2084a2b172
MD5 4254b3a2b988f6237830084feb128157
BLAKE2b-256 a880181aa14662ffc7d7aa612aad2d6005f6e4e6fe40b506078c33f58b78eb95

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6665764d83b865858fc4434364f47f219b2f5ec76db5c201def659362c8979e9
MD5 fd2edbefa2ef71c0642abdabaa692cae
BLAKE2b-256 79baeb6c5a819d2267dd708cef251ae532bab2f19b182bdbf7333edf4e27ed4f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c9c4959419269acf6c71566cd79b3a5c9520096b25f976a8fff1b0ecf96c84fd
MD5 7b33e2522e970cce21eaf3441e2394d4
BLAKE2b-256 2b7aa65280b6488c744293fc72ac031f0e29bdc77ac1a4530c652d4b6f737c08

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ce0248094d424fed8aa5fb60f548b6cc5b789b57a5986b9e3de9695105cc1893
MD5 b3139a52383aebe2f4fc11cbfbfa7ddc
BLAKE2b-256 bafeb59a887060aec74f59595a135c10ca0eec76959ccbff78e964e7ef5ca560

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c2c44433766dbe1a3c05c22cf6844ca0be7a3ac5f38d2d96b8194d5f2f3f64c7
MD5 787af1e557aaecaa875516b865e85e7a
BLAKE2b-256 7e84d4bfc80d5704f3d7682f5724b535145eb71cddb0464333f0e1c8572bd165

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f3935833898848162ed26e88166b195f060c5ae3f3688d3b80df0b045d59c88d
MD5 53735cc88e3a482e14578a10d0d3d666
BLAKE2b-256 0e9d527d82f425b3c067b51b0994e48dfdd603f3d761a7948c2fb160621f1dd8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7de2e327dd45bd9f2d7ac94e482ba76f8ca6057740266d06cc70014609b6c55f
MD5 25f2eb194abb0ec61e07618430e540bc
BLAKE2b-256 9a0cd58d3095a26fc7bcd76355d736dcd3ba641be3d4dd1107b40aff281524e9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b384499f4273c399c66130f2745a80e28673a481c61cfc4207dafd6124f66e4f
MD5 b9052484aa6d9e5d547855f4222e998a
BLAKE2b-256 f99e031aed9d225cf7ed0afc104530cc125576e781a91e3f79b28c953556588d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c38dde4128243904015d83ed2d7bfc054d0f6640f2a8080ee9e2c263299261b9
MD5 c4682b3332662ff41ba0ca87c3e85556
BLAKE2b-256 102193df936629e7dd8bc5a2886e0fa256a8b50f7b4680ac649c796da3dd6531

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 12ad8509559b58fa2b08435cc20eb593000ceed71946bdde9845e4690c6dcb42
MD5 e872e42d56291b17ddaf1bd339e7620d
BLAKE2b-256 4998d856f093f6c8570833ee3891331fee82952edb237edc2e22098e3beca1fe

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd778f6762a15bf6a4874ef0ce8a3a71a90851106c850995d14971204586c05b
MD5 3cba16c9e223f287407cfb6e743a41ae
BLAKE2b-256 97f769ef86a0a644ea287ef365008635670be6427f2acac23c84f74474f11b8a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 556db25a8946e4bb757c789f949a6a9e8eb360e545e09e4d21508fd645b21868
MD5 9ee0bbcf1502fff50828bb29c772c4e1
BLAKE2b-256 f0be22097c5a4675f1f9634af6308a8aa3ed110ef035e61a6c8334ef01aef672

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.1.1-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.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 42b5e864becb86d89936eebfc4c8e818b6c6bc2b887144de182ad2fb8fa11a4e
MD5 de356c7347be57d87815554384042e97
BLAKE2b-256 8990659db097ab9e39706295f898659ef564bf08ac11c810f64372cd9fda7f39

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.1.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c4afacb3b51015fb61a85997c1d4826bd0333b5f5098b1101b93f8c6cc053a61
MD5 291e08e2b9f4d32869c5b990193d58b4
BLAKE2b-256 6a82235bf346703da581930e7cc94c9f0590e28e6c1baf1caaf9f145440ecb43

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.1.1-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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2305e2da08566bc5ce7e624ee3c444514982ff9e7534fec3a5ec93f18365f039
MD5 a10386d03f13de10064257e0855b4cd7
BLAKE2b-256 76ae9b0be7666461514c62397f3624054014dfec7ae189053c15afa578c84a8d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 442b32f8e5391ad951678a55f8a2bf6f4f411c9171517461eca6aec4c32a64dc
MD5 043ffddee01551a1d41052cd7340382c
BLAKE2b-256 2fdfcac02b955b34c5cbc837b3548c1f68443b980faad4bc5d55da386c5b4cd6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f16f4ef45936f487b0274b6c490506fe353c2fad3ace7320a6eacd73dde8fce1
MD5 fe2a4c7f4c026f661263df5a9f0f1cba
BLAKE2b-256 42635105a63de548d342cc305814fa42eeeebf6ec3a2e460796cfd7197939d6e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 38fbd67b8611d4092a578f1e8d8c3102c8c68a5dc3635a77a39080b2a655770c
MD5 24b30e35d84107497cda18a8b52299fa
BLAKE2b-256 9a6984d8244827a5aa92c23cb5fd7e14ff38c49f2a0f8a0f193aa854633930d6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e519e7dfc08597eae91a22ec432dd328272a1ae125dcdfb00a732165f46ec7e9
MD5 8dc019f11840f8728497645d4f4bd684
BLAKE2b-256 66d084304474db6c85a1bf0a070f67a9b33d96ad203a53cc67a38be2b41b786a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b93f20b39fab11184f55e3d706bbed9730c360c814dc133546d0af18cc21d8c8
MD5 959e9b84de6ee04f601143434f93a441
BLAKE2b-256 d47fa6f65b7b8f8498b65b90d20a777a6f9e9d50c2f21f7192134df9b6b0b05f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 026179118620a0c0ef744460be7bc8c406cb9e8a03c6e49542ef9e8f1d45208b
MD5 57aad390c22e8cab4724973cca2f2715
BLAKE2b-256 84d62547d42310671eb1a26edbd0e15062c57972f1941b59b648dffbe3bbc5de

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a073a07d453758bfaf4e2154511603e0182fe10e12f02e120a74558aad8a2a72
MD5 432562b2ecadf9fb5d1eb6896cbcb680
BLAKE2b-256 3a649b914af93fd54efe0350aa8e557e9ee0dd2cc3f89328744c5eef1f22bc36

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b408bf4c78ff7aaf1089c4a242554acc34eb6eb0f3ddb1001b062c4fa1ed3844
MD5 6daedf03e385a070cbac5eda0822036a
BLAKE2b-256 f3e42e7b315e8e14a55b05b91154463691eaf9239f64cf804f99be2ce5cb6767

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9cf3ee980696e737cb8f91ef822386806eca2557a15559f0cd83b22fd08a9396
MD5 2c0be4f7ba12bdf19a7328299fcfe523
BLAKE2b-256 bed03c545a6c3c7f29c6671dede7b0ca7292a23669c4ccf3c5b22dc894625ead

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 83378f62580eda7521ef1650139c455331234fcbebc905ef5227454574f6f95e
MD5 16e497f997945a43af404be899e856a6
BLAKE2b-256 099bacb16c5c66435ebb919737caa80c5b7177ca5948598e28f87eff35898cd0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 12b6e7cda2409104115579b08de9d18c0a1aaf5b2f5795eca62e923d951bf700
MD5 7a4100c9f5504ffb68c257d286327f0b
BLAKE2b-256 dc867e9def88386f6febb9af4a57bb75a2c802d8be39aa0a81895d252e0d762f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e0b8044bb610fd68594fe5d6b83282cc2c94c322ac28a9289d41646f5afb4c26
MD5 6330e325f3b333f9039bdae885880b26
BLAKE2b-256 34e16f90eb0df5aec252444e1f53a7604b2c117e1ad6f8a9f15142a4bdd3a845

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7d7cfbc1a848d93867409f9d817826e844a617bb72f9833232cdc51099cf5db4
MD5 265a4d96e9556d2a40f3ad35423d328b
BLAKE2b-256 89b7a36240d9310333fca2896c4e75c4b065999670319a03a44b0e892bfab8b7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d31dd4be235c0d586177c663352e1a5efdbdd72c98115091c8590dfc5595408d
MD5 2437e9627204dfda17d02ee675b38165
BLAKE2b-256 3c1c79ba30ecd06ef88a6b71511c973c108ed1315ee35f040abd2755143c350a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5df3c8c10e99a202d90bc57bae5d178058741ba3974139246066ebb72c11aba9
MD5 08f21b2c7945561efbd887ccbc488685
BLAKE2b-256 44956e3669bfa236b06ed1b6f492e6357450819406a884073ef584f3f7be1fe5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6d3933a8b5a5de5382e9738d4d86113ddf783e9b467f17b7b34dcf9b5c1ed284
MD5 2e08c8de09d18e53abc62dcfcb7bd1a2
BLAKE2b-256 daaae6aca72b610fdd537fef02ac454711854113def9edbc1b036fd8f4740b2f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.1.1-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.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 36302d24e3f3442fa29ccecf28b5bd5ba0158cd0c27e71e73fe8a8a53fd35a40
MD5 f2c885c87033721897fd04db6ac9c3fb
BLAKE2b-256 71e232be0b103b3c81d057f8ef0f2ceab48ed338050df2de0260312dab30e833

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.1.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d748341a3c607f2b49f7229c1e1a0d723a658dc5ce9116792369684aa8edee09
MD5 c56e875c0eff32d79e1383cf6d2417fa
BLAKE2b-256 814c5c5fa158d06aa019626d5eb72ee467403aa13dd52e156706ebe65f011b8d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.1.1-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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 54e449da0141e0348338b8b3718e487da67452273ef5d838c6203927332c872e
MD5 11b3ada529e97299b09499cf4898b2c3
BLAKE2b-256 f136f93d9cc359b79e7c2bad8bf56668bcd5c3823f04f170142f4786a75ff3f2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1491a586336cbf804d2fa68e07e88f7b24a4cc7607acc518ee9f18e5ad72c2a2
MD5 6ab6e01748aeab0b785633e6574dc142
BLAKE2b-256 f3d75149db33718c74cc57f4bf411e9b3c761b02f657825af204e4524aa2f7ec

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 bd0f14e64d14fce642a1e89fa1e8a2e87ea2167d0b241b45966cff8f1ec6f77f
MD5 1a60dffa60aa6ff658b8b46c653cc0d2
BLAKE2b-256 9a99de2d37e634d4494b0d079c93b73381b7732791622d94c6f78dcfef84730a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 021346d754fe3f3c86443842f2b5f5a228098a599b885ed6d9118aa30c6c1d15
MD5 5304f491870db7dcf823b1c190588c7c
BLAKE2b-256 e92d3a3c8824cee27554b12e8decbe1d8f7b053dfd69825f439a72a1efe8f449

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp310-cp310-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.1.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 cd4ec10aa7060208c54532ff91adbadb215ca429649156395784592af3cc46c4
MD5 c40f5c155fb8e6ab48b6b08cae43beeb
BLAKE2b-256 decb37da4263e630b6c3fc09f08120abd0ecb8cfc4cd46f66043d8f4f4cb869f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3dcffa3bb11c540373f0bf2a422e5e2e2773d7b28d055e6637e5ecbce17feb16
MD5 077c3232c69973a394e9973c186fa5e7
BLAKE2b-256 9d3daf5cac8675ad2125880ea11d65e9d690503aa3ea4cde13bd90a881716cb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b61387750b7bef13ee18d87e800e4d07e4c62c145882103b3e71236bfa58a103
MD5 0afdecdd09741bce252aacb2f3d9c866
BLAKE2b-256 8d83367b203c2a2259c964e2b57d026e9363b8c6eea3448c0c2bc7c31d208207

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 76b5f3cadf40aa5dbbfd2c1733faaf0f9455a1eb6e261b694d8a9dd45a25aaa0
MD5 3c0ffda09d4872f973bd9e6832bb06eb
BLAKE2b-256 58d0cdf270f8e4b0adedf8c35d4f9d38ff53337f3f6dd2b812f33b3953df1ea7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 cdba6278b4373b26e2490876fc9703b1b4b23e0151f57c8f9c7b2b14cd0b7dbf
MD5 670c227d0e236748cdb94ef978b1246e
BLAKE2b-256 f14730b4e0549ac6eb7271edcf3459340348e594f13ec26e68cfd6739a18f5bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f5e569b3c36af35f82688e09a7a6fc90c0a35213c4e168c797d45bb569c46851
MD5 46c1a01f9c6af0e58302735a0d4e2328
BLAKE2b-256 dfafd78053c1052bd7267e1997e60776798cdff6071283b36ad28df4752c84ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.1.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6b25e2f0f09da986406adca3d852f5371b175dee589df99fcb5ff58b2fc07cdb
MD5 7726ce3d8eb43c88b725b825c0b2ba9e
BLAKE2b-256 c53c2f3b584e2b181aa24210a2785f7c927335bf60b31f12fdf929551d7076bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.1.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f3803a1f914a3d59816326688ce963fb61015e4601137a1bfadf5fc26a3b31fb
MD5 c621345e549655412e4d690aac923bc7
BLAKE2b-256 05dfff9c1fdfb360763fc0ae7ddbc753ec9e55253d3a6d5328dc6bf1ff7ce9c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.1.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 184fb5b6388d158e7301a946a1953d0765ea874ec83c0204785e040fd64da4ad
MD5 ad13e0a9948fedd25bca4a9a94eb736f
BLAKE2b-256 93de55e08a128c4d45ef55fc896cdd0ba024c051b8f819ad771efa9551c24eb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 99a6c813412df63c67197eb6956f0efa971067e21c10a62ea83db0a7e67523c7
MD5 0fbc177d7b272644a8a2e27f54157eaa
BLAKE2b-256 82174cf27bda880a7a797a40bcdd77677085315516d5fbf5bb2d78baeff8b08f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.1.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d0bbb2709a1721fcce98ddcd794e33a8cc89ff46165540ecd5ca4822929ef99f
MD5 8aaebb056745256da7614a66e024a526
BLAKE2b-256 03d61ad33a594706e80b3925d2ad717ae113bc8769c50ac4c6839915b31e95c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82241ab35fcd4381d3c4f425e4f889a181929ed3aa26da88436e46ca816d4d49
MD5 c7c35cf1996c2c796bf9e253013b3167
BLAKE2b-256 6c3157aaa0a81ef99a551d6e28b4c1e6504ac19abe538eba5cfa0e63d6482405

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 48d558563517dbaaf10c6cbead569f693adf974a88953580c8ebd56c9efa1c87
MD5 f4a754291e790e42d7ba5035b72be993
BLAKE2b-256 093449bfc006e138db44340e78e7233ce74fed63ac71b0068438a29c0b33d694

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: xxtea-5.1.1-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.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 b7f50104c4d6039cc1a0fad798345c0fe078062a28c64c99263e732f6c694596
MD5 22e2633bfafb872d5b5406cc893708e2
BLAKE2b-256 1ea62adb5147d3d6a2a4cc6c9773f1a5e516bc7b540135ed8a362e7ff95c082c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp39-cp39-win_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: xxtea-5.1.1-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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 77e13c0a0d7d34f9eb94fee2fcabd31b652b81368ce60c1c605434aa6654a1c5
MD5 0c9bd0156aff76b9ab77615c38e8cd8e
BLAKE2b-256 5d90ffc466ecfcda66c167c85080b6522bc71190564cf154cd942238d2f8c27d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp39-cp39-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: xxtea-5.1.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 14.0 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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c38172058fa8aa6f080b46c3947f1fbe2998a3a80803e205fe1451454d4b264c
MD5 515fa67e4e755b7fcc9e0ec8238c5851
BLAKE2b-256 1fd445fad7180d7dc997d775d0908c5deccfd651523e320e3936385b8b968349

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp39-cp39-win32.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: xxtea-5.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 43.7 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.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f84df05b9c911a035bdf1ec525f2fd1ec36250d6f31ad21719f0aa098875ab14
MD5 a5f9e451dd39ae2521af19902e16fa88
BLAKE2b-256 e70f5b155dbf4b9a33ee17a85de366e3d659d020fd2268eadb01b29d413fc6e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

  • Download URL: xxtea-5.1.1-cp39-cp39-musllinux_1_2_s390x.whl
  • Upload date:
  • Size: 57.7 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.1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 61c8d2ed48e41b60e973cd42d7882bde1d3a816e6c00ef86205f64b324a005da
MD5 61916356c0bcd62a1727ae42964f82c9
BLAKE2b-256 d0b9cc7be9e3f467ca355f76e4bc177fe257a2a2ca9b85b7e1b7605bb000795b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp39-cp39-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.1-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 def012839e5764eed54c3904383eca53199f26c5112e6abbca38b821c0075142
MD5 260ebe91b8de88e201cfec163a3646a4
BLAKE2b-256 9fe2c8105471d3349e5b28cff5bf176624acaf31e3435475f0ea1420176f2dc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp39-cp39-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.1.1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 400429222972e510c62ab387631cdef09cf9ed55ae72b62df7653f8973736464
MD5 0f87a1ddcae702b256f6cd6a6e7b4745
BLAKE2b-256 60d6f2645f355b81e377a4e4e966136c30fe2c2b8e5ad84a06419645fbabb566

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

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

File hashes

Hashes for xxtea-5.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f0df51fe16a8bdeaef28bac621848c91fbd19868d524ec11d6758891b4726b55
MD5 2b281315ca1615677f0123979a75fc1e
BLAKE2b-256 ca41718f76cce074b9feb8685da6a5995c4ad2beb3d71424d2d5e8becd9cd5db

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: xxtea-5.1.1-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.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f21ab21a1350beb0a4e4800943de03810aa7b5a18a0c728e946ee9b22ef46436
MD5 9109e77583b006764bddd3529a1704ad
BLAKE2b-256 d5aa283e1250534f85a2338ebce3991d7d50834bcd341959e489ea96aa69cf21

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3f0fdbf7cc7b37444eab79a7e817c7b9a7a91f279e7bb80a8ec33c9206d24904
MD5 b9bbbb2bfabd24002be69f53d2b17411
BLAKE2b-256 2c0953f340611159e8b3f221fabfbde3cd8921aaffa4c8bccad8149a6bc28b68

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 6a6b4a8b62bcc81539ed107f56a172f559e26a00584ffd620125215b8b0f9bda
MD5 40f8c54d97ebb993b4426a3a41c49d9e
BLAKE2b-256 01ab492b176f10b071c0b8603382c8555c594169583e6296606f5df3ed58f7e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 12a9cb6f3ee8946341553f9d8743e052bab77c615c2bb7db2544dcebb9b21cbb
MD5 88d22c90855606226dbf5c1f2bb11df0
BLAKE2b-256 84fcdd643b87cf6da41f486d6f37d30af8137ed0552d114c9e0234e52f078e33

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.1.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d4ae1f1c1992ec5603616da4312403b6d560d2c5dced6a6e4dbf3073986ffb2e
MD5 26e5376b2d0851f6ed70ba90b1a56f74
BLAKE2b-256 feee10d8785017a33eb2aeb113e83e33cbcc7bb1b2a33cc49d671cba7d0bc1a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.1.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d4dc01ef474869f569fee5c9c463c89983636ce6f5faa5e0f9d771ae7414e6c3
MD5 cf2fcbbfd434c829d95a16f38659086e
BLAKE2b-256 db3844b42189d71512a144f52a782847d0e9a7453a0223d2f27d692dc1d82e7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.1.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5affba14ae01b10933d70d284812b34df2fec8c19b513d195408dbe973d6eea7
MD5 a06adfcc7d1ad020e74cdde2024d1e08
BLAKE2b-256 a4bcbffe7f7655e68a0f0752e147bafc9b39797a22b14257d10226abef7b79a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 029f8f9ce27f465882f3748d4c8dd259eed5156e97e6d63c3d9b0020149fd234
MD5 821bbe39ae79818544559383da12babc
BLAKE2b-256 e948452a4cee2069934170fa81c2e8cd24c688c485a334cc6c9ae0caf0c2b6da

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.1.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 19a5f12a56b5da999828294d857856ad9be7c552043b3424d73f755454f13407
MD5 ac13c77e68bc946c26681abeeb0a1362
BLAKE2b-256 a624cc615f752fb3859dca79df9cc8cb3a2923b783832b8fa1c4987452ba6d84

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: xxtea-5.1.1-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.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dadb07ab7556303ee965c7c525eaed72dd339d8a95ac00b23b0155c64f5ca48e
MD5 52e3c77cff8ecd513779bccba1d44a1f
BLAKE2b-256 b6fa35fb72dc1dce934ac28ac18e4eb6db85d8b44f6b71da1c1160d46d9b304b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3b0bd70ac8f072e74f058ab869899cde883bcbb9ee6b1dd617c2a63742064239
MD5 4fb4de034e9db350700a762c23520b82
BLAKE2b-256 300cd2e5a8c31b4401681b198d8355018982a960fa1efbfe278265d616cfa787

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

Supported by

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