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.2.1.tar.gz (21.9 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.2.1-pp311-pypy311_pp73-win_amd64.whl (16.2 kB view details)

Uploaded PyPyWindows x86-64

xxtea-5.2.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (15.4 kB view details)

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

xxtea-5.2.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (16.5 kB view details)

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

xxtea-5.2.1-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (15.7 kB view details)

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

xxtea-5.2.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (12.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.2.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (12.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-5.2.1-pp310-pypy310_pp73-win_amd64.whl (16.2 kB view details)

Uploaded PyPyWindows x86-64

xxtea-5.2.1-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (15.5 kB view details)

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

xxtea-5.2.1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (16.7 kB view details)

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

xxtea-5.2.1-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (15.9 kB view details)

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

xxtea-5.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (13.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (12.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-5.2.1-pp39-pypy39_pp73-win_amd64.whl (16.2 kB view details)

Uploaded PyPyWindows x86-64

xxtea-5.2.1-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (15.5 kB view details)

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

xxtea-5.2.1-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (16.7 kB view details)

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

xxtea-5.2.1-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (15.9 kB view details)

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

xxtea-5.2.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (13.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.2.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (12.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-5.2.1-graalpy312-graalpy250_312_native-win_amd64.whl (16.4 kB view details)

Uploaded Windows x86-64graalpy312

xxtea-5.2.1-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.8 kB view details)

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

xxtea-5.2.1-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (15.0 kB view details)

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

xxtea-5.2.1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (14.3 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

xxtea-5.2.1-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl (13.3 kB view details)

Uploaded graalpy312macOS 10.13+ x86-64

xxtea-5.2.1-cp314-cp314t-win_arm64.whl (15.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

xxtea-5.2.1-cp314-cp314t-win_amd64.whl (16.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

xxtea-5.2.1-cp314-cp314t-win32.whl (15.4 kB view details)

Uploaded CPython 3.14tWindows x86

xxtea-5.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (53.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxtea-5.2.1-cp314-cp314t-musllinux_1_2_s390x.whl (67.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxtea-5.2.1-cp314-cp314t-musllinux_1_2_riscv64.whl (49.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxtea-5.2.1-cp314-cp314t-musllinux_1_2_ppc64le.whl (56.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxtea-5.2.1-cp314-cp314t-musllinux_1_2_i686.whl (55.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxtea-5.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl (57.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxtea-5.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl (53.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxtea-5.2.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (50.5 kB view details)

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

xxtea-5.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (54.4 kB view details)

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

xxtea-5.2.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (72.0 kB view details)

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

xxtea-5.2.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (58.0 kB view details)

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

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

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

xxtea-5.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (55.5 kB view details)

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

xxtea-5.2.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (55.2 kB view details)

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

xxtea-5.2.1-cp314-cp314t-macosx_11_0_arm64.whl (13.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xxtea-5.2.1-cp314-cp314t-macosx_10_15_x86_64.whl (14.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

xxtea-5.2.1-cp314-cp314-win_arm64.whl (14.9 kB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

xxtea-5.2.1-cp314-cp314-pyemscripten_2026_0_wasm32.whl (9.2 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

xxtea-5.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (48.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxtea-5.2.1-cp314-cp314-musllinux_1_2_s390x.whl (61.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxtea-5.2.1-cp314-cp314-musllinux_1_2_riscv64.whl (45.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxtea-5.2.1-cp314-cp314-musllinux_1_2_ppc64le.whl (52.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxtea-5.2.1-cp314-cp314-musllinux_1_2_i686.whl (46.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xxtea-5.2.1-cp314-cp314-musllinux_1_2_armv7l.whl (48.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxtea-5.2.1-cp314-cp314-musllinux_1_2_aarch64.whl (48.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxtea-5.2.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (46.6 kB view details)

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

xxtea-5.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (49.7 kB view details)

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

xxtea-5.2.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (66.1 kB view details)

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

xxtea-5.2.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (53.8 kB view details)

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

xxtea-5.2.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (50.8 kB view details)

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

xxtea-5.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (50.4 kB view details)

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

xxtea-5.2.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (45.8 kB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

xxtea-5.2.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (13.6 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

xxtea-5.2.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (13.4 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

xxtea-5.2.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl (13.1 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxtea-5.2.1-cp314-cp314-android_24_x86_64.whl (14.8 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

xxtea-5.2.1-cp314-cp314-android_24_arm64_v8a.whl (14.5 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

xxtea-5.2.1-cp313-cp313-win_arm64.whl (14.5 kB view details)

Uploaded CPython 3.13Windows ARM64

xxtea-5.2.1-cp313-cp313-win_amd64.whl (16.1 kB view details)

Uploaded CPython 3.13Windows x86-64

xxtea-5.2.1-cp313-cp313-win32.whl (14.7 kB view details)

Uploaded CPython 3.13Windows x86

xxtea-5.2.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl (9.2 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

xxtea-5.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (48.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxtea-5.2.1-cp313-cp313-musllinux_1_2_s390x.whl (61.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxtea-5.2.1-cp313-cp313-musllinux_1_2_riscv64.whl (45.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxtea-5.2.1-cp313-cp313-musllinux_1_2_ppc64le.whl (51.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxtea-5.2.1-cp313-cp313-musllinux_1_2_i686.whl (45.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxtea-5.2.1-cp313-cp313-musllinux_1_2_armv7l.whl (48.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxtea-5.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (48.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxtea-5.2.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (46.4 kB view details)

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

xxtea-5.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (49.5 kB view details)

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

xxtea-5.2.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (66.1 kB view details)

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

xxtea-5.2.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (53.6 kB view details)

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

xxtea-5.2.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (50.7 kB view details)

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

xxtea-5.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (50.2 kB view details)

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

xxtea-5.2.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (45.6 kB view details)

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

xxtea-5.2.1-cp313-cp313-macosx_11_0_arm64.whl (13.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xxtea-5.2.1-cp313-cp313-macosx_10_13_x86_64.whl (13.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

xxtea-5.2.1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (13.6 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

xxtea-5.2.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (13.4 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

xxtea-5.2.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl (13.1 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxtea-5.2.1-cp313-cp313-android_24_x86_64.whl (14.8 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.13

xxtea-5.2.1-cp313-cp313-android_24_arm64_v8a.whl (14.5 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

xxtea-5.2.1-cp312-cp312-win_arm64.whl (14.5 kB view details)

Uploaded CPython 3.12Windows ARM64

xxtea-5.2.1-cp312-cp312-win_amd64.whl (16.1 kB view details)

Uploaded CPython 3.12Windows x86-64

xxtea-5.2.1-cp312-cp312-win32.whl (14.7 kB view details)

Uploaded CPython 3.12Windows x86

xxtea-5.2.1-cp312-cp312-pyemscripten_2024_0_wasm32.whl (9.2 kB view details)

Uploaded CPython 3.12PyEmscripten 2024.0 wasm32

xxtea-5.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (48.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xxtea-5.2.1-cp312-cp312-musllinux_1_2_s390x.whl (61.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxtea-5.2.1-cp312-cp312-musllinux_1_2_riscv64.whl (45.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxtea-5.2.1-cp312-cp312-musllinux_1_2_ppc64le.whl (51.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxtea-5.2.1-cp312-cp312-musllinux_1_2_i686.whl (45.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxtea-5.2.1-cp312-cp312-musllinux_1_2_armv7l.whl (48.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxtea-5.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (48.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxtea-5.2.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (46.3 kB view details)

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

xxtea-5.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (49.4 kB view details)

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

xxtea-5.2.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (66.0 kB view details)

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

xxtea-5.2.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (53.5 kB view details)

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

xxtea-5.2.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (50.9 kB view details)

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

xxtea-5.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (50.1 kB view details)

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

xxtea-5.2.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (45.5 kB view details)

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

xxtea-5.2.1-cp312-cp312-macosx_11_0_arm64.whl (13.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xxtea-5.2.1-cp312-cp312-macosx_10_13_x86_64.whl (13.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

xxtea-5.2.1-cp311-cp311-win_arm64.whl (14.5 kB view details)

Uploaded CPython 3.11Windows ARM64

xxtea-5.2.1-cp311-cp311-win_amd64.whl (16.1 kB view details)

Uploaded CPython 3.11Windows x86-64

xxtea-5.2.1-cp311-cp311-win32.whl (14.6 kB view details)

Uploaded CPython 3.11Windows x86

xxtea-5.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (47.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxtea-5.2.1-cp311-cp311-musllinux_1_2_s390x.whl (60.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxtea-5.2.1-cp311-cp311-musllinux_1_2_riscv64.whl (45.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxtea-5.2.1-cp311-cp311-musllinux_1_2_ppc64le.whl (51.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxtea-5.2.1-cp311-cp311-musllinux_1_2_i686.whl (45.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxtea-5.2.1-cp311-cp311-musllinux_1_2_armv7l.whl (48.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxtea-5.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (47.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxtea-5.2.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (45.7 kB view details)

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

xxtea-5.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (48.7 kB view details)

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

xxtea-5.2.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (65.1 kB view details)

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

xxtea-5.2.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (52.7 kB view details)

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

xxtea-5.2.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (50.2 kB view details)

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

xxtea-5.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (49.3 kB view details)

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

xxtea-5.2.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (45.1 kB view details)

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

xxtea-5.2.1-cp311-cp311-macosx_11_0_arm64.whl (13.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xxtea-5.2.1-cp311-cp311-macosx_10_9_x86_64.whl (13.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

xxtea-5.2.1-cp310-cp310-win_arm64.whl (14.6 kB view details)

Uploaded CPython 3.10Windows ARM64

xxtea-5.2.1-cp310-cp310-win_amd64.whl (16.2 kB view details)

Uploaded CPython 3.10Windows x86-64

xxtea-5.2.1-cp310-cp310-win32.whl (14.7 kB view details)

Uploaded CPython 3.10Windows x86

xxtea-5.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (48.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxtea-5.2.1-cp310-cp310-musllinux_1_2_s390x.whl (62.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxtea-5.2.1-cp310-cp310-musllinux_1_2_riscv64.whl (45.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxtea-5.2.1-cp310-cp310-musllinux_1_2_ppc64le.whl (52.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxtea-5.2.1-cp310-cp310-musllinux_1_2_i686.whl (46.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xxtea-5.2.1-cp310-cp310-musllinux_1_2_armv7l.whl (49.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxtea-5.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (48.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxtea-5.2.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (46.4 kB view details)

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

xxtea-5.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (49.6 kB view details)

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

xxtea-5.2.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (66.7 kB view details)

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

xxtea-5.2.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (53.8 kB view details)

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

xxtea-5.2.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (51.7 kB view details)

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

xxtea-5.2.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (50.1 kB view details)

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

xxtea-5.2.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (45.7 kB view details)

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

xxtea-5.2.1-cp310-cp310-macosx_11_0_arm64.whl (14.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xxtea-5.2.1-cp310-cp310-macosx_10_9_x86_64.whl (14.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

xxtea-5.2.1-cp39-cp39-win_arm64.whl (14.6 kB view details)

Uploaded CPython 3.9Windows ARM64

xxtea-5.2.1-cp39-cp39-win_amd64.whl (16.2 kB view details)

Uploaded CPython 3.9Windows x86-64

xxtea-5.2.1-cp39-cp39-win32.whl (14.7 kB view details)

Uploaded CPython 3.9Windows x86

xxtea-5.2.1-cp39-cp39-musllinux_1_2_x86_64.whl (48.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxtea-5.2.1-cp39-cp39-musllinux_1_2_s390x.whl (62.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxtea-5.2.1-cp39-cp39-musllinux_1_2_riscv64.whl (45.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxtea-5.2.1-cp39-cp39-musllinux_1_2_ppc64le.whl (52.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxtea-5.2.1-cp39-cp39-musllinux_1_2_i686.whl (46.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxtea-5.2.1-cp39-cp39-musllinux_1_2_armv7l.whl (48.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxtea-5.2.1-cp39-cp39-musllinux_1_2_aarch64.whl (48.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxtea-5.2.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (46.3 kB view details)

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

xxtea-5.2.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (49.4 kB view details)

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

xxtea-5.2.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (66.5 kB view details)

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

xxtea-5.2.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (53.5 kB view details)

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

xxtea-5.2.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (51.5 kB view details)

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

xxtea-5.2.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (49.9 kB view details)

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

xxtea-5.2.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (45.5 kB view details)

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

xxtea-5.2.1-cp39-cp39-macosx_11_0_arm64.whl (14.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xxtea-5.2.1-cp39-cp39-macosx_10_9_x86_64.whl (14.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.2.1.tar.gz
Algorithm Hash digest
SHA256 1240dc7ba99d4bb3237cfbcc00c75c05385348980f22fb4a723216d0cebf4a56
MD5 19a5e7be6b5cfbf4e78dcbcb0ef8728b
BLAKE2b-256 973db6f48fecdf3ae79416f6ec84af0d346ff5ab6bc0d4a64f5108f3260735e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 21c0492b9b7167d61b94215112661578f281cb30d008eb902ac67755e1e72e91
MD5 7eecf206ff7db390b7b2b3186438fa0a
BLAKE2b-256 228e21514404950a67fdc34e26b4e6327b1cdc55f0d1deb292cb413bc835e091

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.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.2.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.2.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bd3410967713b5553fcbb8b77ad2aa073f9839f192e21eaaaacb5c09c6c9b882
MD5 48c6e2ffea31c54ffb46c2225596b9ae
BLAKE2b-256 c86ae7fc86c4a0f51effb598cdcc6af5b564e7342fb28828f3b6f6556e4bb4b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3df64eb77dca7192c4e93cdf872be605980605528b0cea552d951c960a07c1f5
MD5 5f9ba354ff51ee1c75ec3aeabfe9a85d
BLAKE2b-256 e03b7c8fe9317bfff2372b6c03a8b4d206e9e49423993f7e352e807672bfa468

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 316003f9bee909d2585cf3b2597e2156dff27a69c63ff5c458a1e8229fcab078
MD5 bf587afdaa0e90cce2196f5a3db50616
BLAKE2b-256 80efab9ed93161b2c60159252feaecf49b3232dc63e2337de2a900536ea2dd65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c36e08285e657580652ad6732af29a27e924b2ba3b45f721a62ebc8ea91efa5
MD5 9f22e0938175a577f2e2290ad58b0ca4
BLAKE2b-256 6b60ec406d82dd184dc40db1116fa88429d08ae1a89181bf0d351f3e6b058075

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 04b923a972f9ee320dd41659d0755a4f5d828869ce2b2f9010c6e67ba51205fd
MD5 7c23009788e0120b32c2ed1ec3a9f14a
BLAKE2b-256 6723d4bdb0e89e63319b5fbccf57ff4e04740d935095a5c0361978a1a471b8a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b594c26baf7fff8417106eedbfbb5c48adf6ed35087062f8e270b81fd36b79f5
MD5 af54ec61e2b761315708da6542c9fdb6
BLAKE2b-256 46e24d96bb358a5d88f5f532abbe3a33ceec3e2abd3c7e908b54a136102122ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.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.2.1-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.1-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c6cc83aca67154a27b5dd776ea23e05e9836c8041bd0814dfe7b33ac91aabd84
MD5 e76f9538e8e8f81e760e77e41ccb5f6f
BLAKE2b-256 b0257fbd78c2c426640e62f14d5f60de3d59afadb3283662587084a1a7530527

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8dfb63f739681fac1943f257badde280691cbb910ce3a83167caf321c1ab173d
MD5 971cc52cd386deb3e98bf2dc603400bd
BLAKE2b-256 4b7f532443dce64944457c234f3071630740251a600e085cd33d2465490eaf03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9ffd8a46027486a828e964bb004ae6b7971e45bb84130e59d753a5ad75211eee
MD5 024a9e974d6634c8c4c20ed0f16105bc
BLAKE2b-256 500daec9c1381f56188cfa57989c16501e8b396afc2c5965f16076fdceed4b80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a11dac880e84020a09715382fba257063f3c44a224b28d0e44a2d077a92081e
MD5 ca9fb8b950e7a0d624d57a3652395929
BLAKE2b-256 a19b2b31ae80a0f3aaa933c62c65ce0c8b9a10431db43f437477615bff48474b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 03cc28c93f5b46c16332375edb75acb4da5d73671b5a49a72fc6adf94292ece7
MD5 95f0139924368fdfa427c441041beaf6
BLAKE2b-256 dc7927882103a5e1ea50939be52d42fb12f95bbf6c316fafd4c30b968e78fa02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 528d651b2e3448526fcc0180cd8608e013b4e2a06184cfbf6b6c1c824a73f877
MD5 834dba2f91e2ae655c5570d8abe15215
BLAKE2b-256 fa0e5b04449b41ce2a4fe911678f9f83a8fb0b81d2fc6997a051b1c6ae11fbdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.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.2.1-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.1-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 15c91b41e8e46fce9e8bd0708e0c452f7ff303a9d83693c530cada898780ff28
MD5 d2404d6b87511ccd5faeb987b98bb59f
BLAKE2b-256 c5b7d0847df8774ad9774275c23b5987d04cca0e228e1b0520c1e674bf97b0b4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.1-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b445e3589029ce583655b8eb86415c48e51916e617217666a5a3a00097c38c1c
MD5 130283c7abf420bb7aa477dad47f8fe2
BLAKE2b-256 1968ace515595edb174e41cc7db6cf0210fb2122eb329a22d52665c041b60a5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7cbc82748087e7687b4adffdf13951cf5379fbab84c3f026ff05b323c7e08cda
MD5 e0388a5d6348241823001d4432db9a7e
BLAKE2b-256 2d83ae4353ea523de1115fe73dccc875b78bc2f685c6ee599f8e39c70879795b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59336755573992506e09933a929b720f807520e9f4bb7fab0fa5297e4baaabd3
MD5 63cd22952978ea835eb37e526ddcb844
BLAKE2b-256 f5abb97ef021edb5d2ac3bf0f2cb056782d714c243e4c2e36ef1075e983a0750

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 98d4369b456ec6080f21396340a38ae453f1edb9a837789cc15dc8aa41c4f8b0
MD5 61c9941ebedbca7005adfc3b515c777e
BLAKE2b-256 75fd704c875b6dd755a0edbc0e93f241f0d168757f666ed451f66408d7e8f147

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 b8e4c1130f49e2b80a451336782c7e4d16819ad3da43634e1b7f3ad7931905bd
MD5 09d48b64e66178cd68a5ff313b255951
BLAKE2b-256 9d3bbb16869dd3b2314f53d54442bdee7376573ccdd99c222fd56822b25ef96b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e2137f522f6107871f71af4b2b30b2cefbb8e3053979757a48cbce2bb36d1197
MD5 43cb35fa33c2bd3883a8e2bf8dd3d791
BLAKE2b-256 274872436693d7ca50b43c6e98a09e627433afac450e505427dc7eb5733ba730

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.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.2.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.2.1-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c4c213f8e18dc9459cd0aa52d1f3f065eda3d9bff924ff2ac87708bef63a9083
MD5 40506d3eae567010053db8fbad177950
BLAKE2b-256 6c52762dea0bcbb6cd0a91760f602c695d9a1c76259968392e1e059f3425b74a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8343a77c6f28344d2ad9e3367c185da1a715bc805f8ca25986aa983245942ccc
MD5 a88dfdfaca6444f6a2ee7a5165cb4bd0
BLAKE2b-256 10657a5587b39ef63cc2212fff8e40229d173a5f645e9083cb740816c55fba5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 548020e67740fb5c3d02b1404b56b9a1cd0feb9181c603c47c476dd266a58507
MD5 6d1737e6ec202ede36de1f8c2375de4d
BLAKE2b-256 5887dbb3287201314afd3dc30dd1c6c983668c58aa7b57ecf33ebc664b1026ad

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 15.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.2.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 6563969628bed1cbc110c35e7b155e37870cc01715eca3c776f555827fa88504
MD5 acf1ee6f843cf017ce60d4ad6e154c3c
BLAKE2b-256 aac2f02ca51d9bc0e6d328a2e066317cb902b2b75e18c33d600c48c5726acc2d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 16.8 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.2.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b323a292e3f35d8ab7ecf8674da836f0bba5148e5ec5993db82f99ee2c264c05
MD5 ce8fbf54c9dc2bf5e7963c5349cac877
BLAKE2b-256 e69ae4de73e60dbc4e2ded3496301752d08b7e4b93b282ebbc0de9c8eea18bba

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 15.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.2.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 fbb9b6091ca977016b834a50127d9e00c2e91bed3ceecad8b876bfd431f1239c
MD5 dd73fe13169b4a68f69fe08df6a0d8ec
BLAKE2b-256 76af821b60108ae990979d9c45fa9a510da083e7c5c18383316d1afb3a72a218

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb470552ce8d291aa4889fb3bb7442135ac4fceb5c1b87fcb53b0b81998895fd
MD5 9cc5af9e03756f3b00d71903dad80ea4
BLAKE2b-256 5ecbc9adae4299d169e6257282739e8eab3e874d88cfd4f73a26f6d2d2acd9a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3f91b36c893937b33a74c2145c318b8e19942b9bbffedb700de5da17deaa4a38
MD5 066a3aacac2f3aebb46e50edf0328c0f
BLAKE2b-256 0c773c385de68541c863c7db78eeb03245ad80e6332ab54cdf7f6d3356927b39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 94a424c26cbe4b6b323b4566a023ac7280159d1ce6506cb9824012083aa212f5
MD5 cdbad0a69172082fc7a8ef666d1bf5e1
BLAKE2b-256 620bc0827a0c2e429d00ef92719d95dd92517518a269d8478b9adf693ef3e41e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 84c42bca6eafedca3697de957ba70585ab46781c534c91cd2608a35ca7df6c10
MD5 fce06984fee45fab3713739f2d629f57
BLAKE2b-256 17ea478f9d0fdee8de6658e29e971d9c1fa562cec8ae267f7a4f3d71f73064ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8b79ea8d5370622d1e93c3e8b3d49d7e8d97bbb8c3155b232509aacb03c167f9
MD5 fd0ae326d47506422003e8cb381309f7
BLAKE2b-256 0616717bd9646c8df358945005457ec4faba277c9e2012837e5bfe7518c09ee5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c27f8ca91082067f8b827f7568b4296fd888f33acd80c404ec2884a897dc204d
MD5 ee544bf688fc3665aabf42f7b3bf8baa
BLAKE2b-256 5d9a8d784ba42ebdbd72d0d8c998dc02f77b38e291219256c9b278770c4fc1c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2a3acf11ba82c21c50687245a7dfdc4e8694ebdd5b16c5f81ab156c8a1f2c8df
MD5 83be8b0b58277906f02019ea3373eb20
BLAKE2b-256 0723d73091cab8e99b3e05e05943ed01bb6db854d89d405f71acd3703927bfff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2bbce2858f254fbb0c0205e4e314d3ee0e73bae0ee8bc443911b9c4e64fa41f3
MD5 5ec27b1d725d3b75f64593cc14133bdb
BLAKE2b-256 fc0ec802ad7e3edc66f86d69fe2ef96ed59a08c42bdf8f71dcf7e560e6c74c15

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.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.2.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.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 398cde6bc5fffc75210b2acb1c74315bde632c997d002d524374fd917322cb63
MD5 be98d2e3989ccb3c8b5ed956ee413ce3
BLAKE2b-256 42198d9b50a4a895d7bf0a0e3345fb10e5dfaec1a7b10345c2a33800dccdd27b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 52fbbcf2f5cc18af5488cdaecd7dc854f664023c2bee3e86bc6012d4365962bc
MD5 99b8dfce925332d9a7e2e4740bb23c20
BLAKE2b-256 d38b00d8844f1acccc1760bac8aa8461c8204f1d31cdf12b832fabda36a6f3fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 af617b9b02393adab99acb1dfafdc3331a5213ac70b280aea5e21f277cf44ef9
MD5 70bf843122a054bc9fa51a85f0847bfe
BLAKE2b-256 212f70cba6edf32b85b0123cd844d84be714e7be7db5995193a1ba83b1ae69f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3ae8154449dfd75f41fc70427cf85239965910c053ff0fa0fd0f24d7c8039f66
MD5 07e0995656e13e15d8fb732de11d8e8a
BLAKE2b-256 8e88ba0162d64f97437ad6af6dbc505a4608c77bf20c89c5ad5b3cb72cf4a099

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 da7de23c7332b42e47abb14c7b90a7786a6569985419a2a4dce961a1303f6203
MD5 4165a82e3144904873bec64f879c9bfe
BLAKE2b-256 bb407af809c161fd9540a4464bcc92da6733d8414320d1f20b8946e65315beb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6c7ab7b4dc9cfc4d9b6a89f2f545c70eeff5695a00e5fc875295de15287f4730
MD5 9f405194846abe9af44c0c06ae35305f
BLAKE2b-256 d17e8890bcda2a0440ed9c9d527a5f80ce3b27c4e7bb6d3a3458e5983bc65e96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e42634f179384ec704e768dae8713eeddeefe41827a1e996b1d35db6c0ebabf4
MD5 d75d6ea79fc9585110109f6fb84c87de
BLAKE2b-256 1478a72a976f87fd9e48c7c6998be25b4d1771606d6e018ba7547c624a4de4b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 08dbf08234ca1c7b2cade70d33b5e1d3c6d9eee0aa3779060acf7f1a6827e39b
MD5 03b3aa532aae8e45f63059bf5a8eb507
BLAKE2b-256 72a344bfc070ab29199d92bcf80fac0382226eb4347ab71bea22185acda6fe3c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 14.9 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.2.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 03e37560def5bf659305132079b8c0fa2fe6ad0d0c9fde64de6b0f0a02c62cc7
MD5 369dbc4e43f2eb058cfc0d15d1cc1bc5
BLAKE2b-256 95cf1d638ef22652527c5139b027908cdf5bc1f53199380f68a3602215c8a6ee

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 16.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.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 00f448cb35d1abebaab1cceefe89f2535bd72a808b82c3db70bb7714854a2bcb
MD5 ca4496d6298c30c728b7851cca28e12b
BLAKE2b-256 e615fd4a10ef4c279bf0da553a84271feef5b1e8ef9e82d4c07d5cc7d9d03f47

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 15.1 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.2.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 085857edaf215947e1b55aff99cf0d655b92a4712fcdc1b1a7b00bed7712c9a0
MD5 5bb8e073aa0ed519a36eac8aed857b4a
BLAKE2b-256 3712526c1efd3550446a4f4a7b8a9097bdd6c67524a06115357f8047706f9eca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 bf08a0002d1aac24e693d01d35e99630250c8e83c2bf6d2cd2c2b45d961cd5eb
MD5 17bb770c646631f0990006529a24edb4
BLAKE2b-256 f36071bc774dc6a20f287a493da671abf08ee7f8223cc87a4817982f2a627907

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d936c256d51db63bee767e9ce50348683488343d10469b161af3b2a9feaec13
MD5 fb22dcad93e9c961ff604f5573e00866
BLAKE2b-256 ff71150cbbbd297f88939c4f34dcbd83f785b0d18aa07c2d31272bb7eeca46c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e0749abc77aa7b68cadb55d9a6c4d13154ce8a08ec42d122bde79092de61883e
MD5 0da2c8529ff0691e309fe84466e5a6d7
BLAKE2b-256 3ea87a78d23e0487df1d492fe915040e0d4aebfce70e6d09cc2f32467029c97d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5f39b071338ec9fa1b993a84bf875e3bf530d68655fc587a7d18fc09968d1bbe
MD5 278de2ec9e575bafacdaa02703db7ecb
BLAKE2b-256 3124361b80cf0e0cc4ff6c4102788fff0e7bdc8e226f7554f9280431476cd603

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 edddcb205ad32f2990f4121441263588fc65c18fee330f09aaa285107d1869ee
MD5 c532eeb3b844b06305c3af0c919e065b
BLAKE2b-256 93d2347ef119f61a3d3185071bdfd6ef8acebf601a329e91fb943def232fac66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3e594c26fe3d41d055a8585ae1c0df439d69a06a1c19537465f97c7102370f01
MD5 12d50eaf33de67d925b3f930f5bc7218
BLAKE2b-256 ea7fc5a0d09bfc7728ec4adc6e42718458e68691ce8014745da88ef0d305be04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1cd748309b1b13504b32228150ffb13f4243fd675d5126fd78c8192f704c7427
MD5 0c4ddbe4bf3c6a6062fe45ff0e4b5684
BLAKE2b-256 84c1f2eaf51e9641d442b90ec4dcf85878cfaa65ea93b400b4137ad81af6fca9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e18137cfbafe0bf8711205a32afc4a9023cef0f5273863b1968e101840fd6360
MD5 00be29960e29731cb8a23c42d2124e6f
BLAKE2b-256 6e3ee7fd2d25324bd913f958ca1b3605632fddb940fff213fbfa50465e359ad1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ce7138aa4112cf6b111909b06a9e1fbdf004c41c2bafecdd2b378920bcb2cecb
MD5 8369fd614f99806a22aec754b750920b
BLAKE2b-256 4ea54ad886515e34f1149ef5a1ed7302230635740d63ac09341b653bdc1b5366

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.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.2.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.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3edbe32b0b4706ae8f0c1475a41c393794e1e09ccf974d1b54aec90825be273d
MD5 cc8b88e8232f9a65c9202f2fe596c570
BLAKE2b-256 e3bbc48732834d15f2f3082eb2e4f2d5f854167287815e7f7abca5321edd499c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2fef5db450c7009762461076f978bffd5d0d7181dcd05338a37340aea5d51ab4
MD5 0918ef50fbfd725d359e6a24f29afb6b
BLAKE2b-256 2d2bbd3c29da6d1b9db42a4c3defeb4ca4fb68b60864ef8510d169d27f9ef5c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5ed21999b46f91877d2b5a35dc894d4738dda96ea4d479307acc19e0832edd78
MD5 866decfe8815a61a722f8998f1ed88cd
BLAKE2b-256 01ead299a7784c03e198a461b3f537a61c3769efa6c3f42787e7286ffce53c6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 194afadf44fee43731e946ca86eea7253f6a59439631c0554a423ec7b21307ef
MD5 ca9777cec463d03c47c2ce9b6ed9f083
BLAKE2b-256 9272660001e9e16c59ff55d2eb9b798b7f9f3668c9ca4ee7c3a2edb1bdd84b64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cd05c14bf2c56dd7151540c1a0e58c82852e9cd9276e0019631c6c20f65f5ca2
MD5 8053876cfc8305d95bcacb037ea135e7
BLAKE2b-256 dc707e7aad0c7fce7a7642dac1c958f82d96e481613b86d75c668f060c081f7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 627cd3434a437b5487e587c73b6f5acc505937cdca3b011f5a091bde7899ab5d
MD5 4913f4c09992b2b539cfba2bfc58c4ea
BLAKE2b-256 e93e3c60433c4b920a40a04989f3d43a2beac7b68dc2baee2d210d4dac8710a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5f565cb27db8a927c4a2e8adb7fb202020278aae378f7e431b6b729c24cff31
MD5 617658c1716d1965575a5d71b7c3fe3b
BLAKE2b-256 1694afe53291266bf89533a9169611a1a36fd6c0e40eef036691118a8cf51282

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6909842240c48c2004b94b585e505c802884675c2958f64d86e795fc44a07584
MD5 8d4cb02af3c809c1aa5b5ad99e906a08
BLAKE2b-256 dbc12b53eb411689677d06285d47848425eac6836896f42af0d3de07524850b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 5d6063cce81c0c2624d9736a9409f0675d23e11b741d239228e592caa9dddef6
MD5 e31afaa9cb7aa9139e0936a663a5a819
BLAKE2b-256 7707e35047809d5ba7dec5ef2ae260a14dc37cd9843fff4a3a7d90df0a6d1ad8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 4440ddb3b501c667592accc1ae9a188e043def3cbc9b664133fbc666324ef64a
MD5 e82b051bed16e6ece94e1b35f1eb1fee
BLAKE2b-256 082539454d280fe33c51a7040a473ffbcf1ebdd2592a765de89a652fd5e349b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 a85caadc8b286b0ff3beebdab41f87b8f6e6fb079e885691d1592a666239f3fc
MD5 ebc7487daad7c20f76f7b2ba05c0828e
BLAKE2b-256 d3468224bb283b328750147da850000d425490bb616ee9e57fb8daad045b88a2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.1-cp314-cp314-android_24_x86_64.whl
  • Upload date:
  • Size: 14.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.2.1-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 3b5017f48f5d2876661324b1040ca86157eeeccbc45e9904b7eb0b459d59650e
MD5 e4c7acbe4f35326b22ae5412ae796a9b
BLAKE2b-256 eb6b39e0f3485c859a857b980dc4e738f6f831dbc78129f0faf93c8242c0f786

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 8507fa7f831f08cbb550ff991d0f2d4a1921ea5da2ded68a84fbdad5b8e97036
MD5 d788f77143b98261b47b25a01ec98a8a
BLAKE2b-256 4b410cf7b8b74e211835c96c357147c883ba15afbf5e7b2f77e04fc7de86c145

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 14.5 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.2.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 1deb335f294b7443116d5b15426c8b11174a9f9972119a7dead805f6964f1fd3
MD5 0da2ac0080aa763e69eabda6138ee3c3
BLAKE2b-256 32838442a96727b5f1846a937350ac7e3336e08d6d43559ba579493d62624f9d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 16.1 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.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 16b2d14f1aa535940e5c9c62d22396156b3598f64c15ef30aa3fd4939d93b4f7
MD5 b9b6aaf21bc177bc9a614523d1174623
BLAKE2b-256 1e527f2422ca54a2ac5b313fc57259ea8264accb7c7c1c204a4a4b2e8f11397c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 14.7 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.2.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 47af9d6371f9f8a56abcccc4c7d8925f6f95b0bc33cf35d074bfecf9c587cfaa
MD5 38749dfd5c0b37a9211cde4f4116514a
BLAKE2b-256 59643776b9e4dc56692a63e1bc1a9d56d30a5756f90d278a25b99ba98fff3853

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 31d5040f2de04532aa01c540bebc8fc9830578811f38f312bb8f912a1e025829
MD5 1b39b87aed41281c5155088ff4eb5d1d
BLAKE2b-256 28c35208e8f9e2ac521c9eaf0e16830fc9a6f9847b1b982e9c3bd9c12478693f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 055d8772642fffb914f87f3a97908395d753f4cba2f39f642dfe31d2d3cd0ec4
MD5 88aaa9dabcb4f5a9214460aa85b41554
BLAKE2b-256 4b8e6241ee108dd129802d3831dede1e171eeccef8e003c6051e27895091e2ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5c458f0418540b5c50497bf86dfe5553d36911f44acac18958163c562dd630d3
MD5 e1374a3c8fd8a17c26fa7074859e1d5d
BLAKE2b-256 50be695fb587b1a7ccb3b893217bcbf79c8782cf9ec05053a1e34520a041524f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7dde7dff9c1ff05dda9ede7ec780a4b832aa1aaec5cee1c002f1044992bdc796
MD5 413a1a190598573dfec1bfa14c274ec4
BLAKE2b-256 e1cd8f35f8899221e841fdf61ee4c88e454ef42c8b552ea36d8d19e93ea31e2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4e42ad99a743ab4bdb1c8c05447bfc0a90dd73b1a458d5c761b9eaa9c2ed8965
MD5 abc8cf61258bed06abb7f09e959da178
BLAKE2b-256 24e4a79935daaf8d7f2f92b0260ec3e6904ec037858f044d57c3e3703e609458

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 02cd66737bc7010d072afbe522d02696e1a49f4810603aa3112699c19ea89418
MD5 955ac01a842cccfe00246c06a0a75245
BLAKE2b-256 92fa20cc9bbc2c0d7729af2f6c79bf6c0570c9924eac3a64b5b14407935a8a9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d7f95c71cd65a0f0783aa842b92ddaddd251973a87346f5445ade1bf9c3009bd
MD5 6c9309f3fc5eb162cec2ff986e3a6e83
BLAKE2b-256 6a19801341b01c4c08bc57bf4dc287be4ed32bd9f8b2075f3f183f79cf0e9934

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 777018681e5a9151ecd6552ab61a66ebddc1cbd850346183348e37f97c3799da
MD5 a2e857abb26f13df0e99f2f01197b642
BLAKE2b-256 e23e0bfbb0299cf2b2015a065bedbf36af66588f72badfdb9fc1f9ae6fec49be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1380117f8ade60bc62b1c1f301c85023e55b4234fbd0c9b7661a57f57eaf48ba
MD5 030214bdb0d72bf252ebf65f130c547f
BLAKE2b-256 ae24b1c2df5f5c171c336bf61dcd151371e27e88c2a8d6414390f6cbacfab2b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.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.2.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.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9654883745d99903d201dd94d0cf6b716f6e5e2b1db5a063ab36af1431db2956
MD5 f475069344ccdd44e05ff62af4e77f98
BLAKE2b-256 30b174e995adb13c12b8d98eeedea0764deef99992f4c5f113143f34c7634c53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c698079d95987204c0d1bbdcb8b15484195be7ca5b25ca8e854dd7debd28b87f
MD5 c4e4ae0adef18005c06b73d4ad305368
BLAKE2b-256 e1fcfd08bbf3d183a1ca6cb6b07ee599b5b68cf41fc70eb3f50ce29aa508112d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7750e8e0b39b9433a86066389596a64558ce9617db7b8315e88760cba41cdd50
MD5 d609d139d11eb4466144593b26b26964
BLAKE2b-256 93e3bcdba74ac89b1b722af0471382c2f3adee60f6d008000e6f02ed2bb3b860

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0a63b7c267b53aa141d8756a9a69902348eb766495459216a0d9b3b81b46d610
MD5 bf19f52c807a29f0fc212e4a1ccc89ab
BLAKE2b-256 75de03b4958cb064d9b8de27bb415f3923ba66558c36ef76e5eb056eb4b48f2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9964ca9c9b8afe7e1d6a738f1f3cf834c91abddebb0e3c14333dea79497772b8
MD5 af6a7dcf03bb6280706d8edc9761c908
BLAKE2b-256 b58455f2cbc1f3c137eb1786739c295a97e12d19a3d1296ab8e862b57d1edc50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4c97d3949ee42bc0fa6b4bf4c7b5de11738c51250d5ce69b5d7b3759ea75665d
MD5 ff2582c10a1f25e8de14571819826464
BLAKE2b-256 3356b1724f11c46281177a63802a94f922239e9cc14783c695511c59ff3e3645

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3559c6d357ac7a449b70fd06bf1b17a8460aff64657bad3671ef34e22d39a639
MD5 2c8fd01558f7a249d81a3a120d507f70
BLAKE2b-256 e464bc4fba9628ddcc0d431dd6f815a317f2d21b239b8bbab1f514dcc47ec8aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f069e9814ef21a879a26ee9614798716c95ae68dd1468650ef2cd3814ba12f0a
MD5 895ce21fd4244c344cb074883429900c
BLAKE2b-256 95ed7072ab63a617b87e7f8453d70128f7573ffcc39880b17d7780916ac60a36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 a5994db1d77af5601f29ed86b64955b4c786f284df72a9f687d81a89eaaad8e7
MD5 356d9a06cacd1661a7fbe2ca2ff46d83
BLAKE2b-256 1fdd1487c68cebedd7a9630b9794bc72d83a2f8270d56825652a7b4ef89f4a09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 65033e2b47d82912b736d502ad30122d8711dd173c5910e9615e92e755245a67
MD5 dc55bf006b0c3a3a59b0e786bd86eba8
BLAKE2b-256 97ed75f5c2dae66bdcadf3d8206efe52d8a4b5cfdbf6e0ecd2a1571bc4c0c243

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 f65299ea052b7595e1ac6a314616e89c8d83ac76413708fd3d6125032800f0d3
MD5 043bdeea4b1b9f1506662c15552a073d
BLAKE2b-256 6b9aef1338e8e74d95bd3e18bf5f94a0a68a5af7b14700a17261117ef8fd2fca

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.1-cp313-cp313-android_24_x86_64.whl
  • Upload date:
  • Size: 14.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.2.1-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 8bfe265f1720adef3e29efc953b5d2ee8c050072772fbf4f824f9b63370c6167
MD5 508805c30755934a3880050c11f6ae9c
BLAKE2b-256 b61bb272e28320a689f1a42045d68617c3c677627e876dda94c85d4af7ae4471

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 13cdd5a3f69ea75d081432fac928fb870c05a836d3a5cf10ac0c78fffe858bad
MD5 f6c116b948aa36d8e78e8d61d388bf84
BLAKE2b-256 37037cb9c6158ef61765dac329b2168562a8c169e2b70b16bec04839bdb50a04

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 14.5 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.2.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b996bcd924b5116c90b56b20855f0e3485b984b9121116e8a9393c84b90c7a0e
MD5 6586f25480a07b948d884ba1f983b5d6
BLAKE2b-256 b583e4d375a628a4627653c5e856567d9268d48fe4e98ea5a082bace8ca8f17b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 16.1 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.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 87a441ab00ae30e70d39d8fb95cb639a9ea7246e2d53c2bcbeaab11a0da1aadb
MD5 7d138c534bc3e4fd613c9795495e40c1
BLAKE2b-256 3a5f7efd1b16a4b3c0a7e6de4e2727776756cbaffd52943d40c091d5cdb79c0c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 14.7 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.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 db18e1cd7b282d4d16fcced0ce74ae277b42863e7d9216dbadc09be72f091685
MD5 c9a71cf10a9785ffaca9cf4d457ad27d
BLAKE2b-256 55e529983c8686cf709c1c7ef1165fc9677f53840abef209c5f16bd6b434239f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp312-cp312-pyemscripten_2024_0_wasm32.whl
Algorithm Hash digest
SHA256 0c2d718acf1c599fd37194e8b5bdc19d9efbfb546711ec651c84f6ae61f45da1
MD5 6197b11e9daad5f5b0b48a7cd13729e7
BLAKE2b-256 1a8f2298975c9d81beba7c3662f0ff38005c6206c23291c3b113bb697dd5ae77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd13b02add0e4a1486fa1f342fa1d19aa213d540c9bdbdd903e6c97c152bb5bc
MD5 43c5339b26b8e8911548629744885a01
BLAKE2b-256 7c7665b5389e8243652f3f6d4cbc147b27e4c26d388d20fb8b86c811dcd598d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5e4f9aac80aa93d90e052a37458f9e8145eb6b0cb04a58d5d73405d98b37af07
MD5 71ee7367f8b64452b0955c64b9273c65
BLAKE2b-256 f57773a659ad92551996aa533da1440a2721c22cd52d163f63648d251bafb50e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 faa2a6a79602f3bdeaa5a2ec80fab1746df109e47f441e34ee8c88ce2ba4c10f
MD5 06c3b644a1dd1977ad2d46405c64b4a6
BLAKE2b-256 b0ca74b8d7cb9981a383a825ff1c54b694939e174f437a9b0d85ba9932d664a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ae5572acd0bf4dc7df631dc389714da2885c735f1aed651e63e4044f6cd09309
MD5 8dfe7bbc6c6ce4195403d7552e76d31b
BLAKE2b-256 afeda9112fb5cc1ede5ef59ea2daf855403a3017241bd7ae5474703b67fe7f64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b4ec199a534292cde1ae101e7bff2315e765684aaa3b8894120592e8b3ef03df
MD5 6e29f8527141175b5d97981a385e441c
BLAKE2b-256 dfb4fad4de229eff859f24ec386bc4d26419af545e4ee89d43c45a93088db7d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 25f489592ff4eb1ab2a6cf28eaccfc7bc52b9fae33798864139adb5514c12c72
MD5 0161b4c886ce8ccf2422368ab0296a67
BLAKE2b-256 80dde32672684262f43a65d656c7ffd84bd07798dd4e55456d4997ae8a73a479

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59d4376319787fa38abbcb49b129d198f019c6d0372f7da8d534dff8446c222b
MD5 4670d3be41977202be94f61611f18927
BLAKE2b-256 7cb40cd2059f7cd4e2264e1474b28c8727d9dd89f827983ba9f0fd1f1ee6c287

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 78ff421fc2a36af1ec629d5f14b6d626b79cd3713c73cda417258c4298b11620
MD5 38bf3a4b9245044b3b6b77bff95c83c8
BLAKE2b-256 678f86d5a54d7bd24e5571ee6b1633200f75aadaa30078e22546b83050681fb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.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.2.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.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d66f159f2bf187eba48488216940a231254eafaa7fee90721ad28d874ed7fe72
MD5 8914aaafa722df5a25e309b946652267
BLAKE2b-256 01b854f6e34c4e2ca6f3231d50ee7e492596b2c685038ec6719b9f154cda96ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 739b8c945983a1342ddf499d7b8b465c71551beb95d043adb0e543c35338aa60
MD5 519ea1daf07f3d17cf97f2cd0beef488
BLAKE2b-256 6c3e2d3eaa151f43f25633f73295f84965090c02e195328aa88fe59002cdcb40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 aab3e5f102ff7d7515172ba8a5337fd4ca45a02f9c978a66926792f6449d71d5
MD5 ca21308e28219cf18d2df707ad297916
BLAKE2b-256 5c6108960f9d497ce9993d2db1389403fb7bf6084892f1e9414c15b9090fca26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 dd370a89dc637ebdaffdfdee6b955867fae503417dcb76e0dc14f7fc5f88cb02
MD5 c9c42ff2b70ee66b56f6fb3dc203ebe8
BLAKE2b-256 d5cc5df6fd1488c54d4518f148a90ddbd3524b811f4924884a1c382583068e28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6306ea53dcaaa229490c88e2dcb0baa6884e644f58c8d778dcbf65da7e7e7ae4
MD5 04d8394358bf751c94edaf5ace5afac5
BLAKE2b-256 81b8c40b550ab0bedb61dcdb270628875591b33b54c70c4907fa758c5f0d938d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c50978e11220a4817fe5a9f78fb785af8be041685e1d08e40bbd226d0206ef70
MD5 99887d3cc31b913d46cd7c593430a534
BLAKE2b-256 4de6fa49de70c296fa3282ea28bfa59a68957632f2642ea8ebad82cb6693c733

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 325f80f1f33a1b3b754d9784cd660b2c567718deaf7ce2e8db7d4a67eebf1e76
MD5 aeddadd2990f0e62bb453836e645b8fe
BLAKE2b-256 d758b39cacdad4a53cdc9ccd6fc7d35add386be0100e8786ddc7a2e5673c0dee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a44758e9235429d8326660516e88b8dd44fcb11b9693534480705403e663d62e
MD5 cf341f94a9dfe01fcccd4ded3ff7f897
BLAKE2b-256 043954b22e928d5520c3648491f3423355b83f8aca89396f8aa87908ff399014

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 14.5 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.2.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 222abc7029b4da6985ec2b3349d3c1fc39612f0d77f069089a1914e5709c0fd6
MD5 794cb236e497fa66e5aa79aa04369c6f
BLAKE2b-256 df0f9337726f4f2c55a9f1630f90f9ea5a8ee031c59686e8321db0b6a88362e4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 16.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.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a50eb435d85f26dbe45a813677024b33e714ec9dd8da778a5fb969c3e9c0eb05
MD5 ad7908a7be1458500578e66d591cd287
BLAKE2b-256 32beb50801cdc42e74b3b34c1779e0d8a121b3174102621e11a06e37a06f2ed8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 14.6 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.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b15251fb33ab7af1b6824980e252fbea4e3c0c6d16c175565ff97db909ea153f
MD5 d0a1667863cffb58aaa9659a54f321b0
BLAKE2b-256 5f21c3cfce35a9389c4f892a1c6fb18d8fc71a1267df7167b237d75f3eea99c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c4784777635a2708bb582069dab39aeba78cbd8196119248ef6215b08a99ae7
MD5 475acf61beb6c528be79ea7837e008c7
BLAKE2b-256 47eead1ef8b628240769d02592fa130c40254a28c789af5d3b3eeda2d3a53a8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 47f6268b1ed7255ac6f7bdcecf86dd9834a7f4c8e7c114f0962ca5f47ebb6546
MD5 06a89b01c0643f3697aa438a42de513f
BLAKE2b-256 1d18d0a41b6946f681d512129426f57f8a77bd7b51f682d8677e2a076a630cf3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 564cc31b2975f29ee1113de3311e013e2855741c283b172a89de533eeddbbb15
MD5 1317fb26772d138054ec397cb242b05e
BLAKE2b-256 3a346f8b9333091d00cc0196cf8afa63bd734b3a2f0f2376b68c84a56857b90c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5e0213c2e13478befbf4ce62479db165c470bbe79e67eae39182a9164d369885
MD5 5c4e5ca3f1fa526a00e670b946579d4d
BLAKE2b-256 7912894bd675f7b67299a4e335c5ac6e9d39c77c2b3ee1b474ad873796778580

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fe06b4862d1abef92bd9b295ec03c3adc39e45307723eeb08cd10e012f8aee62
MD5 49344225baa34f5f52f87c3a124b37ac
BLAKE2b-256 a17f4847a827dd3a3d2b405b63e92c69394f673ff58f5a5e4d2c169279697b21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a43608421f3ca8222b3b9b7885e6ac29644f0a20a159a601be32d947bb8b4341
MD5 c0c08065b025b0445884bcdb42f13811
BLAKE2b-256 bb437858a4084d2ded9db89c0637f755d480847ea5e5af8d10ed43020258e105

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 976a4237470c89758b56030ba05b781ebca8d7a77ed559c343da4ec8140b80de
MD5 adbfab02a5ce16a65563564c6ff40ff7
BLAKE2b-256 f0edbfe45375cd01b5621feccd1c7f23483bde34a71230489fc8267bb36f3a4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3204ce318fbb959bdc55dddd9adc84f3ebee6311dbce5f14a93f7ef14f5cb6f4
MD5 530f7ab6bf0e61abb7e7d52fc725b490
BLAKE2b-256 4269f705c24f8a00017d2fce9a511da733ed5db61cceb15a88b49e4f1ea161c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.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.2.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.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f0bdc38ed14a0c978dc61997a88412aa060f8959396e9762aa4c5f929799ca1f
MD5 b6f83baebb890c6244e20a3faaf778d8
BLAKE2b-256 e8cb16b0afad1374f6d5175c2cbf9c1b82e675440820c0c43a14839ce9a4ad70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6b1e2bd78b6d28c13ed096cc96d50798ff79a0d02d6d17aedc2ecbcb64474809
MD5 5e2ca3f333c1c078b50f928e9a26f607
BLAKE2b-256 339cf90efda649f350e976670365aeb6ee5f5e17550d6a0e417e47e8f0bf57cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2c0207876397c6e18510eb985d4b8a0b8528c3b1ff10b7c856c716c8d335525d
MD5 5164f62a60f163c1a068c4d2386fb71b
BLAKE2b-256 253655650dbeabcd574ef02fa73b7b3ea90bb07254d2439822eda7f8b855f0c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0dab4b9c900d45b64458824dda88e8df0c3b23dad9110258f48ac6c8457864bc
MD5 09312403634cd80b4a2b168f27799bc7
BLAKE2b-256 98534c36db2b03b3399e85c7998eb66f0579046e61a075be7ab46c220a5303ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 29a7a3e232a439798ffdccd800d7666e4adf226508f74716abce3d23d99384bc
MD5 230429a291b48533a144f0bd8ba86c81
BLAKE2b-256 dff324e38cc0ee590a41f74e17030ce0cb7d6f968cc5559a9d30c2e95adc23e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c78b4b6ecd669c2401da10970120bbd300f93f3f095af530ef820edbc337caef
MD5 62ac0100fffc400527f2aaff65ec82df
BLAKE2b-256 b3e65cf911f688cb2e8a26d1ce9513e4265118a747ff4c9be934415fddabebff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a4ac283dbada8fa04f69d5a9618f1edf892062167e39c61fa7463c2ffd04bf3
MD5 7377fdcb77e9d86ccd14baec5d1016dc
BLAKE2b-256 c4fad288035e0a6693df0cccf577730eff794dc7a4e48767166fb2d9683c869c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ccbbef9fe17171dc9ebfafbfa3d0f03297ed3310a8042a30b9ff7220ce0a473b
MD5 09ea8bea31661d27930e8d3e959d58d5
BLAKE2b-256 8c7b0e285f4f4c991449f0f0c05e11806d432ca3522a48dd8a8189605feb5dc8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 14.6 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.2.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 4ab6e3e4f1af3e1a0409cb95329240265037ccc4992894156ba53c8179061eb6
MD5 d7f69b3e29ffc2b6c0c4fd52e657ad2d
BLAKE2b-256 a63a57d14772521b439c3f605a31a2c4f5db040a825833d89e8013845a03cdb7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 16.2 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.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2cc582c639993f71103de8730851780a39582bfe9ee8692aa5a9d5a733734191
MD5 c7cb01d7fb5115c7323d98affd471e27
BLAKE2b-256 e92fa398db8dbe8ccb2a455e55a0e25ce6aca93d70fdf967534f51dee28675ae

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 14.7 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.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 22e13cbe62a1521504c12a76bc8f5163a735d51b8c39dc38e18a4549876a48fe
MD5 e2a5a059692d0815ada607377b8bcacb
BLAKE2b-256 9424e904f44b3158426cae9197f2b8b79c6cc7590e4ae99501ecb42dfaadeebd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02051cd55ffec3d98e37aeeb74209d3ca13e41e90ff90644236d9897f15c9a8f
MD5 67a85d1f72f16c85366515e8c36426c0
BLAKE2b-256 e846ddd410e93a9d37dfbfb179c407dd7c487759f023e687e02486f82345c669

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6f9715d9e2f6bf7f65deec0d4c4cc39bfae7cdf6d7c99168932cef166b6d12dd
MD5 387605ab1806c773438ca639fb5e4e67
BLAKE2b-256 d72fcb06d926d0f2ce7857bc809d60e85503f83ac15a66f1644f48c4c3338de2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2502dcbad319f3ff459a83b2fbb779b03b049d1809185bafc43d6a4372f7ec10
MD5 79c846f206368f76715a575aef64ff29
BLAKE2b-256 e05150251af50486f512ed0160e7481cd92c9204ad8d3b1befc639d844a58234

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 901825bf789061d37b315c79b6f6838fdf0f23e52bbe36bdf4b91a91106c09a4
MD5 71a61ad568172c1aa4ecbd617f83b1f6
BLAKE2b-256 6868a81f083f6a3cb4273817be5503cfe5b633b7611ef5f5079cd25d60c14e98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 21e67a9182a227098d1b0b4c8ee7eb4c1b22d9b0377dee0f803925b5412872cf
MD5 9ecd4a26f68597aa14f25691d4b29838
BLAKE2b-256 6ae40a27b51fb0488811e08cbfb34d83a2c409d7762744f08c71cbbcc18445e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ffd07546be0babf2df76d2cd41c52b9b01263789ec9c41a85e9b164fc690fac6
MD5 acccf46fe949be296efb4ef30b3dfb28
BLAKE2b-256 379d834159dba75942ace3182e6f213ea3c9520eb7b1d146a7c764af921f7be2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2778fe6c65b84b99c01f388ff5b3c4cdf969920465d0bfeb437eaef3844df6e9
MD5 a604a56609ddea449134fb51629f3d21
BLAKE2b-256 63ab67d073e750ccc6a332dd41353552a01bc62f7a6e71223f9217c982763c74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d692cea2d5662646d4c277bfbbae8c85a28e49271f50147e97afc158098387b2
MD5 a72931b34439bd44ce58981219204fd5
BLAKE2b-256 535bed8ae75b58ea888481129723ffc3edecf86120bdce6c946a4af74832ff30

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.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.2.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.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e2d417fe0160579db08f0aace76d7e23a300f5f04f914a3d7f678bce20c5f3cc
MD5 5a993894e9eea12498669e16b0ede310
BLAKE2b-256 f8e48578f713e3be5a94ba9d8f88fe95e942786f1ed898c63e0313ea8907c3a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 78829010b8e5bfb89aef88132396cc5cb4c6426faa7cbc99fbccd73e9ba28523
MD5 0ee55f46fac7ab74a2ff280d756a793f
BLAKE2b-256 876d31b2afe4f986e95e8a14d751287bea00e3fb9b7fb9e3fa1d279bf9399c9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4149da3d0651ac586d471c2c8b2f6fc32f35c75878a63d96af979c966accf4f4
MD5 d2a07d139a86f3b5a286d838c3f48e43
BLAKE2b-256 f40ec9ef0e934c5c14cd1ced6aa893623f192035b08b6c6dc1d2993b4b078072

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 9a7d63c7f33a8266dde211f8b271b88b83678bf1299c7a0bf0bad9b0dbdf3da8
MD5 a551f08cb425556b7dde68d17b23777c
BLAKE2b-256 2d2fa0a97f2ce8f6fa4e553e8e38ba4a3ca22ace21bf7d1e6c72962622b86ec0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78d490f4641264c98a8bc48296a9a209890fec434f280932f57a0ec94614048a
MD5 33568b0025275c155d55773cdf6f1be2
BLAKE2b-256 6a16bf54840aec9b3ebc7c15afed72e7eaa48ceafd8971a511585b589478aa09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 709a8e33a123d5b5223e3b6683a108e261087add060f89ac76c2927ce201cd7f
MD5 d123c1084f41cf4223e1f5dad2990a34
BLAKE2b-256 f058fc56105370e40dd5409140177f1344569c6329ffbd5326e493548450efda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebafeee4038a11fd6acdfe375386a4c712903618a521a2e19c9ae067132b0563
MD5 78c25da054c9df32f3ffb1d28aa1e3f7
BLAKE2b-256 6a98e48222ad58bd940c2ccb14dcc1da407cc3a07f7e171c59bfc881b6a52a10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c200145bed47900199d1c98daeebd1c8d445eb67dd375bf9f05bb255b00e7492
MD5 28390a8bde25eab365c399d6bd8e7481
BLAKE2b-256 c3149d06f448659ca82e1b70fd9049a3d7b23e6497f3572026da6dfde278d018

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 14.6 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.2.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 2ef9deaf7dd6e5544c961a2a1d9b1b45d68ac2a56eaf17b04c619d20cfe298ae
MD5 9a79a4788f24865a074ea42ea092c471
BLAKE2b-256 3465821a7db29725f8721425de4bc4a534648b41ee031e15e8c271470a153c86

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 16.2 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.2.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9a734ee217d7da77bceccfdc4b856419c9fe5a65492464d67846e916ac638f25
MD5 e753910a1faed58216383b341035ca3e
BLAKE2b-256 19d7ce7b357e706f5bb178a1467f0157759a4a1fccac5e955a7f41a1658cfe19

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 14.7 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.2.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 47beb2d344b74f5b2c29236a3e29fa87d07b3e289389d461338ba8cf41a10f58
MD5 7236b7811a18cf9038db599d005a988b
BLAKE2b-256 ebce6a00ee897396a6bdf27e72970f0306e9a47da1b9a799ef5e272f2f43eb53

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 48.5 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.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 96909eb12eaec610062dd6137fcf40e84fa140ac340c1771e920b53e3aa315cc
MD5 fd331e125bd8b28bd6ec5aafbf56a354
BLAKE2b-256 9878a803cd4dc4137ea9380a5563c1701155911d69cbbaf34e21c89570a61cae

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.2.1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 77fe9e527b74e7332eab3eafe38fdb2c633eaae234960b571880ba3e52eb6334
MD5 b9e0b290cce5ac14d283c46a73d6597e
BLAKE2b-256 bee6365a65890e7e1502438647b6f26eb429a2223e8523920f67ff8f979d0c76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f406072452b0afb0af9fc8156abf46b78719120c149cf84c002eee36cf34766f
MD5 85cca41dfcfb097db631b868296123c8
BLAKE2b-256 d4c8e11d5a5cf303374aea1ff6b699feb96c66081440145e1a923649a3c9af63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 14eb248108cbebde33890a8e51a24d1372234b5e6e4f7dbcec52262b27193e3e
MD5 866b8ee4f9c36b97f6235567189e1a6f
BLAKE2b-256 726f6a6b96ac180410cd90661d47a203c354aab15babbc8f66b4ad4c2248a8ef

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.1-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 46.1 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.2.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ef8aebcb2c62cce4f11cce94a6be3df2850f6e86eed6fc4e83e340a63b262ded
MD5 424db23ece38289546ce5b9c2ce2e601
BLAKE2b-256 86c39ce707c52cae52aa69163b659516bdc057389612d58129a6b63fd394fac2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.2.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7722191fce1725d01c5b8761e5e5476a9355bfbf5bd61404b8722b3ef84a6962
MD5 b508afc857aa10617e18bf894a123e64
BLAKE2b-256 d183c261b86a62d728e29184a6b505c8001fbd9455b0662aa5245319f26e9685

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a58be1c7e6428ddd28d3a423f43272d576b8aa79752c6dece121f934bd103c1
MD5 cc0357651b3c6df26fd8ae7e1b3dd8fd
BLAKE2b-256 4dcd6624c63de10588d9d5a3e77f0339fac2815b9ce05be03b11fede86343390

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 6a0d6ece40d35e93da2274a6b3106877299b31756a5162d9afa083e488d8dfd8
MD5 8cb4150e4104aba9e9eaa21b1e32c5c4
BLAKE2b-256 4c7cacdb84d45fdf8e44db953cc994c2b02e6bf51e4e15440727b1097dac40e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.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.2.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.2.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8835eb4d9412d1557cf08f05eec912e7ed664f84db8645348a23b350f86a8105
MD5 4a3b69c07a65c75df6502c00cebca796
BLAKE2b-256 0cb47e9cdbd4790e559449788ecb638a3afb3f25db3dc896918b8be07ce206df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a9167505e2d2e56f40923b86d9ec80695a76d4240afc413b928c8ddc3819b413
MD5 3a64c42fb7e4dcec1c1a9f68ed53e019
BLAKE2b-256 e016e90a45c94c5ae19db160cb65c573a5e21862f9fc938bb1b7b7cca85977ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0a5abedc0ad456bb591627df09368417f9b74b13ec540ac2b04ea6dd4faaac2f
MD5 5398c38c291f829053875a06beae7b7c
BLAKE2b-256 7c8380fff7c24b0e30e8b514c184c7448a6eba91547afdfe09be15d616966d32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 fdf2e0d84652d290299a5f41d64cf0c69f30c47f3765ca57b624f9a5ce55b7ab
MD5 0be79d9f27246ef1d9320ddca5b54606
BLAKE2b-256 6898d8175128ca044f0ff8c19bd66d883bafa2d2b361706cbdc405d28843a347

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7aaa4e8cae789c96a6a087751d5d78f808ba1bd079a8d5e0cef8851fae3f41ff
MD5 db01500065ed8f9cd96369218dc27acb
BLAKE2b-256 5e485c29832622aa09c0a465cb27a0a5ee48c7160b1a9fd03ca28e6c42403590

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 8525cbdf7670c3d94c8dd1a4a0b6fc7e3d5a0f2c12e0fcd5719790ef1513ddf5
MD5 8d44c5962ab7b442c978448bc3dc5bbd
BLAKE2b-256 0a2b63ca233f44defb11f6a4bd3c2fd03ab89ed0e59c8798979e3a4076b973dd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.2.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 14.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.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d213eecbe8d6e13c7911a06139b0bde7782f72fe49054a71489df32d2405d98
MD5 fabc94b5f85b8fc62fb0598592b3183f
BLAKE2b-256 46d482b0a6b739312935afd417d2f04c0def1881de192d4ec53c83e2957af601

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.2.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 01b6e82f8d2a646f61e825ad815d8f0719db5e240b2843cfbc6a1c17a80cf21c
MD5 11dd3c7371ede5d5993bdab547a4933b
BLAKE2b-256 5a69a2c793b207373e21dd9d83e80b22fb5ac7fd91b2f9e59ea3cfd237de4118

See more details on using hashes here.

Provenance

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