Skip to main content

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

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

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

Installation

$ pip install xxtea -U

Usage

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

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

XXTEA Type

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

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

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

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

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

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

Padding

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

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

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

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

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

Rounds

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

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

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

Catching Exceptions

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

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

Download files

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

Source Distribution

xxtea-5.1.3.tar.gz (20.7 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

xxtea-5.1.3-pp311-pypy311_pp73-win_amd64.whl (14.9 kB view details)

Uploaded PyPyWindows x86-64

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

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

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

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

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

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

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

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

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

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

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

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

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

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

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

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

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

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

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

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

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded Windows x86-64graalpy312

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

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

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

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

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

Uploaded graalpy312macOS 11.0+ ARM64

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

Uploaded graalpy312macOS 10.13+ x86-64

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

xxtea-5.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl (61.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

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

xxtea-5.1.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (56.0 kB view details)

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

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

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

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

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

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

Uploaded Android API level 24+ x86-64CPython 3.14

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

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

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

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

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

Uploaded Android API level 24+ x86-64CPython 3.13

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

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

xxtea-5.1.3-cp312-cp312-pyemscripten_2024_0_wasm32.whl (8.6 kB view details)

Uploaded CPython 3.12PyEmscripten 2024.0 wasm32

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxtea-5.1.3-cp311-cp311-musllinux_1_2_s390x.whl (56.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxtea-5.1.3-cp311-cp311-musllinux_1_2_ppc64le.whl (60.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxtea-5.1.3-cp311-cp311-musllinux_1_2_armv7l.whl (57.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxtea-5.1.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (50.2 kB view details)

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

xxtea-5.1.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (58.0 kB view details)

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

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

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

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

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

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

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

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

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

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

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

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

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

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

xxtea-5.1.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (58.3 kB view details)

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

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

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxtea-5.1.3-cp39-cp39-musllinux_1_2_riscv64.whl (50.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.3.tar.gz
Algorithm Hash digest
SHA256 89a5526d044443fe7287aa4b52892eb6e1b5ac8f21aeb49424b7ed0b76305f5c
MD5 a46fd5717dbe35b56958dde5b99d120d
BLAKE2b-256 18878df41c51389844f9be6d151b52214c4119e75c5c1790bc08c89b030c1b78

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d017b9bcaecbd1a49840b4cd3251c990f48960f65220daa4bb36d5cba7cd5ca8
MD5 66e6921a02ec53272a08704c5783c54d
BLAKE2b-256 395b78afe889781fd2316aff0e4a7420ac586ad6d684e562da1997c559f35cdd

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9bde90b1c05dbd31ce0c42341e6b473849ba018c40d271323f641def9d551218
MD5 658e29f247cafae311797877e987f6f2
BLAKE2b-256 6cae65d3a359afe3174b4014f85b9e9a6c6779963af8b516ab735d4aa2547837

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e664fb4ff501d81948d23beb9e6297b8499e27efbbe670e2ca64b964308523f8
MD5 8d002f7b3ddb7e630259a4d4f34d2ea5
BLAKE2b-256 16268605e5b95895f5447f484f2ebed0ebf001176381f2d7b5e91fff21bc8d8e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 fd2ef8ab481681e3fb576e29539d4f470544e08671bf98c394b72cc753edb7d7
MD5 ed2c4b0fac5797cca42a07d1ec6337fc
BLAKE2b-256 dd8c3cd241490103941d514dcb6c09ca3022cc27dea3ed6502061ffb0abe9f6c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa187262b750b2c69cc232dc1fa60b2dedcefab22e79b49564622f3b3a3c277b
MD5 470f07753b5254e9f9d0f21d4e7f129f
BLAKE2b-256 31b4f84544f83138455d6e1fd4e9fbc29aed110c0734f7e0c5cbcbf11d5a5c6c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5034767fa64577ebee686b6d0e4b24c026630c4c5d11abf9d019161692804ee7
MD5 e6015ed5ef0d112f8222c851cc554331
BLAKE2b-256 9abc289290470578bde29b6150c914478f4746fc0aad36ce8a781a048375b992

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 31cc76a230bbf7beedd433a97283b5f9a39279f6443529a127d81f1bf3f977a8
MD5 190a9aac2425cf10b0383ee841cbc410
BLAKE2b-256 5347053da7a17efc1e0b387d49c50bf02b89200c34c84f1293de0a22af42c931

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.3-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.1.3-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fe0637f735982ef612227521d178dec4be7529e6ac9cc165a357a1aba9dee315
MD5 e5cac89a965ecfb67a25c2b7bcce6453
BLAKE2b-256 cfcb0ccb367d0c3801412fc15ebcb03ba658e8677424472bfc74653fe5669040

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.3-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca9b5b664f15bcd03d79fe0948523c0a9330a47de292d2983415865d52897b7f
MD5 db48e9027d0d4d06ad3192cfde6a58ca
BLAKE2b-256 2375b9091e230081fc25c4e168a6f6e7b7c76df70f78625e1893917652a69f9a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 12f6b6bfd7cd580635bbd862a1eb22af271be7367c7e305a29a854112fad61d4
MD5 7818d4c8534ba7f0961c2a58f7a3e295
BLAKE2b-256 a30ebd191fd542db19c60f9f3bebb3e04e0da3e89bb1cc1775ad7217b851ef4f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5f0a8217794ab5943dacd68e00331d1a1981cb329b2d34b3963e502f4d04498
MD5 d1dbe623cd164f5c330704fe7dbead1c
BLAKE2b-256 e0e01ad2f35ea12a93ad4693251a1e450c0c5d9064b88d5a14c4f9f29ff1e134

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d3c44b4a2a4cb3568b16c9aea2ec21960e8e3c21d2a08f9a9769123f40320c5b
MD5 9e3fb7082bef78b656a761ceb53d8003
BLAKE2b-256 278f9bd679dce5416f1d165a3646e87082caa10c4448d49fc92ac42f5eb9804b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6b58a31addb4b361541c2888d2e0c06e1ddd6ceb6dd567582ef8e794d9329f0c
MD5 24ba335dae8edf084a5c67bfeaaed201
BLAKE2b-256 4d3e3455701a06d74752b541d39491504e8c50aa21b34adc37503931f83660e3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.3-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.1.3-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 60be70712781f46cea4d91ef05bdcb1cb59bb7460712a73de772eb22a334b464
MD5 3fbe10157733bd508a5a676ae594f007
BLAKE2b-256 e172cf5e7dee582775fcf1541b2dc495116dd91a5adfc4a634a1c8e4f24ebbb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.3-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e67232796852ff8813219be7f1be364231e78c2ff39e31b6b5376fa8dcf93aa7
MD5 1c12aae8474da3158691d7893f412ea9
BLAKE2b-256 c38c7bff9f4359373e43430571d17d3d8f35dcf343247fcd65220e08d6bebfdf

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 89d7369c529d4edd22b3e12700f9a68408c6e4a0be01068dec97f0bfd8dd0a70
MD5 ebaad319859e8896a7314d644368351e
BLAKE2b-256 dfa6d1f78e5a5c75cff56ffcf90984c87641359e7be13f9eda0be16cfdf2eccf

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5af650b85bff71b7cb2216f109fe410d49ce201e98e8201dea498e966bc05aba
MD5 1701134c1f38a1b2e23c0498813208ba
BLAKE2b-256 303605971146969f21f7417ccec19e1242cab07540abd5aac885ed0e93392ecb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ad661b459ce1196e40389359e9a5d85943bd37f84f59e25393c8abe287a5bdbd
MD5 94bbdc509cea9391b96e14ed2e2a48ad
BLAKE2b-256 d4fb995e08b75db812d12a51447e846f3cce846ba6a42ca37200c00009360c4a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 13705398dfcca7b19abf21321710048648770c0071a758ff4797b6050d4a1857
MD5 0c70b65887175c9d3d1bf210967a1af2
BLAKE2b-256 90fc1677fcd27288852918f5fb3c2463fd37fb254a58b91d2244ae2a026b4ac3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1b429f27f6fc132a0a15348d0638636d3a39b7f4a178873645880e783e5a59ed
MD5 a399fec4f6419be6a7ef6f3f1f6b1efb
BLAKE2b-256 9f389e9736d2be7b1c1933160d8ce506a8dffdfb0274d3853997c752bd648554

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d0eaa337a899a3af4676f90ee4c52255ec7c11a50a963b88334f26a962bfa398
MD5 acfd16f2d57deda9a808a7ac5da79284
BLAKE2b-256 38a9f81695cde8e9ea1622d6b4b4a01c8950673dfb8d2e2706d3cbfc5b84a112

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34877cccca4930948e2303e3bdcef095bc2952a4f49a8d8fb924a37ef48ad6fc
MD5 9513bd46fd50f8104ba2e43cfb6b3aca
BLAKE2b-256 b9b8c0980f9c62b4d3e072be8aaf34185e2929026aa1ef233fbb592d0f8d5672

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7f3c350e8a50d2c5acecc85612f61ffb4cde80562665ab485d870f835522f6b6
MD5 3a209d8797cd4b93e40641d116b3b9a1
BLAKE2b-256 d4317a5b40c15e49fa1cecb8b58d6ee245383b0aed86638d67b72559fb6d7fea

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 26051502a87792165b3a3f91e06385ffe02891127b7e0fe1ffff37a0e60c4185
MD5 17444eff9f83fddb1b39d1d87b26dfe0
BLAKE2b-256 d5bfc8477f9c453f6972c0c8ed9dee4377adcf3adf5faa26758c09f3e370b9b3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c83c615162cf51b8668e448f2d9e6b0d3d87cee668aeb0d04975aea4066010a0
MD5 aab94f962e0cbaf1379be62b9f32175e
BLAKE2b-256 e5245e03308b96eb83b9f76d9d36f5896d316c7b8019bc1532219a37f94fbfac

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 687218646633b1ba3b18c000453d28540795dc3308ec0298a11e3a2994ed0f8c
MD5 2a1f6d9604bd5806d471f2665178d470
BLAKE2b-256 804701c9e5e18337858b2e7f88994bb359f67ee8b1adad9e64bec950533adb8e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0544702d6d07e7d2d8527621cebc46b1feca73a51ef53cef924a7d0b1efe5d81
MD5 bd4712455aac05c7bb8f5a6692e6b101
BLAKE2b-256 e9285bfc4097a75e2b4551896d00d34ef5d8e1add76f2119714a41bc65868447

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e235089d69ac242a9884cc40d4e184d445c426a9af0e48f01aac5a93f96c3e1a
MD5 026de7f1dc98014eb6b9679498b36d21
BLAKE2b-256 fc3f2c6a820e7d2a10dc4afcc12022abdeef94eb231cb376d0b1ff36edc9d23a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8eadae4b96eb218388a298163e90d0f91fb8441c6415fa47dead445fcec262a9
MD5 dd59362b8cedbcc8779d715592ce2707
BLAKE2b-256 f4445b33bf2283c134ea320af6815de6cb79e9d18553e24301da4c8d4b4f42d4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8121084e6a7c149713a9023ee89718508a43e7f4c04c2b966d52d375c4fe7371
MD5 7a994d05f4e3febb8d951438f2cd8f57
BLAKE2b-256 e875725e223a4efa9434e453d48684ac60f66314bc2fad79b23cc9ead15dda81

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b99d7b90678cab66c693d4be9a9299a634fa4a5ac428f99b70eb65cedae05912
MD5 7f24881f97f0bac2ac81a9976808a2a4
BLAKE2b-256 78152ef9723ff7a4790f8c8a0aa4190089ee4ee27ac94eaaa8d635f23479caca

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bed684cc8b3aba7adf701cae015f404ab3751319b4057fb043fad455960cdb0c
MD5 150ed163e3b30c9e49a5020ad236ae5d
BLAKE2b-256 a589b79b13682d47be12904f5a52612d8268103e5d82b5b0a68c1355d33b8492

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 233d44a8e4dd52b36fd6dd956f1957605a72683e76a76c5315043b2dc6c9ba48
MD5 6f332b1d9b3b4195fd6b88704db9a752
BLAKE2b-256 fccacbd1f8526a6498fb59697314e400b3a023a1fa5d83849e8696cb204bad92

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 98e4511dbfd6d026767e88bcb211bbb3da7b2e7ffc5824294d4cb4dd583e59e2
MD5 acc39a28503c177b783ce39bb955fa46
BLAKE2b-256 33bd4c2177438188a879fa932a4b444eeb4195c9a86909ed09ffe91b5d8bd0f5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7c07a235d725efc90a359b447beed047433aeb4f4b0cda60ca462de997a8c9ad
MD5 522a76377888f69e29c4d8b8ec8e8cea
BLAKE2b-256 24cff20ba72cb299c7679d6a9eb381fba6b0b5f17da3571d266567acf36e570f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 ba3da22cafdb103ca8d80f7a2ecbb4b953c46c2453e5b5e0447abc0e8aaf1e7d
MD5 28c5016c916e7b1a9f88ecfd0ff27d8c
BLAKE2b-256 c59ecdb629cb1da7ee8d52b16391e36fdda7ee9d7049fe76ea2ac802c39c2737

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 cdfa6b8fee4ee2338dbf1a2d4966434db44cbcc9506f7ed80c09e4f3777c8c01
MD5 5e9de0faafb946ae47355cb3200c8de3
BLAKE2b-256 d19ad34b01c15d882676048680b38405c89a300f6cf6c87e7165e841280edeb3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 01e793ef17b606e6ee00016e9cc434ca5f9a2d3f5b9b98ab2463cc21316196bd
MD5 75a7cd965cb75d67968c310d86805805
BLAKE2b-256 205b6ea62d252e1406f122aeb6adeca6cc7283e8d2db1a511ee67283e2824954

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6d7d960f4f8c09c3ff937ddb64aafb38fc2d0bf0cf2ca6d9f4f6370c8a50ccb8
MD5 0fa3537c97c62b8d0cd045ab6dd9f441
BLAKE2b-256 897d53bb320e0c174d3f7909109b7b4afd9e471d965ff21a3ecd0003e0d2b240

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 1c4940f5a8b378f87f6c9ba2dcc15d88e222c9761259f35c64f9061a5724cedf
MD5 7a37fb8152c8d3fa3c867ed35d8a8a7e
BLAKE2b-256 63846fc27b328b0dcf37f5672357deabf7eb16067c07f0e1da494ca0b2edbf1e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c20226fcdb5a40f7f9c825320d67189b94b6536c57c3328fb89397f2a904cf4a
MD5 672766357d9f137c53a38d74993b050a
BLAKE2b-256 bb1a3cea1d9dfcfe9c5b57ac0a71833d2e73d3a09bef60600372b422f28f9f27

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cf537110721f0d91dd0bb0015eabeab5cdd44180cdf4468790e1939a5d8a8a5e
MD5 7c711926feed5bd2aece2201a24da577
BLAKE2b-256 db3949545a9ebd7edd233e451b32ae0136f460536086721f26edd2081704f718

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 9b9db500922e0971e07eb416b9e45a436d9e6d7f8c77fc43176d7ced5f803ca1
MD5 294aec600069379742352e90c49b0746
BLAKE2b-256 7917c18c05fba15621ae7ac3c40bb5a2d4cad0bb8e378ba1b30acf9ddcaa6c04

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f89f4bbf290c3bc97ebe8e59c8b7b2d01b5e2e5af30ff5c87fcea66ae444850a
MD5 6da6dec5abe70346b3f19d4f9dca993f
BLAKE2b-256 92fd447cfd185a3ad87781b80281096bb4fc91316aab11a9881926b2cdb9a4f5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2ce4a129ecaf39d2cdfc1541922b2e4d066cbc8a9cd2b420e0fa0eab445a3b5a
MD5 e371e8d493e915c8bb73254209b9ffe0
BLAKE2b-256 39e418549a85d7d06595923fbcb0cea7a55f5ffccde454d87d300e80bcb1ea24

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 b705a3e668218f2624302b42058aec4e4b27189c4bea96ea636d971afd9ca1c5
MD5 dddec9ec322e0b6ec217368c42950433
BLAKE2b-256 db97f588543d4027f85b731cd58024eaead5e59bad76131cfaddf1a5da54539a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de32cd15fedd71689eb148ab6a3a4a7df10a3065daf8cefc9297c98bbef2ce06
MD5 b804089aa76e7bfb4607aca1bc7e5f15
BLAKE2b-256 e2c13f6ff170441ba00c43c22735b36f91aabc15481cd00207932d5f6c0900e2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 33a43acb3ab27358c50d97bfc79d7743d26b294e75acf5b22d5f44f5efe29905
MD5 2c9a717a32b6bab399b8183c5f1d7149
BLAKE2b-256 5c728aeb8bedea0254ffdac348427477f7dd55d076eb6ff1a132ad189ce423a6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 37c99f593ecec701d2b507e43905992ee839ba85e4b4f49f1e189df3233478ba
MD5 a706353efe86bf8f7b5a407b94a7f815
BLAKE2b-256 38ab6ed37edd0966f93a0d0304ec3b238d29b88cd6cbd6b7ec1b7c98820972f5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4c2c274f3062f3545a907e27cde28e0b48561f134863d0bbbd9f36c2bcaeb4d0
MD5 be6725eb6baef69db6bccad954c8f097
BLAKE2b-256 2d49a09e977f5bd3e9d5794a8e6b86b783ca665b9ac25c48d14bf41d165ad7e8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8fb1d7f84e7bad131f12eda0f8cf3e6c0fb97df863eff37d215904090aaaca87
MD5 173c90a926081aed7fd51510422a5da2
BLAKE2b-256 2caa9184e60f615fbc7637ee23e49a733e54933ae7ecbc07b589456fefe7e8b6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 609cac3f4456c9d7a56b9dbcbe31ba3c5f6378c9ee431486d0e5e88037a04094
MD5 cc54e728aa8ae0a945441450d6b8654c
BLAKE2b-256 744319d1eb91b5dfb7032a8f8a71fa7d758b4bdc3abf737bd950a8e5482b33d3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5fa1274d20cf1cd964198e96a78c0d01ae99a8fcfa1f994276d9488f4c80016f
MD5 6ae394fd48296a259e5e85e623ba0aaf
BLAKE2b-256 38e7818f3f7ca38f1d7270e39273f13373cc0b05d4d3e9bfaf1d22bcf79ebae7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3251e000d8493da88f37705bd4400b0b9fd70e0645504e6fbffd75041e1b261f
MD5 9a2a84fd0c1b5319bf6bb5dd5cfe9a14
BLAKE2b-256 6233b338727cb58c127b73d3d5e6cbe598388a50d149c0fc654f4d54656ec2b6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4d08b2404c5262c7793480a5a99517e2a50d3ddd4605bd1b40d6592f42a10d71
MD5 df1c69886b752165873e2eed3f2154c2
BLAKE2b-256 e08fef88c54ae92d3058eeae13248f51422537b4fd4b735e26329a2a45e79f9c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5b1367d0267d1c68cca73b658b6901eb149e9fab39fba4ac30fa8c298af75cb3
MD5 efbc7f3752f49341ceca4892130deaa1
BLAKE2b-256 f53d1e413eb498253adcd5ba24a698bda62222a28cf432b6e39abf07b1203749

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e296c552c5a31daf857d6dde217b2ae0b72dd2a9eea86bac0151247d01bece64
MD5 819f66b6bd4204632b13dbed0450de85
BLAKE2b-256 05fd861070a4c70596d42d20ad003856518549b5187c5ab7b292ca8eff11680b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3f107d9b6f0486c61623b47c67cf6cbefa304f9cd33ff4fbf8a520029d7c6db3
MD5 d3980fd9cfbcc71f6e72204157eef2e2
BLAKE2b-256 aeecfdd9f13824c90cec832c24903df946622ecd7701f60711e87f4c1fb87067

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ce4f60ccee03cb00a1c4d49a60e70102e8495e3dae2acfed0614510cbfdf2758
MD5 515bdb7aba527a3507022f480f386077
BLAKE2b-256 adfee1093f810f9ae1d39ae6cdd1630aaa482a09ba28f47ed2adf3b62506889e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 45708fd5c42baa36ce95817f613869ecdbff86ed87e37e76461f98de5e2d441b
MD5 e300b0dccd230845385dc7bd303cf875
BLAKE2b-256 9e05736a120000e8fa75e6a61a995e759b014ba70c0564ca770b97d5b626c180

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35b73585d4916a70ea4d9905f70af3862226cee75a2c3e0e0dc33e95adf02454
MD5 b61b2e0bba42cedbe9148bee7e1b69cf
BLAKE2b-256 de2b0a60302685a3f05ea21c7dc0011f730883e32571881bfc253bf3c8b5e418

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4fb0cf6fc8313fc575770bb13fc77ff3af58f796ce0c071255ba53ae0f6cf93c
MD5 404cac13eb8f2c7725505ef64c064769
BLAKE2b-256 9a9b5220b873ec56cc68a6d7417c8d52f5c236f82c249f93c263d7f1af0b6199

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 dd5690ce922679ef969d6a767476ba975f85628226be80a8906e13abd198a1fb
MD5 8e12323b739b638e705b4b09cb292297
BLAKE2b-256 2f80234588ab4d6b67ad55e2a682eb06514971c6d8a7eb41c29804673b44235b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 86ea0ee624b07f2b8cb037b08265f0cf2a4688e78528b51e680dd285e0a13ffa
MD5 52732a5ab5615494dc84d433e13ae744
BLAKE2b-256 289252b69b18030b87adfc3f5fc2e292780ae261265d460ecb6c011bbb34bb85

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 728e51ec5ae06d818feddbdb1c8c1231dff4f81f82109c6edd1a3f219221d742
MD5 dad9a56634613aab09d8636ec6733f0b
BLAKE2b-256 a4d3dc8fd6111f94d378c1443d5b32bde63464a49a4b4276a1ed6c7ebffb41da

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 fd1a80cdbd29c6fff25f711433e0e84db86d33d58031f5434030da9338fd8523
MD5 750fcefad4a40f3ed17f1b4deef1c1b5
BLAKE2b-256 3542bd7909c96d9ba53dce3a31702c26766effd6a14da5c8fe28e5f84a9c2137

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 539c74eed3c6065769d974fdd7c0e194454be3e7ff22b102cd31e948cda8e7ad
MD5 f93b6dc757f2104c76077c4d671b0fd0
BLAKE2b-256 7fc0abcbbabbef71db30946d9baf03ead5c02964257597b7d31af7ead531f5b1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 428c0d9a35fc3e29530c728651263f693fae2dd23823e83823f2132ad74ee4c3
MD5 764b05f45ca105d82f47be39b2309a31
BLAKE2b-256 e41add1af9070577a296919acdc5937074aec2547c8291864bb66f503931e03b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 86202550f52dd06029d0e030e2cc417be4af8dc9c18d471be3ce26703241efeb
MD5 e5f14c933a24129430d682dd34a617aa
BLAKE2b-256 959045cb7a82fcdb17a634b9489254aa16909d6f78e15bb2bf26f65316c50eea

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 046b39f31dd4a8d8287c0a6d66708c78d02d33548095af59cdead3d2067a00ef
MD5 c57ca4b8992865c5883c970f83a31ca7
BLAKE2b-256 1f6616e2c0c47ad749ec0ca48e9d6d6171989616eeb0309a52f2057304cc4ac7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 b4893c5a12139ed701cc604db501458bc02740a135569f5bda7dedbd18e40617
MD5 2134bb75b129650a8e6eb97d2e48ebea
BLAKE2b-256 f4305a2fed9f4df655c1d02259d73c6e63d2626d2c689bc150a56a468b8e350d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 86bed35d640ce5a6609cc679479065f7910ee10e03dcd67e85314a6e8799b4d3
MD5 600837bdc2c4d5576df9b435addcf19f
BLAKE2b-256 41e9b9baddee35936ef493f6f0dc7c6cbdd0ff261351eb1835b817241953f6c3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c06113f27376c332749d06ecc4d20a643f63808a0f6b486fbf4f1d265b569df0
MD5 5994dfbcba129df65a8b0a5cf9330477
BLAKE2b-256 cba732dabd64b1bbbc3b82a188d819adb5069d6c98aac987914f5070db7b3085

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3bed2630fd9001d3152cc504909b3340a6317cad30b933fcbab556a3fa42c5ce
MD5 10f127a2ae3054796cb63dd77d1c433e
BLAKE2b-256 c6bcfadc9967faae1b1375293f6a29216d118bb9f62f6107b9fa4d2d9777f016

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7117fafdeddab8a05d56910f0443f14a8cda95197fc0af3b817bd935e5a5194a
MD5 0374799c9290f4449e65ee62768137f2
BLAKE2b-256 d3c9406dea35fda5782529d592bf4efaf0a65b3f662a970631c86e57b682fbf8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6b27ed24b313c21035318f71a3b239c228590c14eb16b9c2f81b7e4cbfe0f0fe
MD5 8b646f247b95d6a010ca9b058fa01a38
BLAKE2b-256 8c311da9c2d85283a8e3f3365de8e2e979ccd81138f708897e1f5dda5a19d2d5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 034c6ca3c8e661deec367adde186ea90fd678cddd5d0f2cbd945cc055c4d9f51
MD5 e018435fcc80a772677854fda5b52708
BLAKE2b-256 a7ed6c77ebff05df896c382c44ffb49502165506dc34cd93719e1bcd165211fc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f26dbc0488e0caeef736e7184da2ba9885aab6dedce265d1a78683312efd4514
MD5 879e6e5b0303f6c10141f53471006e5b
BLAKE2b-256 4e46693ec2d60f194d526ddda94c384534d02d85b1ea0a4fc8a1e113259d37a6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4cbc5338be41d9297e4900305e63a8e70dc189dc7a5dea321dada06d6f39f30c
MD5 1624fbbb00c5baa980705b24b4a486cd
BLAKE2b-256 ccfbbf229682ba8cd60fe48a677a3117df5c24a672a68666063f31e894bf6d5f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 967049cdbbae11589e0553d184942d8e62a67385cdaa007861623578c1e414f3
MD5 1eb790b0daae92254f8e7b744f283c8d
BLAKE2b-256 ee98b002bacdcecc52f90cf5bf78d5ba71b3ab35ed930e12b1ba2e5f17539ec7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 92a668eb9d65f0029a7adc032cda7378c493972ff2725dc9b0770b94e3f06873
MD5 00555c5879408236456f507ced16658e
BLAKE2b-256 676f220f73cc4f52534e0ca5af8e069146528a00285f30b21aa3d4755e1061ed

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5fbac548d5cd71f58125a65736439effb17ea959c3bfa9f4e0d72cdda0dfc1af
MD5 23085b3c3de8c339d04f47e190a77b3a
BLAKE2b-256 215490dde01f7b9fb9a17188a6a9efa1d520ff89cc3761c20ca30c5122981c5b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4601c765573f3321465098c258d2d5311c1ece0810f028bea606c12956b7af7f
MD5 4892140066cc4e92016e8b078e5635c2
BLAKE2b-256 ea397941580504b998b65dc6a7b71d10736500c845a0bda08d7778572da1d4c6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ca9db664dfb57fbc96c3a92049fce24b3ef2ad15b2d6357b86b0dfeaeb54c5d
MD5 a567488891fc7fa5fda50db74ed51a08
BLAKE2b-256 ce6816fece9d8970ad7cce4118ea018ebab31a60c4b83a032eab43bc00586079

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 38b3c6d15d4d70d8f87b57a05e83215ec7adc07f0e679f8c459d4d1caeec2994
MD5 950d9c0c0aeb6b747c12fdc87652d9f6
BLAKE2b-256 9d0c529058408b7a0a9eaf3ddd63c2f57ae9b5a0caad7dfcc2ab418179eee16b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00058aef37d3201396a35fb950b228f3776585b3a7b7c98186bf888720585358
MD5 fb85f8240e2bd2749017a2adfd3a77b9
BLAKE2b-256 12cebad41577797f59b8c308839c4bc01fab6b6b0bd06303ba96e0534aaafd98

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e701abf76504edfb2e0676a4edd0b2a5ebc779844509e2661d585a77052de3c2
MD5 23ff3d314ea8c59c9a0708aa58d8f870
BLAKE2b-256 9a154ba27004c207a015e143a6c15c1c7178804cc645e7123f527c1d1e433e8a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 2701ddd12fb647ef0a4ae23ba58e2a2532d97ba2e8101a7dba8b996c0fc0c9db
MD5 f70a99c33a904979444881b83c174292
BLAKE2b-256 16782695d37c981b69e05ad8e592f7195dccbcb55482054a1c193c1b43854b10

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 5224e010174cdd34e89abd3d8e9370e032a60beb73426ca3fdfdade29d6244f5
MD5 0ef0bf360e3e1af9b3df1df2c5f77d8d
BLAKE2b-256 50953c3de6d2ee6a2fde057061bc2b7a24aa5fd684a83c8dd803499d9245ac72

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 3ec2747513fc38dfb14e74ef34a9b8abe5ecbd948428231f7b268398d6ec07aa
MD5 8aca0d74b532eb1ea42e3f68cc8eb386
BLAKE2b-256 4dba8a2484e9cfa9b501f674aeee6cca0687255cf80b63f1f295d40d15164df1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 576f2a21ac9498b73d7e852f4e8bfe56a210ddfb8bb0c4abe0d885d5ea10da7a
MD5 5dc1cf575198b69a25c3f7bdc6408d38
BLAKE2b-256 df6e41a5ca861f2db19a21ba78284d9e00532179726e854596d0840b8fd9d7f6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 6ada05e072a5fa918e24063a3bac161bc5b00b59526280af85d13c72ebff6a7d
MD5 7664a38b55c97a6ae8b5aa6351708dcc
BLAKE2b-256 73431dfdaff8b30a3d07bacb230206c6d364a48189248b7d614c4675446d5980

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ac1fec0fb296d3fab5ced8a1240e1250ee093dbbf36ff2d5cd3bef13b03af55e
MD5 f1087f9585efbbbaa6a8761d41ea1ffb
BLAKE2b-256 a5da664203e8c0827e0773aff925c03dc211e42f888f97b218c93ececde4b5a2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d720df56cd1e76178f6f47615983875e95fb50c4946c5ecc6aa01f4f519a0955
MD5 fa63498908a0be7837a41c9cdfbe9e07
BLAKE2b-256 562bff24d86324e5fd65768ec3d61beec58b415e3f612c7bc432770475c8a912

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0a6b06cf571e4f184b7b7c1041904ecded67e27f46e999d91b422bf3f685dd64
MD5 6ad929ccb989b96eb4590976d4e5f8c9
BLAKE2b-256 42f6f51836e44e7d2292bf5894a1f294dee7bfa85d4b8fc361c5eb7ba27b96f9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp312-cp312-pyemscripten_2024_0_wasm32.whl
Algorithm Hash digest
SHA256 c93ed69711736ab3330b553c5d4c23264b15c053ee03f441e81c98c452bd54cf
MD5 694efa4c8128aa52aa52240d31f18a47
BLAKE2b-256 d81ff00b149bb1d9955cdc7461c3415cc562cdaecf9200f5509ce2a756095c2f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92b32e59fa8a4095310c88f35c9a231051d5c8b08efd1ff5ca0931d652fc6e77
MD5 783880443eccd2dd3cc731a0260c02b3
BLAKE2b-256 b6f04d8d9b99855ab7f1863e7569899a9923bd82b91b96e7663fc44c7f3f1a3a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e1feee7a9c771c9db7d6f924ee2604898a779d2d50e5b498714bae01eb3b9a4e
MD5 803680b2ac6ce3af00b41ca84ad149ac
BLAKE2b-256 b22f523c5dad5336f53db06d7448078a12c366a189d42bc3487992b3bfcfd4c5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 acca6bbfc58405790bb85d78c11f75837fd34625294fabcfc4fea729e7cf1b89
MD5 f4feea6237ca11c922964b68fe8d240f
BLAKE2b-256 e07124de59793e97afb7ae9beeb1b8be853a245bc02d75e0a2378463a297f412

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5cfd6e3f2306342d5c47db8624b729f6e72c24523c2994b0903394ed505b5012
MD5 dd1f42243c0aeee540dd5213df842b32
BLAKE2b-256 4a0cb02cf5c5d9c05e55609e1d673e352b68268431f6bc282a977e3b1e7665ed

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a7dcd49c7f4ee3d5dac15399d4d86ab5d73b12afcfaa221b6e28ea905e603c08
MD5 b3f3ef15241000cbf18a80cc0f9fed1a
BLAKE2b-256 bad0d774695f8b4574ea7edece6afbe59e94551f2824a01583a1edd4941293dc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b0d6177b3704a69d2a1541118f2b6e81833b5a074315eec6f0490a8e486f527b
MD5 cf3aa739d2f060317e3c9b2c4e07560f
BLAKE2b-256 5314aab1abf29d8e3f08614c42ccc473908a18525c582008dbd073241cab95dd

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 262b15cf5284d1e79f3ab29a4c93cfd29911f64163cfab0d0c8f7e5fa5c46c0f
MD5 5efcfb2d87537767e26335250e5bfe7c
BLAKE2b-256 7719ecc1048cd5bf6638c4492c5fdeac15cf9a330ae2cf20e246b7fc69e3e574

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 6a513a78935bde0ac632fb07e9f1f7a3084c9b43678546a807573628ae769727
MD5 3fa38df5bd3f5e3bb6a9bce5f1769f44
BLAKE2b-256 117aa7b3c1ac934161f3c50d09788478205eec442aa8e4d71caa32b1d5808c99

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b68e7bcf16c06a4fe12f53a153acbfc137b541262355846c8a2dc11787844a8d
MD5 706f5bb4eb7c870f690a952d5322f0fd
BLAKE2b-256 cf2da508a2e67ebf8869a71fb806a21b653cb60aa04db65902a6408bffb0e1ff

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d20a5cd4afdd7fead8823d88f834dcb61456e41bec4d0e1c674fd339f1432ee5
MD5 4141f6c45e4630a5aad76b0709c4100e
BLAKE2b-256 7b0384f1122c716d5e8e4f64a2068e21d71e7640007da7e2677f17f9d3c247ac

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a9b10afd7b76a1a5d66d8f7a57585251719c2ac6be26cef10d73d600beb2845c
MD5 2806f96459d11d2144e04430e857dda5
BLAKE2b-256 332f7359f9d0e657add3a4b7d59716eb6419f7f65c25b93e7f4b32c6b185cf69

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 239d3e7082110e84dbba2d96472da728b2da728c3da53a7973628c4e734d65e9
MD5 3b1bcda274d24a68ebb16b48ca4af51e
BLAKE2b-256 28019d01098f45f41094be3a8a511af62b489e7930440d203d15aac6125f34f4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 01e6d8b6c2c731ef21f0420bfd8bf116ec0458e52a116fd1876743351ec47541
MD5 08dfd3b19861782e808e5f13020bf8ef
BLAKE2b-256 4150150aeccc3f76f90f8695fd9af79dbf343e92f28f28b63bdd6d44a7dad453

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6c76ef4b512c9a3d23861ebf0a5cc0560b83c9c53a710fbce12109370a037f38
MD5 e4905ceda2ab2fe3945780d21e26d6fc
BLAKE2b-256 735ec7a43e8588a2925800ade9fe006491b9acc20e67ea247140bca4561167c4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 099b5c66fb8a6b4d3b8a859095f276349ea89c99378eda94d0939179cbe4f54f
MD5 b9f5f71df93766d1a878a25492dbe6e9
BLAKE2b-256 9ab9d305f2e2ebbacb632a0dfebafac94387e95ea035a371cdf099d34006cd8a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bf40e38932f7c8acae7f5c0506b85dd726c77527e5c8b2c4a8a997589df009d1
MD5 ed51cf9ceaaed269cf4bf0782bc0c050
BLAKE2b-256 1b9626c0ae6d0d0119f5ad3a7fe7568fc893ab3323a7245cb7b9e6ab3e1a0dd4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 88788e6c3cdafcf7d22de3badd7b4a00ffbea812fb246f3a04925fe79d604cff
MD5 cfacdeb866f8e8fd30235db962c11413
BLAKE2b-256 5811a3f3be7f90bf40cb5f8e0fe392910efe444d9fa75ee821cd6905e315a06c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 16636229552758f2321cdab3c5e35425fe8cbbb7e681a4117c12169281d8d3ae
MD5 4510ce17a7b8c2b829b8ee3985c8ca08
BLAKE2b-256 c2f42c5df622a3e315db80a1919c82a46220a26c5ea02e2e074359ac855ef504

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 477528229bbcc72b8576bb2d97dffa8b80f2773e0eb41626bdf16fdd420ec727
MD5 8a997de7959edf4d6da8fbaf53fb41c0
BLAKE2b-256 91dbe11f6f0e92f5898e782170caf418feeafad48b6838c386fa84e85c4968ca

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9202de7e00876fa6baddc0d59cc5fa0d8335a6f34e1c59dc4db056aa275038cf
MD5 5e9e96d8cb5a4cd6cfa6218ca5d43860
BLAKE2b-256 7fe58cb8f4c37210be82f6555de925c345da6528a610e39bbb46f75b4c12f888

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3cb961362e3232a7f6349cdcc4eab9a491db9ee3ab6e1ab031820a350319eafe
MD5 e5e1d8cf0e2ca6d8357b3caa37132e61
BLAKE2b-256 3a18c77d127842eb2b42a89ae35d651d9b49571da0448f5829b7d4ae94e02f0c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b4890ac7dca5a2a320785e14968017e0f79ce8d2a2518405a5b34b86bb14abcd
MD5 9b55f42c61e6e22e1430489503325bd8
BLAKE2b-256 ca0b8e6dba582e416523bf5eb976504cbd8a6e5c820fe1688c136a09c667a703

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 faa4525af7a5183ccdfa89bece8a50a07b433919e74baa85429b3981f22d317f
MD5 a978416ca3eca6d812afa6225da2cb02
BLAKE2b-256 f8bb756f0d141df7f682b234135d8c14b3557f1ed3420556459acc639cc19684

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 759efb6b3182e9dd92300fd0865a8e7fafab1c33028260340924ab2e1945b710
MD5 113ca76f98bb23ce07ea0c322c8a074a
BLAKE2b-256 6acad892050754fbadf1d1a2cdad6e9bf1c869089352c3269bf6a901fa9e91c9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4e427091525407668e27a57227b57772ad124eadcc383a3d0826b309da9015ed
MD5 19a012de5c1631a491315dcc3bca6ca4
BLAKE2b-256 deec9fc392ce995b606993cb2db8e6fbcf26038bdf31890de83faa9539b954a8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1b93003ef014f90c3e73864ac2214ae14fbb228f90294a01dfb650a6b5d041bc
MD5 93b80de33147e8801a9fe3009bc32b7c
BLAKE2b-256 cf98cd1804921835002bb88b6f4f07917aa3fa4534b112f09c4dac623e5d2254

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 84cf3b6d702e339a4a5b13d3a36afd04d7037e705848b93678ca9d92e29a974d
MD5 bf755410b25a3815b81a28254bee28bb
BLAKE2b-256 8276e95523379bc9a2a85898f1a29a65f0304040e32e91d64134292ee97b7d15

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8d7536114d5d91fb416176fc77867c966991d893fc075b7562a9d9b906e4bd24
MD5 d9f9e2e4c928f181dc664124eedd78a6
BLAKE2b-256 ea7e1615145abcf4b98e79cc982f88fdb0b6f37271f87c68fabb1516bbd3d976

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 09552608c79a5c4f6dca83ddf829744d1191764553cb02c9b1996250baf09b46
MD5 fd5090e8e25bd68b6ddbd7fded20877b
BLAKE2b-256 108a98fdd75d87a919e4273fbc7faf1b1df9984fbe80af66c9a63a6dd136401e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a67cedea7de5a98934d51aacc841830e0010f42ba76f6278f3de49f1e2d2a3e8
MD5 b93a86b9d57419ae9599342836b5cbfb
BLAKE2b-256 e3a33aa28d14d3e248e17725c86aa249264d6770c022e0dfb31e39227ad16931

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 24a4a1c7be4714a361ca5090e2eabac5f5e7ff23d5851f4abc09b322cce8e0d9
MD5 5e9b450a276c87cb0218bf6398010a7e
BLAKE2b-256 8e686fbe780a9828d0ae6be567c8863fda9b3c45b83582549bd947be02dd6435

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d8d0c4c38099bb51e47bc46ddc699e845a5ea3542d61a9157dc14ab5177ba3ce
MD5 e224b8e91e858e1c6f15318ca9681ee7
BLAKE2b-256 576f80a1f9a86a98301812daa3837e01deded25e6bacc53f1632daee74725cc6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 951becf5797af6eade32a90249a5e9b9cc06724de8d36d2d72ea33c12d1270e1
MD5 294b96fee958150c88f975a8bff7f9a0
BLAKE2b-256 ecaa0e97ac418372b824128c7ffb3e7c64ab9978c3e9a87e97fb0a12abf6be7c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fadefd0f75a44e6639edb4c6db1801a39789dca64ba05dd962e5134133ec8dde
MD5 7343f539e0ddad75b4217ce4e4e84a04
BLAKE2b-256 2b42f24b1d25ba7597a4f24336074f039e7e257029ea4822355e2a295e8d2137

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a8dbbfc1094b854d552f023b27e2d4d55bfdf5e9dbaca5b9dec794932ff7f64c
MD5 0f5fe09473b19ee496746bd8110b9752
BLAKE2b-256 26cf47aae36f2a6338aa365a721008541e764291376b891129bf9f99d5251fbc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 a358a2a99c19d56d8292ea45631e09f8700c3cb2343199d857e9cae7b4309f55
MD5 9e1a2a1790ce1cb92a2e1514ad4fc2c8
BLAKE2b-256 8181e0e2e130e1e5d115e135184481e30307e3c7c1f52a7c3fe3d91dc5c343e4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f35afb79a3c30c56084a3ca2aad9f96ecedd024af25974f60c2814d1b735bb43
MD5 abc3e036c9a80bb540819487c9b9dbb9
BLAKE2b-256 e72d45b74a6757828cb42399562a1114c4ff766d8460a165a60eb319e21d4d2f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0596b325b778f31c5c3423e7d17ecc5cfca502e811b9c79ae1dfdc6548aa315a
MD5 274c7689ed63001ea04ca63eec85fa50
BLAKE2b-256 4f478162900bd650e351005b4660a96e2a2d6e7608fb3c234dd672b90be0d913

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f672ce9cf99702124d2bcffae96541eac948d80381998c1b3c14547dd68f314c
MD5 058ed81e8efc5b3849e31cfa176d19b9
BLAKE2b-256 ba36d9e418b13a40550f57fabec34208913a51a877b2c0fa098e3032cf49f420

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0fc13a79d127a668c45605abf25a1aaabde6736118144fe0d6bb42b544c761c3
MD5 e933bae48ffcc201e3a3e1653931abb7
BLAKE2b-256 28bb58628850f3ca34bd9dfab244d626cd8fa524fd9dfdd562b0247106d4b8b3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e5aba4715d0d8f479edd8d02b5f7efb2e6e5d32b2a8646c6b359fec877484e5c
MD5 beb0eb068ebb23e3e00ce3cec0e46498
BLAKE2b-256 a8f0a06d63c885e1be627e3d4e569404536ee2f97b8c8ac160778341e738b084

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d7b63c7f6044ff7ac7237c3eae2a8a914fd42ab1429d2f269b03b767029157b6
MD5 1346efadb32f9740fce66bc3d8036099
BLAKE2b-256 bd61f1baf57efb77e99ccf182b9bf0944f370b547af677fcbf3e79b1d5efb419

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c1047cd16769336f83202de9e5cd55e559b0556b333a2ec1897050b28ff7abe6
MD5 cc230bb4a403d66afc91c1699ced226c
BLAKE2b-256 b7c1dbdfc3ba725feed06a578455d790a105a32bdd1ea7840d0b3ed782dec085

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a7c86e6b2fab33bb607cd7b7aadeab13d72fd6acf78a8ea10014700d6e6717cf
MD5 0569f21c21dcb14c2000e8420b067bf0
BLAKE2b-256 daeabae52c0f07fb857a9a0109f0704e3e5aa090ee719cffb0db0930a6b25184

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b14c1c912f5de4ae17ee90d88c6318c318ba23427686ef6cf4e2ea16b00078bb
MD5 ddbce3e7e4471d5925054e5a189b1aaa
BLAKE2b-256 37501a7fe9aad9c2ac9998cbfae86ebe55a46dc68e02e133ca76f0aa2c5bb4e5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4b6b85e946d6607152a0411d61b6ef49d201dd4fec6600e910269eb2cab82de5
MD5 14c3093a2db0843b11b3f1b084030c0d
BLAKE2b-256 72781907985b2311e4fa4c345f832ab6a75df71d604c8835e4bf9a639fed7a09

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7b1da97c5f0c606c6167f95b9c0ccc57705f2b5fdd8a5d5a4a3e5ae7a6e9a343
MD5 199997ea2096d4b54feb437332d0c088
BLAKE2b-256 7090ba57ede440f3349e00d115ee65b4d2f40503e73bd80b8954fcb4a93e4cf7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a977987a4c4a84df38d04f8e5f6e926d09b077d3506ba5694a5f8f61f92d64fd
MD5 8462dcf295e2c0379baa0b37ad1c247d
BLAKE2b-256 f6bba24f81ece1a2e770b69c2a8c43212c187fe37f72d21dd1898b13e28ce2fd

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 57df6b5d6dbf4a6ce2d55c2056174b046bdb6d79a2765f2d64a9b41a64940a30
MD5 60413227689d00caf7e779c48262b0bc
BLAKE2b-256 d19f750c34990f478da93e56d7d26adfad7916e38d442f885d9ae9d6f13c8209

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b535bb83d84640584f50bb711698505fb294f3160eb221c774296b9b36955cd8
MD5 b5e0faa262d7a2e66c7ebde701612366
BLAKE2b-256 79f8f6563073a4184a73783b59808e1fa4ca6156b8d6acad4821c40c2979c599

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f7707ee895cc627e1f911819502c18af05f6319ab159faaeda97ea4dfb515c32
MD5 a1bef380cc7792ad235484f1b25bac83
BLAKE2b-256 5939f6111eaa99a4385819ce743a25fe822c6525f7c71e9f678fc24b03b0dd5b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 2078a0ec20fb25a5e1a996b72f793198ad3548439b4d30b287177d8f1b6a6ab6
MD5 3db337eb81bc408ddfaf8188351ea747
BLAKE2b-256 7bea77553cab07e7c26100a87eb2ca90f2dc1854111435741fb13e6073ba2d43

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec761821a8d50322248e5e2fbcbe1d20364705f4074528f4d022f05502a50323
MD5 d9fe5ae6a927f248d810c4dee6b56f9b
BLAKE2b-256 578e4a8960ce795c8cc556668315eba39372775f701984127464183c4324699b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 33a9edef5c7a43b0ac00e4e85983925a724d17828b71d810026af646244abaab
MD5 bd3a0c6c720d3d13eb0c4c236dae321d
BLAKE2b-256 1608fbc54b47f133f8172aaaa3adbb23ab82cb0454c0fdd5ee29cdc415056af6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 341c57bd02a3627c2e3d382e156f5a2a7b5fa6aff54821b869b506e89467ee39
MD5 5fc2143f6f7d3affa70ecbd48271350a
BLAKE2b-256 891e27658f9965964c0256fae5152e03b403701fd0f26dc710583351a7331a2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.3-cp39-cp39-win_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.3-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f868c7ec38688c507cfc7edb7e01683187da3e3de55b0fa147f878ad54d00498
MD5 9aa98f6ec67f24e3cd62e26ad7cc0385
BLAKE2b-256 c9c8a0e55799deca2712fd486d6b710639ccbe063095249287b35ab1f979b627

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.3-cp39-cp39-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.3-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d1a9b60c862f6973e608371a2264068fecb930b482edff23a1914298f5eda4a9
MD5 88966ff988c38f1777c226d7e5c5d89f
BLAKE2b-256 3fb2ab71c50f3e9a35c33cd2bd27a8583e87ca0f09278811322b1d96ef055154

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.3-cp39-cp39-win32.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42ac55b8b1aaca23b7156b50707b423080b14a8104c29702921eed5d68a98437
MD5 f85fe92f50c192ce8c428054233cc515
BLAKE2b-256 15c8485b7c377fbf4e9ada3ff76e993a9229bab00ca614cc7498bfd67acbe2ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.3-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.3-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 af3ef2982766c50bf334fcfb4021622e6d8e331b6a097c69137e6dec02dc6494
MD5 f8c1e5e4926d78af13bac3940d61b8aa
BLAKE2b-256 4440a9eaa35a0405f958e31111ed24d4c34f497dd66c43874ac3fab568af1b75

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.3-cp39-cp39-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.3-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.3-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 558cd4a0aa6b116b17274f485e73b01ae9e6c2c47984b414154e0a684f2e21b0
MD5 dbf2461b536db371ec5790b355a16fa6
BLAKE2b-256 ffb5dcf5b12d6abee4ac440393adc5717da5f91bc389c734a90b1b608aae5774

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.3-cp39-cp39-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.3-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.1.3-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f2c46d44fd24cdb64c5890383b04867fc71206af945650405b6a7e0667d4e8d7
MD5 fd936e4f2702f3cceddd6bd594d65c34
BLAKE2b-256 244a04cb449a407070b185f95f3e49708943f65f9cd907eb58c4e53204994955

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.3-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.3-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6169cf04b737d65bc000f4bad21aaa46518b0cb4565e16b0720a62e6117d0bd8
MD5 eb7de67c951d171e1e0e958862acaa42
BLAKE2b-256 44d63c5f1260d6c3ba482ae9beb4a64408d928ea9ac4dcc6044b3031a3ceb7cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.3-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.3-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9f5113214e8c9fcff56b8afe99441099fca740d6fefad4f6e773ca48f4513791
MD5 5d99e0df151c32c3276900ae55435a5a
BLAKE2b-256 b3946f820c495e185951fd77a9ec1bcfbbfdb596b26dabd84c2bce29b3030d4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.3-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0d1e9fef3e1ebbb86663ba6bcc6a5bc4286a08f7766cf4942f58d075366e1e71
MD5 e9d6536dbd3a7bd75d771d217a9aaafb
BLAKE2b-256 7c56fdf36acdba614bc86430e0b8a887fd1617a0241597e57723d4fb9cef06fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.3-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.3-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.3-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0e2059748f64ada9cd0e8c68af5f46c7dbdc6a37b937cfa86b09449186a18d15
MD5 42445e9f50354950ccb38a7047b7646b
BLAKE2b-256 d8a70ef397029e0fc9f587015e16b418fcaf45ef186166f21272bdd2d65834a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.3-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6fe47f4bb7669b349a9b462bd786214be38a6a1c70a5a1e3ce22413ee225451f
MD5 37fac246718b03e9a0849b3c0f60e453
BLAKE2b-256 9c2de063082b7913f03578f92e53c301929816683cfdcf8b958119f311305261

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.3-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.1.3-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 adecab97ce23ebf527757bc7bd593c218d7c02cb70d9704da9d7869934d7d99c
MD5 72b46ac311d7eb843a47953668bf278f
BLAKE2b-256 4fee3a3a4ae0a5910c87023eba521c24d2b8b77c63bcd5f65def2c37efe92040

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.3-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.3-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.1.3-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5995e2c01beebf5169cd525decfcd7ee00ee4922e672c9c650e7101181007c58
MD5 08742404f4743c109ec8b658b52ae8ae
BLAKE2b-256 674490eb0280532a97627cf8e776b589f38c42a39fe3baea73b045c77b3aec18

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.3-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.3-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.1.3-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 45e95edc2ab420bf4affe1debf6944ec42b475455285ba78aade82f0097b8466
MD5 11475a29778fc8b09f372421d43b7cd2
BLAKE2b-256 702f2b5dd7d6a9c9a45dc47b5f700e916891c279203ad735a5af02bbaa72eca5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.3-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9e16497b596e6699af85f6185f4605d8e6563d36faf6d54c53ec443fee224ca5
MD5 eeda0172fa7da970f04de2fb196ec6b2
BLAKE2b-256 813d814f3240d410aaf4faded5a7115ebf662c94bc529e230c57ebde16dc81ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.3-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.1.3-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 99f77267c7b3b229f4e8e3917f69019c08acddb3f7dbb22517e7c2c70cc6b56c
MD5 fa7d4d1067f5cedae924345ffb3c3618
BLAKE2b-256 3c14029e71a6ea9e09b76df2d1bc47b74964f2825dd28499588a60a22afa2993

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.3-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for xxtea-5.1.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9b59c017494ed78b05c11bf5e0b345345d4c51442b67cb7450494c00958e4a2
MD5 e80c1028988394f1f98097d66084c186
BLAKE2b-256 63786dc5232429793baa22f036566ba6c1f6105dd016468dcd2d5ce9852d96ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.3-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.1.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6c1fd1b7b7d4b6e18b7e9e64e8987edcf8300691c2995328ed5dfbcdf200d3b4
MD5 15cf262d52842147695c5173f131f1ab
BLAKE2b-256 abec1e17afb1910e3dad39e15e4f40d516b1a1a66bc650b979a1abae5acec0cc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

Release history Release notifications | RSS feed

6.1.0

214 files

6.0.0

214 files

5.3.3

214 files

5.3.2

170 files

5.3.1

170 files

5.3.0

170 files

5.2.3

170 files

5.2.2

170 files

5.2.1

170 files

5.2.0

170 files

This release

5.1.3 This release

170 files

5.1.2

170 files

5.1.1

170 files

5.1.0

170 files

5.0.5

169 files

5.0.2

172 files

5.0.1

172 files

5.0.0

172 files

4.0.4

191 files

4.0.2

191 files

4.0.1

191 files

4.0.0

191 files

3.8.0

215 files

3.7.0

209 files

3.6.0

173 files

3.5.0

135 files

3.4.0

120 files

3.3.0

136 files

3.2.0

121 files

3.1.0

101 files

3.0.0

98 files

2.0.0.post0

46 files

2.0.0

40 files

1.3.0

42 files

1.2.0

15 files

1.1.0

1 file

1.0.2

3 files

1.0.1

3 files

1.0

3 files

0.2.1

3 files

0.2.0

3 files

0.1.5

3 files

0.1.4

3 files

0.1.3

3 files

0.1.2

3 files

0.1.1

3 files

0.1

3 files

0.0.1

3 files

Supported by

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