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

Uploaded PyPyWindows x86-64

xxtea-5.2.0-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.0-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.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (15.8 kB view details)

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

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

xxtea-5.2.0-pp310-pypy310_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.0-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.0-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (15.8 kB view details)

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

xxtea-5.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (13.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

xxtea-5.2.0-pp39-pypy39_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.0-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.0-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (15.8 kB view details)

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

xxtea-5.2.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (13.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded Windows x86-64graalpy312

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

Uploaded graalpy312macOS 11.0+ ARM64

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

Uploaded graalpy312macOS 10.13+ x86-64

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

xxtea-5.2.0-cp314-cp314t-win32.whl (15.3 kB view details)

Uploaded CPython 3.14tWindows x86

xxtea-5.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (56.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxtea-5.2.0-cp314-cp314t-musllinux_1_2_s390x.whl (61.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxtea-5.2.0-cp314-cp314t-musllinux_1_2_riscv64.whl (50.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxtea-5.2.0-cp314-cp314t-musllinux_1_2_ppc64le.whl (59.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxtea-5.2.0-cp314-cp314t-musllinux_1_2_i686.whl (55.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxtea-5.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl (57.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxtea-5.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl (56.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxtea-5.2.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (50.6 kB view details)

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

xxtea-5.2.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (56.9 kB view details)

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

xxtea-5.2.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (66.2 kB view details)

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

xxtea-5.2.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (61.4 kB view details)

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

xxtea-5.2.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (55.8 kB view details)

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

xxtea-5.2.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (58.2 kB view details)

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

xxtea-5.2.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (54.7 kB view details)

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

xxtea-5.2.0-cp314-cp314t-macosx_11_0_arm64.whl (13.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xxtea-5.2.0-cp314-cp314t-macosx_10_15_x86_64.whl (14.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

xxtea-5.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (48.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxtea-5.2.0-cp314-cp314-musllinux_1_2_s390x.whl (56.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxtea-5.2.0-cp314-cp314-musllinux_1_2_riscv64.whl (46.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxtea-5.2.0-cp314-cp314-musllinux_1_2_ppc64le.whl (52.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxtea-5.2.0-cp314-cp314-musllinux_1_2_i686.whl (45.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxtea-5.2.0-cp314-cp314-musllinux_1_2_aarch64.whl (48.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxtea-5.2.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (46.7 kB view details)

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

xxtea-5.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (49.5 kB view details)

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

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

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

xxtea-5.2.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (53.9 kB view details)

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

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

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

xxtea-5.2.0-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.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (45.5 kB view details)

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

xxtea-5.2.0-cp314-cp314-macosx_11_0_arm64.whl (13.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxtea-5.2.0-cp314-cp314-android_24_x86_64.whl (14.6 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

xxtea-5.2.0-cp314-cp314-android_24_arm64_v8a.whl (14.4 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

xxtea-5.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (48.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxtea-5.2.0-cp313-cp313-musllinux_1_2_s390x.whl (56.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxtea-5.2.0-cp313-cp313-musllinux_1_2_riscv64.whl (45.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxtea-5.2.0-cp313-cp313-musllinux_1_2_ppc64le.whl (52.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxtea-5.2.0-cp313-cp313-musllinux_1_2_i686.whl (45.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxtea-5.2.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (46.6 kB view details)

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

xxtea-5.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (49.4 kB view details)

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

xxtea-5.2.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (60.3 kB view details)

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

xxtea-5.2.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (53.7 kB view details)

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

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

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

xxtea-5.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (50.1 kB view details)

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

xxtea-5.2.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (45.3 kB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

xxtea-5.2.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl (13.0 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxtea-5.2.0-cp313-cp313-android_24_x86_64.whl (14.6 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.13

xxtea-5.2.0-cp313-cp313-android_24_arm64_v8a.whl (14.4 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12PyEmscripten 2024.0 wasm32

xxtea-5.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (48.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xxtea-5.2.0-cp312-cp312-musllinux_1_2_s390x.whl (56.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxtea-5.2.0-cp312-cp312-musllinux_1_2_riscv64.whl (45.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxtea-5.2.0-cp312-cp312-musllinux_1_2_i686.whl (45.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxtea-5.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (48.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxtea-5.2.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (46.5 kB view details)

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

xxtea-5.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (49.3 kB view details)

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

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

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

xxtea-5.2.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (53.6 kB view details)

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

xxtea-5.2.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (51.0 kB view details)

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

xxtea-5.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (50.0 kB view details)

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

xxtea-5.2.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (45.2 kB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

xxtea-5.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (47.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxtea-5.2.0-cp311-cp311-musllinux_1_2_s390x.whl (55.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxtea-5.2.0-cp311-cp311-musllinux_1_2_riscv64.whl (45.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxtea-5.2.0-cp311-cp311-musllinux_1_2_ppc64le.whl (51.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxtea-5.2.0-cp311-cp311-musllinux_1_2_i686.whl (45.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxtea-5.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (48.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxtea-5.2.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (45.9 kB view details)

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

xxtea-5.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (48.5 kB view details)

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

xxtea-5.2.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (59.1 kB view details)

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

xxtea-5.2.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (52.8 kB view details)

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

xxtea-5.2.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (50.3 kB view details)

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

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

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

xxtea-5.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (48.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxtea-5.2.0-cp310-cp310-musllinux_1_2_s390x.whl (56.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxtea-5.2.0-cp310-cp310-musllinux_1_2_riscv64.whl (45.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxtea-5.2.0-cp310-cp310-musllinux_1_2_ppc64le.whl (52.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxtea-5.2.0-cp310-cp310-musllinux_1_2_i686.whl (46.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxtea-5.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (48.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxtea-5.2.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (46.6 kB view details)

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

xxtea-5.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (49.5 kB view details)

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

xxtea-5.2.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (60.6 kB view details)

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

xxtea-5.2.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (53.9 kB view details)

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

xxtea-5.2.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (51.8 kB view details)

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

xxtea-5.2.0-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.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (45.6 kB view details)

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

xxtea-5.2.0-cp310-cp310-macosx_11_0_arm64.whl (13.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

xxtea-5.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (48.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxtea-5.2.0-cp39-cp39-musllinux_1_2_s390x.whl (56.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxtea-5.2.0-cp39-cp39-musllinux_1_2_riscv64.whl (45.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxtea-5.2.0-cp39-cp39-musllinux_1_2_ppc64le.whl (52.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxtea-5.2.0-cp39-cp39-musllinux_1_2_i686.whl (46.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxtea-5.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (47.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxtea-5.2.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (46.4 kB view details)

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

xxtea-5.2.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (49.3 kB view details)

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

xxtea-5.2.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (60.4 kB view details)

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

xxtea-5.2.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (53.7 kB view details)

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

xxtea-5.2.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (51.6 kB view details)

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

xxtea-5.2.0-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.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (45.4 kB view details)

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

xxtea-5.2.0-cp39-cp39-macosx_11_0_arm64.whl (13.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xxtea-5.2.0-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.0.tar.gz.

File metadata

  • Download URL: xxtea-5.2.0.tar.gz
  • Upload date:
  • Size: 21.2 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.0.tar.gz
Algorithm Hash digest
SHA256 43a0dde162af8ace523c0a3d3ba4a527aca959b45f80a1c02b141796bb7cb24a
MD5 7bf6d1b06da2fe70b6fa58fc361f792e
BLAKE2b-256 4aeb30d16785bd2c4d8f29b6d571c15ea1c7a248ffc1811ee1bea146fd567340

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9c1be81d820d298873da7ff1c9316b7b892e83207184dfca80e5f2a5f2b74766
MD5 d2b4bc4f287ca5c395b3b51436bf979a
BLAKE2b-256 8d8f4a6c1ac84f4f60883584c4fb8b684e5f8c6050fe4d11b57a104ec084ea2e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 767090fb110f6eb30369d903892dc988d4881ea84de8b7719968ffe11074340f
MD5 ddb19e37e66d51f17e3f417eeb0c207c
BLAKE2b-256 d62cce2334cdb95fc45d9a050c37d00b185b754e1f8f3ca1315e127d4bdf614d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 351038f2da3e98bb8a3fa74a1874442e15c6c7f9da61a352b3c4bc480bf6caed
MD5 61c2d579a86663ae9712ad858508a08c
BLAKE2b-256 67776d182597bab5e85f9de79615b2d189ec9255b550f245b722dbbdbfc29332

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a1eda13202562cde27a7c1f72f6ea7a05025777c30b016581c8ffb8520ccf792
MD5 5fdbab16efce427b50e16fc7bbc03119
BLAKE2b-256 01d0ebadf59c11308a4d03fa6fd2ea323a99ce8a85baaae1e815be9e522e7145

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c23a4b4401486c7b7ffee27225c6adf3c7c94ddaff845330eaa1a1c554b885b3
MD5 196cfc5ce8562b639f9ace7f3662a591
BLAKE2b-256 4e0816f7c7eeaa70df1b0ebe6aae8d23ab1637fe6b9918263532a30ef384eafd

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4b8de1f9ef7bcf437cf99c20c5f52c9879a58fa203364fcc04be462ea46de916
MD5 83d205dc3e8014d856bb95ba222f4060
BLAKE2b-256 c5eb9ef70f215161fb1a4f560add6e16cf47de9893ea2e7db3d8a67d9e91e3b1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4a0b89c2e88cab02fa55467d0b86d9a01f24afbab64c42af57de45e646b1c0f8
MD5 72769a08b85aca062ee36b98a90c7e4d
BLAKE2b-256 b85881c0e1f3cea4ab4fa2e65724eb7145ad0b15adea0d6a5123015d39b778eb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.2.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 49c95a253dabaf47598424edb962d9ed73e36d184fdef78fda9a0ba966a00089
MD5 3db5e8850aa7c4281f7f9c0277f7f8da
BLAKE2b-256 101090189072869d6b8ea90185b8a20a69eded775945460cb36985b032623940

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 543a6a20e3289303955fc8a5e87dcb3a815e0660821829264469f8ef6c3dd724
MD5 d1e73a737bc61093425cc11c524dafa4
BLAKE2b-256 697d831dfe85dee57e996a7f6ad4573388e4d1f51569a4d4deb9d50eb3989d64

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.2.0-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.2.0-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 1ec2042012b9b5cd36bdcc3551697b6ffd86a04758337dcf2809765559835ba6
MD5 ee67c469f25ccdb0994f39619d6955c9
BLAKE2b-256 9ff2733891bd8651ad1ade65a928229cc4c36b50be3d7067a4e3085982a22a6d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05b8a5a9d0b5600af70e76f673238c8b22b40fafbd5001d98b811b1e95e496ac
MD5 c20183bf194f02c94c42362c845e6181
BLAKE2b-256 84fbabc2483c6285d338dab8ebf52302d41f73b8b6f66a7c6bf83f11923f4153

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 aed0f838017dbd844a4da60a8f13cba03d244b5b33cef4e8b38fae95e9e48a61
MD5 87735208bbcb829ee4c921e47781b56d
BLAKE2b-256 c44b5ae952ba99f3c6d3693f4cff64f6a3dbd39676a987d4e330fa551be57739

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c641ae2d434af7eb35a4b43a2d3a339b8263013ade396ffba5876ec80cbef814
MD5 fad437d766c6ca70bdf55cceba29c869
BLAKE2b-256 77cbcb06f1a31747e8d5fdf8d2a1eb0c0aac409539c9833f6e355d7224341453

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.2.0-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.0-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 22563dd36ce519717796ea1d2ee1419c17d9b0239021674807ec3c356895494f
MD5 f15fe1b64ecfc1693aaf1611fa94c97c
BLAKE2b-256 6be8537d0ea00987fc43d3a592f459d37097b193139d4d24ab84c4e96cf48597

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 962aafa7cd768ba8b41318968d48180701893e4c1e71c836af2d91489eb3149e
MD5 447641977f7ae96ae3271abb85aea33d
BLAKE2b-256 66d00af7ee763f8566430ede11e168d71a8ea6eb66521a39bc629e9169e114b4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.2.0-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.2.0-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6986ddb7676d008472f03845bac71f32cf5598eee5dc208d2d8f4f5cc9469da0
MD5 99e3a27bfcb8388578a3c3462eb384ed
BLAKE2b-256 dbda8b350f73ba6b0640596c6286b0b00f292b8552a2a59bacfa666248d272ba

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 220cc199bb9d69a3713b17ab5ee60d2952621fac92f9215624d28277fc9660f6
MD5 9e42a92af97d17d86bff378e3d651a60
BLAKE2b-256 50db56eb9ee5c9b6864d193d210571d74b62c817a28368e42d155bfb34051aca

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e237ef0b6302fbd86db544a77a43def3114efd4b987b3206d8cf5f70e82e4d52
MD5 6a1d74c548616e2c2dc118ef072440ae
BLAKE2b-256 a35cb0fae1f5ecbccafdc503d203f88150fdb7f7eb0109d4bffacec10db49aaa

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 2104bf560a0de81496279729d1ced5f8359b1419b387d9bcbd901224f80b328e
MD5 75e20f7ab8f3bc8427132adcc8da3f45
BLAKE2b-256 88294b0b7c2a8d98e446f64e3fa165230833b50a9070bc65506589fee19a1f73

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ec32aca6e54aa44343b4c38404be81856e6f42d43ab0db4fd3caa75a3bc26c2c
MD5 870abe25ed99ab67dec4f60c4bac8212
BLAKE2b-256 95aee11813eb584bc52cc6d3a890d1f49efeb8eeaedf4485ed07242271f3abc0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d60d10525f250a787200778f3068bc031341783dca05a93e225bd60fd95ea037
MD5 fad4b91caf793a5d8e4735a2a25525ee
BLAKE2b-256 aacfb0b15773b555056643655259d8cf73ecc539e0300555725959fa9ba3949e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ceeb0ed766b8d05b193d92e74d8c320aa096251c7b79bcc7741926e41fe5a078
MD5 a8811639bc47a47695b9f6ed3e297cd3
BLAKE2b-256 5dc6377ef046a007118872a72eb279bff51ff8947a1752b7be1e08c02de52828

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2c872c043725dc62e8a62a90b252974bd79a4e0c4a1a48081e578f029257b9f9
MD5 49588366b87c221063016ca1ff0c1dbe
BLAKE2b-256 00495352127d0f1911596c005c21c328e151f5d5467822b569f643bac62c5deb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.2.0-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.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 b2be2f1d54a769a7427be91ae5d269f05c81524cdc3f06f8b3091c54acf3a38a
MD5 bf1d98798425ba8ee1d8953e65577dd9
BLAKE2b-256 d046f0634e1835ddfd1aa72451a62ae1d210485404bbc0c25471b52f66b12642

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.2.0-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.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 64718bd51e11471812e307b692aa92e8f8ff23d384ed842300b23d2e13ec0c40
MD5 98306c9803468528a03dd6c41f4ac08a
BLAKE2b-256 1def826e836ee796aa8d87b102c467b925ea26706def7d611ae791a2fb1ca0b1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.2.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 15.3 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.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 4c362b85f4dc8cc95b805fd2e3829b97a2650ed718a7530fb379e2f2d6538125
MD5 aeb70aca99f7c2f0451d04119b9b464d
BLAKE2b-256 2d57b8844bf38750d1a9604a1cbb3f725b751805cbbbbe4a8ef0f5c90bba1058

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a5361b496397969777c43401694490dc9751697ca3cb668ad6938f0308e839f6
MD5 c12d47e62d59f85b21798158527aa633
BLAKE2b-256 f64f239b03d5ba23392729cbab03ff85acd84c73c4b5db2718671d4aa7488986

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 794b54f649f94058c6694d6dfd1ef93b278d012c4ed4d9b4cced77cec3eef426
MD5 02a13e1c4c3d0bfde9e0b156250f676b
BLAKE2b-256 6797b305e914f6b332316a8a317e14f825405dfb4f505863766eb95bf32e120a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 449fd499eb3d6a64da65f99e555d92d40784e97ba6bc3485867f07c9e6fb4886
MD5 75f54805e6841e272679edc5b2001167
BLAKE2b-256 e8ce4ad614d06b963ec6de77593d936aa800861abf01816415a021466ce7ad39

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3a1b42f9016c569b001bc1f579072892417180ccb99505a33faffd1c87f6856b
MD5 9ef8c6329615801e3166e98eec477369
BLAKE2b-256 4d672ceec4f5ef7cb8f09b5f62c020023b2bf4a3bef14f18c450db0f1c73b014

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 36e77c5993fff46094b38e38aea0c80a210040316510c785759a5f3ddce8f45e
MD5 4fe5259800ae22e1ffede25452f30b62
BLAKE2b-256 1ee591c93baac5bd9fa62a2e28045d75213cc525ef2b24691c424f86f924a532

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 827b8112eff63ad4e5749c4dc0a572a1fd6f9a9d9fd03dfc06aae044876075c6
MD5 6e55400da4681bfc7e037f13492c1aa0
BLAKE2b-256 e378f5712343ac8a29d21878e9c799797a2de26c4f3ee12675e30d79630ecc5f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0cdcef1bb24becb27f1c6116ceeac426d093f8f26a7627f153024a379250fc66
MD5 6cfbdbfc52bb94d945ec4826a59c6df8
BLAKE2b-256 5956a29dbf91f3032c1611a230d783affa44272bae5e1cc19ee6b3540795c9cb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ba87273cefe9c537626f2139f12fbce0c9498475096833c79685575222bab821
MD5 0d61daa28a4731abf5e0497830171b4b
BLAKE2b-256 12a3637dfb3a07c9e45089eed73db234624c38e8110053428185ee6035958874

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d18c6ee6387f55f8084a638e185fa0cbf9df35d1cd9bb42c157d0caa40ab4150
MD5 d120b70810c2a1b4d748a9990f49546c
BLAKE2b-256 58680d27501bbb4853f51d394133b41771e9fd1bb840b75279780c7ef39cbf71

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 20e5d1ce8e48570aa20a1bf155c9af844bd6b444aabc26e6cc29b66028b6d8b9
MD5 4683e0f3f0aa1082885596f120755068
BLAKE2b-256 d7f97b4dcda6c177a5edd1c016f222c4da11c7796c09a1155489893b075f708a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 acfbbe8a88a2914d1cdb025c7afbb7d70baff13ea6416e027da8d445eb510747
MD5 bd106d6c9fcbf2b608c9d04d47a4163f
BLAKE2b-256 1dce60d750360255f02b5e4a2a8d4b78d66182a0289479c6f4aa7b637e97cbb4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0735f4f134af26e6908e5cfb80f52b0b3bc093badf4de58033f5aa920a8f10f6
MD5 9a6aefccbfa765409b95d399c51777ca
BLAKE2b-256 b843504e2927c5c6b0c59e05d378f28048f82fcfccf8b0603a9da5c925734908

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2d0de5e6dcb15af9da7766f036057cd957454265f43aca3537d1c592d785f3a4
MD5 7c36cee4b4c92744c4f4c846c7136d4b
BLAKE2b-256 c76e1f1b019e881c409aa131316f72a7c890b1ffe7e5bf4f33303675d6dc01ae

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7e1d18e94133d50783fe9635b222685ce650426296bdd5929551a0d7b3029fca
MD5 cae87a9f5c1c3ff62cbb33f0bf993744
BLAKE2b-256 3b41b3c3e1f3489766d279c2b133b8e2c865f2064f706d43f9bd462c8084c122

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 147b957c8c727ce6b2581cfbaf6d5d5b3952d534511ee3fabf05330cdc87213c
MD5 b0c371def455c198737d9b0755dd9463
BLAKE2b-256 a610a739e279b058d58199fa2d5b945c172ba9fbe0c5be38d752728af7fcb9bd

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ec3b5850092b9646a14860ed2cff4dc033b399f87fc0aa1d56a83eca3fc8b0dd
MD5 b8076d6021ef6c899054f09e3aa01a36
BLAKE2b-256 b3aa4c8ea208b6db29d2049e849fbac1a1cb8e846c30fd865f569d4242496288

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.2.0-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.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 7fcb9dfd31c5289b5fbefb1f73948950e6bf964202c51822c9e65c4aa030b1fa
MD5 6a1e5c288d083c01077f1269bbf99d2a
BLAKE2b-256 aa5050d9bc89c0ceebf64abf98a164a7781f3cf307a8bae4997a5095e41e7652

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.2.0-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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 47f3bf41b84ef7bfe6634c1a79f2db0869939cc1c0526c536e9e2606a21716c1
MD5 0ed52a167f0e50596abeb56f79301085
BLAKE2b-256 514d6711b3cbd8fc0eb2543b81313f10f070537500a44e05c7d89587d4167a7f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.2.0-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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2b33cd5e0570f3c7f6c5d21c0d5dfbe8a73fda8ed9c6636a7f59cf7ec5c85e09
MD5 35987971da662085a1871fee9744ef06
BLAKE2b-256 e7e5c9cf0e16f9de6634ef0310c09a2b23dc317dd914662b1d9259f3d015650d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 b66cf6cbb69240f9adcfd6bfbe71cd5cf6a35a7c16c9c109c0f8056e5dfd4014
MD5 33c2fbfd787bcb4be36a7e7d8cdacc9f
BLAKE2b-256 9348557786df604723b4310af827510f2d76a5ef2b86a08263949c2100681a2f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ff127107980832abc37c1f980f4e2a2cab5f4bdb8bea16bc813f7dc20a909cd
MD5 e1b77f36ea62c8b48889d7efecc0164c
BLAKE2b-256 7e8f2c3b8f83a95f3769e77c2372eb00ed0af1a3143ef54478d6d83faad5390a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4378265465cdf8c18e166032f3a031190bf668d4752dc6d6a58072676758a40e
MD5 cd5b8d6c9eb40b93a4f4edc9a0ce17eb
BLAKE2b-256 b768a132daf38cc98b2ececf13a46b3f88f791e35ab3d90267911d3ec5671faf

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1f7c23a8412261e15579a03ae98f5eb0e7c583c90d74ffe371551ae7410c2558
MD5 8390599eae1d8504fa2079090795be83
BLAKE2b-256 07d65a559629ecf7ed68bf845bbc9057ead93e5dd529ea4f27bae2bb512ad523

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b0d135c9419a47a1213f9518494c992f2642810f3092336c08a5d399bdb83f0f
MD5 d109e90e21c6adb05ef378ae5497bcef
BLAKE2b-256 b33546e814357fa6514a62f4dc7b92e9d2c38928f6ac2018a05afe09d20d8a60

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a086cb38a0e722285d18be16503ec519e503b77b8de64d31f72194a054bf9f5f
MD5 34846f3cda659677f45a2f68dd95de95
BLAKE2b-256 3f68b43f18efc45263240baa886cc264a1df2fa7b93f83c70956ba96f1fe3bca

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c3e2b1a32ce8db06c2d86b30538f38b898833c05a6156913022054ca5a45de3b
MD5 f2da09e2025a6c22b9209c88b7a75e89
BLAKE2b-256 e9cd4ee2dd84a65fa42e5c22be4d8cf737329fdeb9766e2c284c76f0bb39765c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28d9ac006d4ab071c4c5afc5620f09e77a22b1765adc14d2cb27590562fa2591
MD5 03b2aea0ca6f40e00090f8af182a45a0
BLAKE2b-256 d6753139778c431331675b4ac442c1f9dcfd65243a72a8e6d9aa55ec0897c0d7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3f8fa0959066ea5359972feb810ecf4d58b38f39babe6ff3627b8a68edd69a04
MD5 5f73403c1dc3acee76358ef6803d8376
BLAKE2b-256 ed130ca62e03d39d51eb3d269ff93e1481267fdffdb5170e0e7b30ea8fbf78c5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b74367b98e2502adfa7b157444215f02eb13d2a8cc7175adebc45127eeccb098
MD5 7c47a4a5cf4fe76b0dd3feb2e5f8506e
BLAKE2b-256 cfa2b2eade5e4d919b8c05a8eb1c113863d3af5a497a3906d5c1d3f72f117300

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 21ec0c4f6d4946ba779acd427993a5787d5c020cf697e4c0322ccce0c964a69e
MD5 70be0fe7711b604f374097fe654663cd
BLAKE2b-256 3a42194bd9e444396ff3282376829ebb9075a9e998cc55adc4c60149288f81c9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3a07c4cc78a0e0abde8f39387b79ee83780df6346e5f8ac6835c0def16d22fda
MD5 c9cbcd8e8604c243c60bff67076c355a
BLAKE2b-256 437e407cc741f2a64185b55d1d1d161e12db787da6ce94b90a4e6f39ba26cfdb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 dfde89c082bd6dfdfb641ae9baa5b7b88ec5c07f6732ea0069631d97833d65de
MD5 e22fbf2159e5d6a0f0233a433cc551c4
BLAKE2b-256 9399168e01a120157d5c4deb51e86c4b93f03976703e83ed7e24e57724c9b93b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e533f2dc397b506759183a70eee76bc6802d98811f79d3a399b0bf4c5eab1401
MD5 a106578e8e9d3b9a78362a5a5ccf7687
BLAKE2b-256 6820089b08e0e674d6b637acb88913f5a00319bdc570a8739c95192fc23f8ffd

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 51decbe19043fed0df0db7b2ab51a0be44f9c8a267a3276306e018b98f3639ed
MD5 de45f60413dc6021c3208e552f2753d8
BLAKE2b-256 6505780272395d13b1d300c68b10c8ac3329a5cc58b6c5a72150ae8cc3124966

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 953247e5369fb8e199b69fa117b939ba8298c25720d9b8dd5d6d6e92668cfd2a
MD5 88fe304651ee9396896961e10d53e3ea
BLAKE2b-256 52efa876a404710ac699f410061a113d92399ae810b20224c159980edc3fe0b5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c46166ac15f036195bc75ab65bc0b712af55bb65a198f304a5f0807b2a1c347e
MD5 081e47dc7c388b79619a21ca1ff39b6b
BLAKE2b-256 3f138bfa8a938727d4ecf4c714b0d297099140a8d86557a3586bbc1c6d9e7193

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 a59f41b40defe561d0d545f7cda8cf788b27f3f37cc6fb15a10aa2de7198cad6
MD5 26e23d635d8e4c201690c76a01a68c14
BLAKE2b-256 48d2c93d59111a36408ad52bb1b282ad0c276d08c9ae5741027235fadc6a45ab

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 a4f116283969dc3b3982ad9b3a167fd5629889ef3e435686024f1b1438bdf72c
MD5 67d4c43907d0c973e0581f5d8ffe9268
BLAKE2b-256 2089083029c97831d3456bd1552f3452e6591e772862ccc0a0933313f3dd1c83

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 2492b60ce52a4d710b17d2e432fe9b4358d8c9b926b6d259122836cd60ff96b8
MD5 32bb13f639d40b82371359e1a6b727e4
BLAKE2b-256 b98b541e2e4022e1b7da320dd0b09eeef640233998e8a6436c2667c53c37453d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.2.0-cp314-cp314-android_24_x86_64.whl
  • Upload date:
  • Size: 14.6 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.0-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 98ecd1955eb596b5f0d41cfdff4af9b9d36ada440bd565f8b3318e589624c2e5
MD5 c923d91ca4cc1090d6462b141d95116e
BLAKE2b-256 671a68b0724357ccb2ee4a1efb14141ce257d727f1d808227e022f9f26fe90d6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 1717118f8b6e0f1bfa32383899d6d0c9ab9767a4f744928b0d7c421579ee1eab
MD5 755cdab339d40954f9d21dc5322dc23b
BLAKE2b-256 19ef15d9d3b1f70dd3e72ffc49f7550b7eff90432bb51a15245d39270f478def

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.2.0-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.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 761f8e8cc752cbba3bdad060b9aef744841394ea1c94c32668b7176f9a601207
MD5 e5f6f3aa59ed57a35e6e9e678c48c31d
BLAKE2b-256 0550a7820b872fc53f8207d7c96fd59db69667d656b833ecc941035e5a625a6f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.2.0-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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d47e5c7e9c2db825635a3cc24c5cd3df695884cf94f06c939a88684dbcc48a07
MD5 49340900d54e888eed706f05f36de8b5
BLAKE2b-256 21398533dd1feab3834affca5d5b23e51b0fcb14fbff82581349313e9b23db1e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.2.0-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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c5951b43f826207c352073e58be4895428e4a142b319ce722198e23a743ddfba
MD5 20bf9e980bbf09449dfcaca17ec07d7d
BLAKE2b-256 5291732f6ae4d4871fe6dcad1b6c316a3fcbb0c76f56e2ee01175dbd11d5cab2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 5acd0c418c0634be8362719d8ac9128f89c949eb6dc142050bc45e995304d1c9
MD5 ee2ecce1b82e5a52630dd561a925a58f
BLAKE2b-256 798d792eac0d51b01f882d8f4b46d4899d3738ed790e9f0b316b3bbd806bd99f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64aab42b417027810fc31ef1790cfea11dc2dcb4bf8e97df84bcc31180c1b84d
MD5 07cb6145fd8dc76fcf1f203035ae7822
BLAKE2b-256 02de437a2c6e6f631063c53ea7cd18331fa279c55116db5ed4ae3b9828e39b98

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3f0c153ea44f789959c86bdf2cb59592cdab16d10805fdc10df81438e399c671
MD5 20e12525505d408d76e26451bcc669f8
BLAKE2b-256 47c94cd333c7b3b868392163028f91777d871bfa4a943672023220bd82e8b253

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f106ba71d0582f0d3693de28fc72e08b7e7d3a60405dfbf2495ba04b34c0f57d
MD5 846f8720ae4be086e963bd916d2c49d8
BLAKE2b-256 812c8cf0278fa807a3820933cff11cca3855da0b4ddb6025a232176026b1b297

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1aa87f26f5b23b20d930fcda18cb064ba27f8d3feca11ae4310ed613f67910c8
MD5 0e8f81fd2b661b9e0acf934d5a885e6f
BLAKE2b-256 cc50a66e8dcf5b0911e58ea86be3123c94d41e655c9d0e8a0e0e1038d0a31fdb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9ae4dbf77d6c729f8b5283de688a324ff6bfd3a0ef554446e61db539b6c0e561
MD5 f3d696326b2530388c64f1bc039c2c15
BLAKE2b-256 11bfc08b9e7a31638e81b367fe065cb8be3f7aa817a6136cf4ced78b83029a79

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 69ca90e395b78ce4d888eb017dcd917aca375e70ad151afbd51adc5fd4caced4
MD5 edb309f8877f68e092eb2d00151d7458
BLAKE2b-256 e76dcfd348becfccd8c9fcdcef9d4072139edff3a91a6f1a5b067e979cd1198d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b077a537d7eeb3d1ee6c6dd430b6d4cc29217fca5a83416f158b160103494523
MD5 69e130586a84a4e8449b8e3112cf7f0b
BLAKE2b-256 a872d62441ae96413706824ea7bd264211bde1397f699f628723eceb27c1bcc4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 082a33e9be804f3cc4e1033baafa57dfb2d092ab59aeeb68bb973f8724691f5b
MD5 ec3e65bf04b83c82adcdadc03b407a8c
BLAKE2b-256 2a66eda62dd59ed94712bc1f50426f7ccc741112f14a9833d04cee6d8c61d736

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 764f5de57e50e65751ca79d8bb97a8672cfc07548dc567836327e63cfccbab94
MD5 c0cd48240adcc742bd8d646fa15f240d
BLAKE2b-256 d2910cff36b8663c9e78e2c964d226c4d21b1b294fef484b4435a3ec421e6800

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0d4fe75706ce55f3ae19351ade7600109091f4fbacb040cb44119b814f213c8e
MD5 7c041d0ba84440c186a1f06762079a02
BLAKE2b-256 edc2df8ea06071f09209e0367821475e611e225d1e084e7edab4790db7d6f4e0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 68424e5ef1d63065ef89684e2f842f2681699769029160821615550053472627
MD5 02c4e1c9d74782ecd31017cd2c571d86
BLAKE2b-256 ba9f7985304faa558d66c59e81110b8ff7f80eee7e20c981237f89822861db03

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2481e24c5c98c8eb0af2802bd0291e5d23772983e345d051f398dac21d146811
MD5 048d73579f52959246c74614d71431d9
BLAKE2b-256 9cd70f2c4f01ea167de0e3e9275feb2fa7c2826fdc24ddb7b5f158390d9d688a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 04bba6129df48684d353add9de813164ea0f7ec237f6a4918be1a40579e3029d
MD5 2d46073a89331530f1e0c1833711c3f4
BLAKE2b-256 170c53f330788fb4152ee8818ea3fd3623a12800dc1e6da555cc6417332978f0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e7b48d9bad13a98f8417acdbbf184432db21a70c813c8d6379ba987ea467d2ee
MD5 a259e661fe1fd4dc290501af9a8a55f0
BLAKE2b-256 2beffa82a6cacbd3e0093aeccd60ae8b34b469b79db68e482a70eaa3a63769a5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6ce709993d15e5c1be824015065ed6a92100af8a737989771f8c0c1a894f629
MD5 c54166d740f40ab470a619a142111cd6
BLAKE2b-256 7765777176e80239e0ca2a3b2be8483a2e25bbb567cfd9d45396d52cc0fa8aec

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d25f68ebc4b52c313be43f01eff06fd5f0a2cc48d7181bf79b019adab57019c6
MD5 9bb48c5da2cae1a97163e0ef675de443
BLAKE2b-256 310f0ad9e0bb447f25c43d84a50d32b20dea367c6c99e88fecfb13e150d9fc62

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 9675d1558ade23313dbbf6fc0bb4ba209ed00ca2b8dbfeb0d02b88600fc7846a
MD5 ce37f306955db6988aff47ad319085e2
BLAKE2b-256 b282cdae68ee2e275a31813c2c3d0c87a54d30418f1b3976b49dfafb21d52a06

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 5fa859fe80189cc2eed4c65ce16a4274eb72ac880cbfc206025e5b48a94564ad
MD5 d65052e09b8390ba40dd0c003dea3a90
BLAKE2b-256 48484696c1f3e06c2e0362f9ce2fbfd1b6eae96f79beea1d831eb91c0da76db8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 cab2a25b1ed3cab994ab9983b59ccda4510bca4b18f43d0efc0a1428694a8f19
MD5 a2b43b29e1ba80b518ecf5a0feab4667
BLAKE2b-256 ec8caf06c68ff0ce7e4d32717bbbff59aad8ea07ed3bd23199a9ce761029e3aa

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.2.0-cp313-cp313-android_24_x86_64.whl
  • Upload date:
  • Size: 14.6 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.0-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 e4f3dd3397312e1c425de1d85b176efa4a5a0e8d99c5ad60fe54491b0b03c0bb
MD5 7d403d22322f39c85f29da5f78d03264
BLAKE2b-256 19522eccb3cc34353736b871de72bc213b9874246bc0e7ad1a6abc43457fcb1e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 62e03b5ed2403c789fe288f7b77bd49424bed7a46e8eaa41be236e5c072ef63a
MD5 96aac01a03b272ab345b21576edd89b6
BLAKE2b-256 62e9f5aca8027b1797a98180545cde614a3abb4ea23a7635e6da75936fd16fbc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.2.0-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.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 db4167ea7d2b91ac0113b82bc70b5b34cb9d727e932a6cc76a2a115c4f0ab27e
MD5 ef6322a7f3df1fbac0a7967fe3c39676
BLAKE2b-256 ebc7b8032313f24d18de2ac1a4cd8b68e61814bbc7f462f0cc33bf6c40b611b8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.2.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 183059c3280ede4d5bd5653105c6bc2dc03894f01ff16fb6c34105fa6c502213
MD5 2281adcf711309f3168feb9a4914bb69
BLAKE2b-256 abf2bedec656402cdcd1ae789ea59a04c65ffd1a16d0746327561936dcca5c36

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.2.0-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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 353348997bb961dc834649932863252fe5517a5ad5e9e94113c9364fe2c1fbce
MD5 1c42e84d3ae24d8a7b8a0e9abddf9d4d
BLAKE2b-256 a1b14cf135e7708bd00f45f53831dea2c9828c90c2779727339a07f195763b1c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp312-cp312-pyemscripten_2024_0_wasm32.whl
Algorithm Hash digest
SHA256 d8ab1f66167463ef60ca6f3d2a10a04b543680534ff40b3f48e67c47ff437c80
MD5 f7c05f319b2386ac263d18113dd6e0e2
BLAKE2b-256 0a42c65ad53cdd8d73a3b2016194a959df57c722a29cb59cec903cecfac9a226

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 925ef09dbd0ffa3a08c249d6fcaf27eab4d2bfcae899297d799c446314a314de
MD5 85a8e9efe86be1284b5d411803cb11f0
BLAKE2b-256 cdf19f56fee97f927bf582ed005cfbabc7b386650f81828a709f082e2655cd9b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a7f93ac985c8c760887255c7d49f726e441cdd9100772cccdf30cc94961e25d2
MD5 aa64ff4e0774f869daf4c1465ba7acc4
BLAKE2b-256 9fe2639838dc588cee3087a1202cd84a2fc6ffd15d56280a53df81cb98c4c440

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 914badb7b7e8339c0c4a5d7894a162e1c911f135a67704912a47d7659c2a6498
MD5 68c9b0a627e338dc084b94b3da292b7b
BLAKE2b-256 e179d72126a7df6652247bc7807cf5d5684581709c4fbc36429a4191f08b39f2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0091195803039c654cca34190ac0f4159b7d6caa198f4beb5358b53b9de9eba1
MD5 0a941043caa46691a83adcf8b126b146
BLAKE2b-256 85ef90b2ce9758c809c222f5dd6f148e7eb9431f7b86d8ed294dbc1e8817be0a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 09ca38020dbef4e1122c92311bdd9b7bfa286a81d716eda5c4903b9f644139e9
MD5 e966896aab27a33876dcb227eb0cbb4f
BLAKE2b-256 3a3421e9bcdb0113f0664181fed4f8e60bfba81b121b74020e84df283ddb726f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 59be131c3864174282c6b0616f793ed47f22b7e5b5294763207a11f5f5d6ba06
MD5 0d671e75c6e8383e2bc7fc9f78da8d41
BLAKE2b-256 f7a8341fdae0c0da601a829b6df0ad2c288bbee6a2b1a5a2bf0d93adea7ca1a7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 37bd3db919896b23aafaf9a4e945ed500ae9f332f0b258c862c26d2c5fe357dd
MD5 79be5574284a510e215e4b20f460fe41
BLAKE2b-256 05928ecee303a8892e3b45b6116c0a660635add8e6d6b5d07b42ea0678d31f50

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 115db24371340d4207ed609cbcf9850b611726006e4c7ab19bf20b0d83b18ea2
MD5 fc9cf8dd0709526369970a252f1e9046
BLAKE2b-256 6e5faa762d3f928cef9bac564671bca22227d0fe65912057d8d2c7198af47544

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 81f23ad4c462334f0dad408201ceb2decd61ddab2b14cce190c2a5dfcda92b45
MD5 b01bd7025a5a6969873fd426f07bf5fc
BLAKE2b-256 cb69db5b70d43b6cc9bfb65a468f630c20cdec1b9a8bdd35dbf432998ce6ab97

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 483d0c276b8fbe26d6ce3513b8b1193f2e375d639fa86a8cdbb737de24efde8d
MD5 0005aaa1b9ef76d98b7ee47bab6ef3e0
BLAKE2b-256 5f690d154c46fe9c29572d7dfb528e1bfdb7769c3595bfea6ec9381301024eed

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 915d0fbd01dd3a468b698d06ba41fbd392af0ce5f0024e3e23d16aa16496b719
MD5 767210cbb599e3ce06356191b5121f81
BLAKE2b-256 4f39dd9608ffb7dda21b9167366ddd156c1617d3711d42d94de183204b20d168

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4df3a9786c809064c77b016e9429ec7e1baefd4e9a5b4a6b382a0c11f945eb49
MD5 d9e711261ade8b650338bf4b9366130b
BLAKE2b-256 0eb5e366753eab8fdce8cb6af118ac90b1196859163263d746b025b80932cb39

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b494947c5bac814474abf5fb0821127c97f94888c92dab1048c7f37b371375f9
MD5 413f4ae942b833eaa02d7f52badaae80
BLAKE2b-256 02f83b3d61c611853383abbea81c6d3b0ef588e0a8d24dd09ab5266277140547

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 962b7dd9a675cb2db3fab1bdb731fcf42f243ba67dd6b65ce324a8370cc79209
MD5 a74a688e4222ad5c84e4bea07a076928
BLAKE2b-256 48362c42b30ed2be5dbe853d64c50ef88bb5ecab94ab4d7a31848c12c8f019bb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92e3d540a689c33b1ab52a781e33cc40f54b5bc50fc0b2a77d88730d25a57fa8
MD5 3d35e43e4bf33987fbe88d2e9647edad
BLAKE2b-256 12910fe16efd65810a80e9009462abff22d134b4a3d028ca775b2dfe0bf54c5f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 58e1720939e212b25baf4c261086e0eb3e26dd467ecfc810fe15ea00ec953718
MD5 64daa75a14965558fb8712ce2bdc9651
BLAKE2b-256 a1cf18b0c8cd389f965a0722dd992ed4ff9123c29df98bfffa87c7bb92c8ba13

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.2.0-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.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 d87aacb79a5f8d0140c86786b15867acad4e37eceedbb10f3a49725df197fdce
MD5 be28283f0129556df1b8f27d73c764bf
BLAKE2b-256 391a29fd3e01e40b4fb343df34096dda3d439e2d55c1e1156d112c4f7110ff2c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.2.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 62df1a3d3805ca73e3a0fc070d9142445793d8c6d693296b85cdee6699863209
MD5 c981175e264c09e273c9a2646010a888
BLAKE2b-256 b5b81f4c629ce1348c9b08be02f2e061c04688eb2b730f436946b950ad072c35

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.2.0-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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8d6b6eb20e540ffcf8bb4922a4941653cc47081e8ea90d5ea8be87086340701b
MD5 5f348cb0df0cb589caf4f808dc165bde
BLAKE2b-256 a74877a96ab810a3cc3dc9a31fae7106ddad978a6533da35a15906df2ce1bdb0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 197cffd17606e1e365e606b92bf2f0d9519761727ac9acde6d5146f4551477b1
MD5 d0c8480fdb26f47f66ed0dd032abb911
BLAKE2b-256 bd98e080a7ea6bc9b681af8b8993ffa55b5eeef069428c7047f9c63e62c58f4d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6a0a4a1dac8f1e1aede85e70e3d03efd1d656a3355c7dddd206428a520564c41
MD5 a85e209ea65ca781cddc8fd2f4e692da
BLAKE2b-256 1c0eb980b4cdae64e4dae7f2b5dfdebc37cb21b40fae640edd26a7abb277d4ae

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 896e1e7ff94d591ea658fef2f1d9b78bd3f724d5a45511a587dff1502b7031ee
MD5 e5e79bc1e27d774c8ae26a980c0b40cd
BLAKE2b-256 0f3902e4c3c532dfb90b6f423bf95e6839ab8a3850df90a6967e032e036a8f24

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a3978c77fa960e685df245f333a84ff251e567f79f0a9f578c27ef00c3d313f0
MD5 a6fd78e049c7c8f0b480579d0f062ca4
BLAKE2b-256 4bf660179e5cd32f63516b31ea988d6c575098f9c623295601279e3b33b87ba5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e8b7610e61a96f18615d37cd4ab1cc59a73e5e108b553826d7608c9ffdf7fbcb
MD5 a0e92610a3ca8556405722da8760e86d
BLAKE2b-256 e0dd91d36c671fc3a312cf268f4009a40c1c230b47d7c8e2f3c1936a334b6fce

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5afe474bb72e498b43fb954bc86711cfbce7d05ccc6eb0063263da930a3fc2de
MD5 ba973a395a2c1ed9f4bb9b4a1a93f2cc
BLAKE2b-256 08eb0de45ddbe08e935b9a70cca7b1aa809fe5b3ebd3c3e1106df4d092b6c8d9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9d6b2052ec207ea7047544214c4f1ec4cd8b507db56255009829125038e5c1bd
MD5 9f5fdd26abd50380996afb13e6cca8b8
BLAKE2b-256 cf983bfb992854fd032cbe97bb1a50cebeabdf880ec878be8d902d511983caeb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 62c748c69d710e3c09133c06611881f8bf3a969e7b1bbd4b8c955bd9aab505a0
MD5 1bac5a6e7ed3d2142010ef8577d1195b
BLAKE2b-256 7f45022f9f6305c20e5162ca1263210c943e3ef76007eeaf655e78af4e02f12e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1518bafc909f3c9eaf2f3fa5a67001b971a8fb34097268d8c49a0a931d2d9e15
MD5 0496b5f61c05aaca7e4ffc6bfa6d55e7
BLAKE2b-256 0701956268cc598cf6c1b907b89af29159c53a4ae12303e12ddcef724977fa23

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 60f1beeba12553874c56d8dafcbbc84900433544b9bc64addd69860215339045
MD5 9b1167909feedea372c6a3274b6e3e8e
BLAKE2b-256 c3dd1dac4e8337d7c645f391c8912e825924f9dc1f7598d83a76f931e27a8c8d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b43fbe0f82f373b75bda09f7b997f6359a2c3cb908ac431e0d1db28b60cf46c9
MD5 2c8ad22666d9a836b292dfad3d22e650
BLAKE2b-256 09c185787a8d5251fa0efc56b48da0e627febaa74a7e6f661d264c3996135161

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 fbb5eb70725b9f2b35ef1c40d3bdd555e26d27b014c1d481f60305b37802dcd8
MD5 cc6ecb4add71f5c6679487d0f3366eba
BLAKE2b-256 e7de675fdf6735c43b99795b75807ee231c3353c502e8b3d721d68156f2ec883

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ef332590a2d8ea2b118af1f8791eba98f43e5f6f43638b54f25cda721132fa4
MD5 81d62e431c1196b8613f93947ec71066
BLAKE2b-256 1fbc457c7ed043303ab0fa8997f5f7784847ec4ffe2d4fb6aae637f04fcc6970

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 700f01ba8ef7cd262244270a4485f13baf1d5ad2539d7f2ef372d72fe567ce37
MD5 b2d5b69259bc7301b5137ef0ccddc78f
BLAKE2b-256 88f185211077cf85b1f077683c7fa6269fe9610e72e306935326bfdd804016eb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ecf4e2e9073cf49ad891da4fa8c6949e9f1a70c366d1200db7473a2c16bdf3fc
MD5 916fdbb653fecba3e8fdc06591fd764d
BLAKE2b-256 0870e36cc8cd3a9beff43e2cc2c3908e2ae33f8f219856f0cb99369af5ee2bab

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eb06e7de4596c9c0a81184ede10e47017d11e663236c3546d0352514614b781a
MD5 1adfcbbdd0aed75d515f8ff5b56ed4e3
BLAKE2b-256 bf8653b4c1f8500be86502840a2cb19d8d871dba9d94851367346cf4622c7e54

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.2.0-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.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 0c2ab31bb1d3c02c065c86f8f8c2cc7e3a9ded7693e69c530cbb7b28854746b4
MD5 3afecd52c885b94256fa5dd394692225
BLAKE2b-256 b778119660f1812895c5dd43869b4901d5b6b2b322a1095860473b6f27ec1ae5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.2.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5615009c4af7f0fd53e130c208a75ad7475c32baaeb6e904fc376d1a2d05a180
MD5 ab7e6d70ed86c18cec25912fa9f64fb8
BLAKE2b-256 2db776ab0e4ac3a910bade11d053676b14007815414fcb40f87ab3e5e96c8d18

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.2.0-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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 28d5c6910695e8ebd0fff42fd89e147b85c7f5b089fc81120245c94f755436c9
MD5 f77fc28979c97065218c1e946ee57852
BLAKE2b-256 1e17d5983e813a6a53d72b298c26d0131ca13439ebe692d5fe183f7ed312ae0b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4bd3066b5776960ee7e23f44be17ac3171a780a8460b63eb2b1bfebc93ffc91b
MD5 1d335a37dc7d71b5a93a125e78ee3271
BLAKE2b-256 04cac35e51f8c72124e6dd53b6168594fc349c5e9c6e2d0c1984726abd6661d2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fd553f5fdab71ded5581d3e13945a5ccf892323b46a3e7121dcc2b0106715d91
MD5 42ea553f9f82a1a7da734415bd28cdf2
BLAKE2b-256 37b30509a3419389fe3566ec6b16ea4e337c8daf0d2fb5ddaf75b76067e3dd52

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 be567b5626b9c943ce9753a33a543a3592b0102e71054e266d29ebc297554739
MD5 fd99681cfca8d16008fbd572d42aa6c8
BLAKE2b-256 fe80e7329dbe90a04b62d7c87c70627922111eda82f56682e286f34bf7fe7dfc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9f825738547947eabbe7b9b9c4451e79718faa8e3c6fb760a796925cf704a077
MD5 3fad65f84d64b1d79cf577c8de0a0e3a
BLAKE2b-256 b5ec7b5a3d5516c3598238b8dda9a25995ebabf140821dbd90f32a63d1563073

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0599c71ef8f8806d326a7086883df710705ac9198be57d288740fbe8863437ef
MD5 546938c49cd8eb32b4557849509b815f
BLAKE2b-256 07dd834d61a7c0c12610915d3a82e2acdc819c3e4dd2efd443729be85bf2885b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2c7d3073e80cf30039d2a19e9f6e709e5bd7d93d6fbcef742252915fcdf653f5
MD5 5912008468de8ddfc63931c4471745e3
BLAKE2b-256 210a9b65ef35a9b141abb6eaeb90d75715efe976cc51e3663cbf57247c681299

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 13ee02f0870cefd14185b195bbd950f27d79dff597f443c7490b7036e5bd9c9e
MD5 d03aec9fb76d9d01fcd83fd92c563568
BLAKE2b-256 0d8254261bbf47f58faa1f128eb7109416405689fef26e091ff91a160ec6207f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d28e6126dc68e39f595756317604cc10483ead5fcdb33053df041cd7d8949c26
MD5 89f5637d36c5aa5f1d2cbb4e7e4a9aeb
BLAKE2b-256 10032cfc073ad624985578a7ecc1472ffa27df778582542c0156a407082493f9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 65268935f2caa79d338363546567011453dabf0370dec5b4c0303a3fa39a608b
MD5 de5e1b90ccaa33be1dceac6613a6a9a2
BLAKE2b-256 23170352b4b70e096683fba33473ba77cd31ecd332b1908d57b8814f82b895b0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5fb1d9dd3545bdbc4ad4a840ae47e588ea4f9945d79598c48c149fab074c6007
MD5 0598c721271d938d0541a9af3955ce5f
BLAKE2b-256 88d0858c1d246baed8f270c98c064e2c9bfd32eebf98804e9a731f464ee2d022

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 cb7e56666ae451981e345cf6fc9b7259acd307c494c08ba65420108a555ae7cf
MD5 c669a884de824381b22d2da650e6ce1e
BLAKE2b-256 1667621378e8ccd7c269008f40d70c177143f8a29a829b8f3e7ecf9c4e8b9d3d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7202ab2d71b8e4b358b4bbbd1636ee6e5e85f9a4285e04195da6acaf76498b04
MD5 9d7b22f048a7a51f8b2cb3da75dd6690
BLAKE2b-256 4128348cc5405166708c4be5a8329986fcc8aabda5eb712befc835a835e5249f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cbcc41abfcfb547feafc97f78f65e6b509aefcdeea5c82878256d3173d93e6a4
MD5 d1b268b88f7d7eb04aace10f909f64ee
BLAKE2b-256 9d0c378a6895ec557410bb581381f5fb7bf4c4a8fc0ad477e55d873f4ed8d347

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 54e2defff6861d905b606864f2de62bfc865c2052fa86b1facec29e46382225e
MD5 01e8c76b645910927f833e6d59342070
BLAKE2b-256 7c27e58ada052349b73f6195675b87728467f64f4729d58708d7070ceafbd837

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8bacfda577c168f1b5c28f5cc76e39e0c24f395e8fe46047c9cf5bc91b9225b2
MD5 ef6bc18a08f444453b09ae5213ec2109
BLAKE2b-256 95f61d798b3aeda7d6f2864a508e2cb856cd7efffe0676657a2fff96090976ba

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0c34b7469153b8b2ccbea5d9e48c1acb8bfc7fc7a3a903d1fa127543a34bc507
MD5 46fbc05367c707f645fe4c57ec63017f
BLAKE2b-256 25d0096d5755096c4b60edd9f6da24da4153e4d5ce369d3945149a8c6bf398ba

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.2.0-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.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 f09245d266f2d3be4a2897feeade44ab9112cac40764c192362eb435658b61ea
MD5 dcf71da13f665091cb1ee0088cc92409
BLAKE2b-256 61384e08318797ec0473bdb6c398eaa125535902332777eb2c4a0b7cbc8e9dc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.0-cp39-cp39-win_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: xxtea-5.2.0-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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7c4fe8cecdefd191266d0918da1b1910661e0da4af99877d31436a89e2ce1481
MD5 dfcb00f5a60f581334540160348e27c5
BLAKE2b-256 06ab2f98dc90076d172294f9b05124f9e431c6c1a551e39217b393bd39e5af6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.0-cp39-cp39-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.2.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: xxtea-5.2.0-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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 29383b2fb261226356725fa43cf7715ab561fef32fd45d1706cf126e795d903c
MD5 439b6ccfaa3540e6c64991db8da0c18b
BLAKE2b-256 73552b8b1144f48cdcb7414ff4740bfa860ad2695a04d7a5926de2062859a875

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.0-cp39-cp39-win32.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.2.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: xxtea-5.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 48.4 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.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b92c32bb19f909471c6a89100955bf97e9dede22ccd25e64c1b31ba589e0b7f
MD5 00a52aa3f0bf8818a27070feb2925b4d
BLAKE2b-256 864ca63c6a6ac5a6bb6c0f4c181a578818e39436fbeed5a31fcb3c5c23bee1b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.2.0-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

  • Download URL: xxtea-5.2.0-cp39-cp39-musllinux_1_2_s390x.whl
  • Upload date:
  • Size: 56.3 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.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 145c8ae64e820f5b6bbddaebac31ad2868d610a6d014f00fbfb8a7550386f28e
MD5 fa4c5cf2677d6ad2334873685b78cde0
BLAKE2b-256 d1599de91f69e0b1cfd3e02bb266b23be58f3d38c48ee3d5bca611a24d43ba66

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.0-cp39-cp39-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.2.0-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.0-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1e9103281ce56f239a34045de603d29f53b48f0b7b4634a85f9dd0bc4a305aef
MD5 e1231c37727efed33cf577dc2c88f6a4
BLAKE2b-256 082bd4f8e63f87f58450433e6fe5a46f7165711856d594c1cc2c3825f588a0cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.0-cp39-cp39-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.2.0-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.2.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 439ff1af6adf4b56e7117c4c6a7986d33724345bb4adc288d3468da961f01d7b
MD5 97de90ed6343ead4e1ff0f18ffd7e81b
BLAKE2b-256 7273bde55d5a7e8df88eb340872ab2e06b523121ed0ae6dd206475ee9cf83cbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.0-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.2.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: xxtea-5.2.0-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 46.0 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.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e06824f37aecfcd0137da5f8176c5457a18c0a80987c1c2f29e553afc5163894
MD5 a78c7a12ed4efb3bece0fff408d9c62e
BLAKE2b-256 fdb6692d31581bb22e5911a72e883003dd0048b4b8e49fe67f8d37ff97424057

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.0-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.2.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: xxtea-5.2.0-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.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e397ffb468b37ccdedaf60523bd94768d327c57556a1eb6fb81196ff38447416
MD5 9fce436b9fc892189c955e359a7895ed
BLAKE2b-256 0d3ab482125ad41157217b2bd606326db79ca8bc38e064e374ba35f92b8d5d04

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.0-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.2.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 194791ddd53469215dd45a23a5a66530e3f662fa43d574969e296eb6f3adc785
MD5 80ac3670bdef459eb5ec6b6556203755
BLAKE2b-256 d5cbf11dbb7ff75ddda3884bbf70244731efc56c99ca64c0229da691d5d02db1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.2.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a042e14b7ea0af9595a498b25931435fba7f6a02648ce712182446a853c09826
MD5 f9aa26e8aa75ef8a74caf32ecc902cd6
BLAKE2b-256 2f017df1900475dac256b1fe4e469a6c29f2c25d66b8ea37ba2a0a3e8718f42c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.2.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7af5fadc211e8b07d9e7f819e3243523307b3d82791a0d2461f2f712cec1a9ff
MD5 ebb24c2a09131849387326306402f19a
BLAKE2b-256 70954a4780fc1f169e7e7018a8cb586d35684faf102a9c415eb5d8ce616a7d65

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.2.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.2.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a2d6ee7d15a06d1486cf416d20e77a505c21a185e34d163d3cc3874d181edd49
MD5 41fd45e0600fc10a246cb99bdc29eef8
BLAKE2b-256 1cb19f6d095dffd747d5c3de11510d5db20b72aef12720bcc8fb3bca96e2c504

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.2.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.2.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 30505ad387f3063eafcca20aae6964598690af8eece34a05b9890fd5ec123665
MD5 56e0dfcffadc917b92ba6a01e691098f
BLAKE2b-256 4724775c16c609d321bbbcff3a0f57e10eaf89112c7d7e80f9fe7140f538c239

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.2.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.2.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 cc2a5233adeee501b183add8e7e7910d8f059e80b31352d8d7e14ce1dc016803
MD5 ab21a394b77b3cd620a927ea46b10af6
BLAKE2b-256 2ea86c12b6043d1f8663272b297c83485e65b57dd398cab35ede0debb18ef35d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.2.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 df04dc48e9a52d57d5b6b75a413826b66cb004f3155c37b2b4acc832c8c83309
MD5 3f1ab2625db5f144bad40e946619fc8d
BLAKE2b-256 11975c05424468ad76cc9684bf0b6ad1518d4fa4f8d72ec3516d53a54780a827

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.2.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.2.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 735d99064c247354b1a90417caafcf31c2bc9a5705eb3cc1cabcef888e4d546f
MD5 1d06836ef24f0d8a18a1f155946ddd7f
BLAKE2b-256 f5e7ed668112da88d19710bc339ad86330afef4356c6e09621bd72484b03e613

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: xxtea-5.2.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 13.9 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.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16b2fa5459524359f8baa75632e6d1cb99d42c11a033307b7d3a71d31019c85b
MD5 135f3542ea4896e7fd080e4f1e5afa0d
BLAKE2b-256 4f90922a51f01242bf125f99a16a4220dda1064a6ecaf9c94eabf0fb274af894

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.2.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.2.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d19a2e5542d8ae5f557c10ab8b0d87db2d7d61ff4d66b3fd88d2a4f84648f28e
MD5 8c80802f7aa0d8ef985d08c562e23e3e
BLAKE2b-256 2acd3e226f3e9dbd627c1576f9a06bae4950d2b1b3f6a149a965c7a719bb7391

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

Supported by

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