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.2.tar.gz (20.5 kB view details)

Uploaded Source

Built Distributions

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

xxtea-5.1.2-pp311-pypy311_pp73-win_amd64.whl (15.0 kB view details)

Uploaded PyPyWindows x86-64

xxtea-5.1.2-pp311-pypy311_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.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.1 kB view details)

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

xxtea-5.1.2-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (14.4 kB view details)

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

xxtea-5.1.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (11.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

xxtea-5.1.2-pp310-pypy310_pp73-win_amd64.whl (15.1 kB view details)

Uploaded PyPyWindows x86-64

xxtea-5.1.2-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.2-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (14.0 kB view details)

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

xxtea-5.1.2-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (14.5 kB view details)

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

xxtea-5.1.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (12.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

xxtea-5.1.2-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.2-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (14.0 kB view details)

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

xxtea-5.1.2-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (14.5 kB view details)

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

xxtea-5.1.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl (12.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.1.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (11.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-5.1.2-graalpy312-graalpy250_312_native-win_amd64.whl (15.2 kB view details)

Uploaded Windows x86-64graalpy312

xxtea-5.1.2-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.2-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (13.8 kB view details)

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

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

Uploaded graalpy312macOS 11.0+ ARM64

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

Uploaded graalpy312macOS 10.13+ x86-64

xxtea-5.1.2-cp314-cp314t-win_arm64.whl (14.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

xxtea-5.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl (48.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxtea-5.1.2-cp314-cp314t-musllinux_1_2_riscv64.whl (44.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxtea-5.1.2-cp314-cp314t-musllinux_1_2_ppc64le.whl (50.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxtea-5.1.2-cp314-cp314t-musllinux_1_2_i686.whl (55.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxtea-5.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl (55.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxtea-5.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl (47.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxtea-5.1.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (45.0 kB view details)

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

xxtea-5.1.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (49.1 kB view details)

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

xxtea-5.1.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (66.4 kB view details)

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

xxtea-5.1.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (52.6 kB view details)

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

xxtea-5.1.2-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.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (49.4 kB view details)

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

xxtea-5.1.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (54.4 kB view details)

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

xxtea-5.1.2-cp314-cp314t-macosx_11_0_arm64.whl (12.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

xxtea-5.1.2-cp314-cp314-win_amd64.whl (15.3 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

xxtea-5.1.2-cp314-cp314-musllinux_1_2_x86_64.whl (44.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxtea-5.1.2-cp314-cp314-musllinux_1_2_riscv64.whl (41.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxtea-5.1.2-cp314-cp314-musllinux_1_2_ppc64le.whl (47.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxtea-5.1.2-cp314-cp314-musllinux_1_2_i686.whl (42.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xxtea-5.1.2-cp314-cp314-musllinux_1_2_armv7l.whl (44.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxtea-5.1.2-cp314-cp314-musllinux_1_2_aarch64.whl (43.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxtea-5.1.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (42.0 kB view details)

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

xxtea-5.1.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (45.9 kB view details)

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

xxtea-5.1.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (62.1 kB view details)

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

xxtea-5.1.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (49.4 kB view details)

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

xxtea-5.1.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (55.5 kB view details)

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

xxtea-5.1.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (45.9 kB view details)

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

xxtea-5.1.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (41.9 kB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

xxtea-5.1.2-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (12.3 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxtea-5.1.2-cp314-cp314-android_24_x86_64.whl (13.7 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

xxtea-5.1.2-cp314-cp314-android_24_arm64_v8a.whl (13.4 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

xxtea-5.1.2-cp313-cp313-win_arm64.whl (13.5 kB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

xxtea-5.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (44.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxtea-5.1.2-cp313-cp313-musllinux_1_2_s390x.whl (57.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxtea-5.1.2-cp313-cp313-musllinux_1_2_riscv64.whl (41.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxtea-5.1.2-cp313-cp313-musllinux_1_2_ppc64le.whl (47.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxtea-5.1.2-cp313-cp313-musllinux_1_2_i686.whl (41.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxtea-5.1.2-cp313-cp313-musllinux_1_2_armv7l.whl (44.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxtea-5.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (43.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxtea-5.1.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (41.9 kB view details)

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

xxtea-5.1.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (45.8 kB view details)

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

xxtea-5.1.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (62.1 kB view details)

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

xxtea-5.1.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (49.3 kB view details)

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

xxtea-5.1.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (55.4 kB view details)

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

xxtea-5.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (45.8 kB view details)

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

xxtea-5.1.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (41.7 kB view details)

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

xxtea-5.1.2-cp313-cp313-macosx_11_0_arm64.whl (12.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xxtea-5.1.2-cp313-cp313-macosx_10_13_x86_64.whl (12.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

xxtea-5.1.2-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (12.3 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

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

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxtea-5.1.2-cp313-cp313-android_24_x86_64.whl (13.7 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.13

xxtea-5.1.2-cp313-cp313-android_24_arm64_v8a.whl (13.4 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

xxtea-5.1.2-cp312-cp312-win_arm64.whl (13.5 kB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12PyEmscripten 2024.0 wasm32

xxtea-5.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (44.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xxtea-5.1.2-cp312-cp312-musllinux_1_2_s390x.whl (57.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxtea-5.1.2-cp312-cp312-musllinux_1_2_riscv64.whl (41.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxtea-5.1.2-cp312-cp312-musllinux_1_2_ppc64le.whl (47.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxtea-5.1.2-cp312-cp312-musllinux_1_2_i686.whl (41.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxtea-5.1.2-cp312-cp312-musllinux_1_2_armv7l.whl (44.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxtea-5.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (43.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxtea-5.1.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (41.8 kB view details)

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

xxtea-5.1.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (45.6 kB view details)

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

xxtea-5.1.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (62.0 kB view details)

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

xxtea-5.1.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (49.1 kB view details)

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

xxtea-5.1.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (55.6 kB view details)

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

xxtea-5.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (45.7 kB view details)

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

xxtea-5.1.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (41.6 kB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

xxtea-5.1.2-cp312-cp312-macosx_10_13_x86_64.whl (12.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

xxtea-5.1.2-cp311-cp311-win_amd64.whl (14.9 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

xxtea-5.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (44.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxtea-5.1.2-cp311-cp311-musllinux_1_2_s390x.whl (57.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxtea-5.1.2-cp311-cp311-musllinux_1_2_riscv64.whl (41.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxtea-5.1.2-cp311-cp311-musllinux_1_2_ppc64le.whl (47.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxtea-5.1.2-cp311-cp311-musllinux_1_2_i686.whl (41.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxtea-5.1.2-cp311-cp311-musllinux_1_2_armv7l.whl (43.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxtea-5.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (43.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxtea-5.1.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (41.6 kB view details)

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

xxtea-5.1.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (45.2 kB view details)

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

xxtea-5.1.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (61.6 kB view details)

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

xxtea-5.1.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (48.9 kB view details)

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

xxtea-5.1.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (55.2 kB view details)

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

xxtea-5.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (45.3 kB view details)

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

xxtea-5.1.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (41.6 kB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

xxtea-5.1.2-cp311-cp311-macosx_10_9_x86_64.whl (12.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

xxtea-5.1.2-cp310-cp310-win_arm64.whl (13.6 kB view details)

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

xxtea-5.1.2-cp310-cp310-win32.whl (13.9 kB view details)

Uploaded CPython 3.10Windows x86

xxtea-5.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (45.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxtea-5.1.2-cp310-cp310-musllinux_1_2_s390x.whl (58.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxtea-5.1.2-cp310-cp310-musllinux_1_2_riscv64.whl (42.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxtea-5.1.2-cp310-cp310-musllinux_1_2_ppc64le.whl (48.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxtea-5.1.2-cp310-cp310-musllinux_1_2_i686.whl (43.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xxtea-5.1.2-cp310-cp310-musllinux_1_2_armv7l.whl (45.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxtea-5.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (44.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxtea-5.1.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (42.9 kB view details)

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

xxtea-5.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (46.5 kB view details)

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

xxtea-5.1.2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (63.7 kB view details)

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

xxtea-5.1.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (50.4 kB view details)

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

xxtea-5.1.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (56.8 kB view details)

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

xxtea-5.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (46.6 kB view details)

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

xxtea-5.1.2-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (42.8 kB view details)

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

xxtea-5.1.2-cp310-cp310-macosx_11_0_arm64.whl (12.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xxtea-5.1.2-cp310-cp310-macosx_10_9_x86_64.whl (12.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

xxtea-5.1.2-cp39-cp39-win_arm64.whl (13.6 kB view details)

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

xxtea-5.1.2-cp39-cp39-musllinux_1_2_x86_64.whl (45.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxtea-5.1.2-cp39-cp39-musllinux_1_2_s390x.whl (58.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxtea-5.1.2-cp39-cp39-musllinux_1_2_riscv64.whl (42.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxtea-5.1.2-cp39-cp39-musllinux_1_2_ppc64le.whl (48.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxtea-5.1.2-cp39-cp39-musllinux_1_2_i686.whl (43.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxtea-5.1.2-cp39-cp39-musllinux_1_2_armv7l.whl (45.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxtea-5.1.2-cp39-cp39-musllinux_1_2_aarch64.whl (44.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxtea-5.1.2-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (42.7 kB view details)

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

xxtea-5.1.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (46.3 kB view details)

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

xxtea-5.1.2-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (63.5 kB view details)

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

xxtea-5.1.2-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (50.2 kB view details)

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

xxtea-5.1.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (56.6 kB view details)

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

xxtea-5.1.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (46.4 kB view details)

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

xxtea-5.1.2-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (42.6 kB view details)

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

xxtea-5.1.2-cp39-cp39-macosx_11_0_arm64.whl (12.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xxtea-5.1.2-cp39-cp39-macosx_10_9_x86_64.whl (12.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: xxtea-5.1.2.tar.gz
  • Upload date:
  • Size: 20.5 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.2.tar.gz
Algorithm Hash digest
SHA256 d004af8de119ba7e29f127fa6c95b3e228b618a0a341a329ff656e44298834cc
MD5 bd656d30c7c26c42db5539c9bbd8bd16
BLAKE2b-256 e6d1d4643e59c53e4451494d46a4fbdac067e6f3f1963592464736c20dc04fd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 630769aad1fb79d0ff651ead990d320ffd6ca74a265943959efef3e89d0f8fbc
MD5 ad56d2f3224ed36aa0e17385e37b03b4
BLAKE2b-256 4222908653318b85ceb92a7606fe1123a1d17669ed029115078677291cf06df5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.2-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.2-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.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7fceaaaf05172a83447c7f3b371a066a87282c92f6088b50d5242d9885591193
MD5 7d6aa607b864bb70d6a7a0e2d22f7b8a
BLAKE2b-256 a2b3bb621b494ce0d693290c69a4530ac1b22c2b3703dab19a9312332ce005af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 636db7c217aee71b124e2d537232e62d5c11fa8150734d3055e82e3c45a5b6b2
MD5 692abbf4322f069d439f655753ffeecf
BLAKE2b-256 b9bf39f5f415bdabd260c9a328b27fe1e45f1417c95382091edd12def165dc54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 468a3f186f09c2ca830e01cb871f8bf97f495f36557ffd90cead0ee3cf2fddd5
MD5 18b97f02c37b0a4a6a2e501fdad9a87c
BLAKE2b-256 72f554b53d538e33234f8f8a23ca366d2c14336000df0cb3522234beeee75406

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0fd4573b976dc4afac283e211d6ba372e64bda816eae715bc47e7236024183c3
MD5 5ee94a565aa1baf6d402ff72070382f9
BLAKE2b-256 21caac5981005a4eaf3b61bcdc47dc58cb99a78a1635173c3d28b017246a2b3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c8d3cae17b8b1f7be3efb2e524f5cab6603cae320be34db631269026b902dc91
MD5 fc8d8404453a586e93556abd3ea3539d
BLAKE2b-256 2f9b7342582cd435e37fccd3322c3e753116ca5486457db2a3c696bef8136bc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 36e3e215448c718d0b6ca25fd49e386ba6816903deda6f27299f9e3d7e8cd518
MD5 977dda45fb34d65295c0f90b54c24264
BLAKE2b-256 94060493b292dca30a4dbb27449098312554c32d79200beca2e27978f9f6bd9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 00e902fc83712377033b9100777e788e6fbd7db56b9248bd9000dd68dc2c57e2
MD5 4353ab990ead9b110976e9fbb882e4bb
BLAKE2b-256 53ce64c618934de32ef2005966c16c1415231d2ec09a0a17db09d9804fbf7d86

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.2-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.2-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.2-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 77240a4cc1bc872ccef1526f806ce6fa07e99f0fc671399aa61580c34f229e79
MD5 8a47f4f2a17d17df8a264521b0e1b196
BLAKE2b-256 f1f53ccbfe3e1911b7e53f629bb8e72a52c749c2c791580ce51abc98914a65e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.2-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.2-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e2bbac4b7cc4b6ac041915f3941fbbfa3894aa228a637bc3d37db55458f45b7d
MD5 a0456143bb2126594e3766fa80ec8fdb
BLAKE2b-256 f5c9cd7d31048fd194bbf7f6bcca4be5f037f800d650fb60e8da2424fa4c3dfa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4de7d6fd6bafd10d65dcf0361aec58bcc6ce0aab4639a73675d2ee3003b4c82
MD5 f93b9caa199b4160330819c2bcd74e49
BLAKE2b-256 c216edf357e6cb1090ea922a1e3635a3e8435bcf994b63d61dda9a191446dd7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d66e5667bb78c5c15c6ce9afc9395f92cf2b6d4c80af48936b6c75dbd73a41d9
MD5 bcb20a1cf0a9d0a4fc551babe32a54d0
BLAKE2b-256 bce86e8868a42012a83c128a78bf8340b14b462b20078c5c4ce9a935c6d393f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1d5441a6fcfa3a836dd7706c19b71045e1cdfad7ec2aa096c81a07375a83bb4f
MD5 401bfffccca22df33c4a48aa9512f6cf
BLAKE2b-256 ce0916d811e5e3550c759d6c23c456c0e34372b71d114b1cde6afb26245a8d11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f210c90c1cfde3cb06307178a2ec3581fff5b856645ec49a894b230797fb3dec
MD5 6c24bd3b1fc3d1182324c68a534682d9
BLAKE2b-256 e48b9abd2483db48b3e60a0af0d7e6a3766066f6203cdcfb3a30a096023d148c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.2-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.2-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.1.2-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 fac2aa1be87839bb191d7474872feb5aa7f8a7b4d94c67f4ee36fb3446cbf49a
MD5 edb03292e8d65641e985462cdf1826ce
BLAKE2b-256 777b390ddff53f5df9f363b7c380abe6df1a4753907a94cd36e544523011af8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.2-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.1.2-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4158659db422aba0435276022cc06f71e8bf54278ad6f8fb78b7633df9219bb5
MD5 eff6adcd9617dfc8a29d27aaec57a6ce
BLAKE2b-256 219f6db81b6fa3356aebecac04ae7b029708d20f7954d7fde092d40966937175

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7d7e9e8e7429d02d2bf56a0d3501edf29d5620c834237008c72ae2e5db2963f
MD5 755eff463a1b133b1d84d89225d4c816
BLAKE2b-256 8c86b9970a65e301ec1ae113f3d1c02cb4be796dbe043d500182711b24935e5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 581a2701a9a3456795a0e6dc71073d8b58bd2fb216ef1e7b5c5a365bfec8c43c
MD5 dfe49724059fc9e9724ff928074fd2dc
BLAKE2b-256 8887c5fb00a17ba8a6c42938446f1b5a0321c0aac91863315c13f94f59f8b0c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 9bb86fec3f7a1c4482a9a5975450b84c0ca867b81a918a060b2e9e05b96c5344
MD5 d5a3625dde061811d83e9381f6c06514
BLAKE2b-256 efc556414e097d16f03e355d5c3d3aff477c23af78857d4d948aeb981f31167f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a4c1d5d280dd220e659c061cc36445b0ef5d768937b1250704993c3afb3d67e4
MD5 4d258154de6acf2b13f7e8e5be7fbdb1
BLAKE2b-256 b9b64b4725493c77cb16db32b57f004e6c3c37f057fb6b51f30425075260d04c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.2-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.2-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.2-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 1b02ed0a22cfd89a0a38d79c39482085c08e1ded0d2069790d2835d5ced8dfed
MD5 a5164cc84ad5c6590a2b462b51f0ed84
BLAKE2b-256 c3fce4cf41952239ea76ad452579ec67e47a25a390a9277e9004653301c007d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca66a52fe30d571eb9b2946536ca5161f565ddb5b155722a4ceeb95e34678175
MD5 ba8fcec5c01b82c2e8e9d18e2c743c01
BLAKE2b-256 3deada4adfcfe6198fb3207996d0da35f3f7dc0bfee62352a63870fd1a91ea9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 04c5137cb5c9cd0c0d6b92aebd47dafac59d6f5c26534ef7e6811370203d809b
MD5 4b44fb93a20b7a21436b3ae0ab1b679e
BLAKE2b-256 468ef674af7593c89eb50579979382564ac36c1a40bf7fbe83106c3a09df093e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.1.2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 14.1 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.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 47ace66d6fc6cea75a90d2a6eac267e5881791dc04ef75b2d8f30d7f65d71092
MD5 31d00846040e78712665a48d26e2e822
BLAKE2b-256 81701fc6dc299bbf43a3dd1d8867dfda6016e979444d5aec999f05be9248242b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.1.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3766b7f2236f9cda6624421eb6cfc7e2da6deb186cfeddac13604b6cb072f68e
MD5 60860bca46083d9e6c3dcd860685acea
BLAKE2b-256 e64c3318c3f2d7b5987ef0cc6b6156e10f23c439c2060a5bc3c5dcf5b8594e36

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.1.2-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.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 b0ebbb4c0e8343e022ddbc8ff6825ba447a1516843d930086e5ed530814aeadd
MD5 0502479eaca8af063b11e6288fce9d68
BLAKE2b-256 68da0e018478717edec607a36a033ef6b986c7da676cfd275307bb1303ac414e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26a88d8e79807672bfc40c0ac000417bca91e9c46105da3622d02eed07591adc
MD5 8c2bab31b13e86c7714c38787f697069
BLAKE2b-256 47416afc986006a6e8105271ceaab277f4efa5e026a23464e083b32774e8ba8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1ab537ed642d51fedef882e4417057918ce7753114eddab5c0d2c789c99f86a8
MD5 893d79355ce6a0376bb4072f17964874
BLAKE2b-256 034b4d56aa1ed234f2b6df677e8391a73dcf65ba1abd4abbac038d04cebd7b48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e5bf01ec468c7c95e37c7f306a35a7fd36394087dc03e8bb2c4842e5213d1150
MD5 fad8a871e990f4871034a095d8df968d
BLAKE2b-256 336de66553095833b388392413939673d777f7ee6366b18eee7d905b061a0a5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 79d5f4a84e14bd057bb2aa650a66f7e5adf85f59a34eaeb14eb81ce599c4fbe8
MD5 a17b780bd51a3275fe365b4a2cf17632
BLAKE2b-256 8bf037b6601d01536190c9b46065ce9aa51f4379dee1dc7947876dc95bf0c00e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5ff68b6e277f22099d9874b09cbb5bcf88ac1cc4d0aac1d593f441735b50a6e0
MD5 dfd6a429c37232ffdf47d5561c2a033c
BLAKE2b-256 c70b173b876ba218c2b0b91fd726cc8dc23118dccf404d556983505c7d2c7afb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dfa979bb35b81899367ebcb22ecc57dded6b4b2e910e47408164d8a04a4ec683
MD5 d9b082bbe00fdee6525fb8de91b491f7
BLAKE2b-256 38b847a0426b99761a65cc16a94882df6f50208c6fc779097d78565bc1ef321a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e6883cb306c3cccc0edb234c8b7812109c6fdd582de608fcbc0ddfc2a39bbb6
MD5 9f8de301baebaefd778f46cad06d91e8
BLAKE2b-256 d8fe80f97d643ff90dd889ced4378421e16ce6b9fa582e438ffac065be5d1ee6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f036d9d29eb9f794da8a27fdc8597993c4d5411888074f1840afc5e37da7f667
MD5 64d88e19ac94518365df772ee73b0ffd
BLAKE2b-256 1ee896ae876ab0d93fca54364ed913ca5c36310591c48406253b61349afcf5bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.2-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.2-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.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 31c540dd35c340b0a6013fa6e18c128f10e09873e724da53d27b30b91aca0d5b
MD5 9e2ed907d5c66a5c9922058bfafb2c5a
BLAKE2b-256 64ea456936ffb9b255922e39531153ff2cdd951c35fa62c531dbae5a977317d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5e70cf47e8f03e302a5b07a975352075a51c0d4109c07f80967e3e65294244f8
MD5 0424d6913cb29b488ced52707486098d
BLAKE2b-256 50f07d52a370de98ef99e0c9182edcdd3bbcbef2b83f817e49cc6835c18421c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 04c591a8ef97c8b62c5287ef845d1be45de84605ca57aad6ab2cd3a5644c5a68
MD5 862c36b682ed4f490d3dee92e9d5a4f4
BLAKE2b-256 b5b983d1e6134d311963d47656eb1259f0a80a0c4a2e05d08175e84367fbc0d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 07b5252163a8ba4fd2a2ff1bfeec4a9cfb245e67f17558a230828e885884853e
MD5 fbd79b9c72786ecb36268cda13467442
BLAKE2b-256 5ac8050d67b172b9579f089ed3e9968093e53f739375e9ae4cd6c16fcacc56af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8735a3b2b951a076dab78ef87976e450623c83250a6dead4400e0a8e286dceed
MD5 90487d96f90c90831a36af813015e04a
BLAKE2b-256 abda72ddf2d025a3d3785c5e0d303d54b5685e363fbec3508fd901651fc1df5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d9560f61007330183e009d3090b884dd0d5f400c7303345fb791ddd4778779aa
MD5 fff2ea25190d7c80f212e25b3b28d933
BLAKE2b-256 b181a980b77941b10350657e1d2691ab212c54aacec77951afcf6da2d2f6319b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d06214f4bc708ea65e7b045df1b51319f045efc013cb346b16d20830c85183d1
MD5 88c5f00c09c967362e022eba0fb633da
BLAKE2b-256 ce16ffe7a5f1c0daa5794d4b121eaad1b82d6ab8210f81645b11d1b67cd4a8ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5d5dbdfa832541c9e26d838b691abe4fcac47c3af9afe55f51d2b27afbd30caf
MD5 526598bb9305121db0ca6d3b21ef6844
BLAKE2b-256 9367fb831e1d3cd90fe2c9d432bf0119bf1f3700609e29e2b38d40d5e10f6f5e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.1.2-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.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 1338f0577f1338c01379ca9a3f6bfa1a3573adee665c28565faf9f899864dd5d
MD5 36142ea65bd4430829198c5cba753102
BLAKE2b-256 c89e3f7c9ec386d355b42b57a1786685b2f0e37ed384cf4659c69a3f8c659bd7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.1.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 15.3 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 05422934cf1dd1110649d2d63de1816a021c888c6fc1a2ce2c7e08645e182821
MD5 d411cbd67f1d116e3a8bd233df0e6392
BLAKE2b-256 3dc935b8159b9a6650a332bb2fbd7bc812c264b5fd1dbd3b359245c8c6a14ba2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.1.2-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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 65e2cc41139de7c2142222bb3aa027ad63b186d9b313ef0f780380bed27ba58c
MD5 c0329ac6563c4e326da01248f6705812
BLAKE2b-256 234865ff158d86d6b8b7a28e35d9a6761e4d96e5ddd91d66ccb4a1e7875d13d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 cf61f6cf3107e0cccae7f0007a4e7aaf18c3b2dfdcf252e7c567d9b9688ff973
MD5 93dc4276664cefa6e4d5be0d45a42afe
BLAKE2b-256 ee09fdca01705f4579b68c2f1e4ca26716a75ae7749fc57a4dfef9db010c16bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 386e68851656c19f325553936976e892427d49da0be1570be26843616beed199
MD5 8a3f178bd3d83d3013fdc566104ba1c0
BLAKE2b-256 6138352bf61a20737557f55ec74bffd5b71dce824171dfbfc304ae01519b1e11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6f85eb6b3f088c0f6116e7bd54f315ad3d7fbe12e0ccb29cf1990c6a65c1209a
MD5 74c843fbd744138a5552015d22511f72
BLAKE2b-256 021763791f482b679960411bb6dcfd2580b220c58e4c9f56a111d26eb05c3cb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 019c64249b6fe8accc40f0fd10de5d1b146c51145d39c662a69aae2816c00769
MD5 d9de3456de5adf720be84236e27cfee7
BLAKE2b-256 72c8133ef2b285203e13be53c810ef5e04a3b9947306eda9d5aca4957cf030a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7873ec07c9fbb25a956f8175b2025953329d7fea0a81e59d0b80586e90a498f9
MD5 59fdf8bbd51dfd68e69ac3b7fabb21a6
BLAKE2b-256 066696a0872ecf3b264eee672322a0a00cab5dd2f8e50759be49fcdcb45157b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 403133d2cfb03bae9843fb2a4b6238ba1764b9fbfd2d72b0fe22ac9d342576ce
MD5 4d1a6c003f30fe5771a27a7bc7ee743a
BLAKE2b-256 0626413a5cf0ead7b3b67c7d75595eeeac4dc3a7d036d0490187909a1bf565c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3dcd0b8acf5380dfb348ab4a84cb36b2e12492422126a43432a783f1f83d8435
MD5 7ad263d4eade8f31520dae0b83789385
BLAKE2b-256 ee34c777fc97cebb2f6e33a78d16d71c397bb299925f61190b150700e266a606

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4537808fd8904e4640d2dbe964d02b6d2e61273b103a4ff1c46bf672492aa298
MD5 a04f3dd90feb3dcb1ca1a5c6db37f649
BLAKE2b-256 3a0a502ed0dde5ef474f34c5e219b9c6747fc22f181aa42cab35a3ba5d8f5d89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d3cb1c3c1e93549cf5bd39b582ec6ff54d967647280aa5b49e79cdb924477276
MD5 1924c6572beca963408893a8dad0bae3
BLAKE2b-256 75574ad01546b9c1f9d1440ca4d94606a2e3b1126e2aa087422684491c32633e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.2-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.2-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.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a060ccb6f8502b5bc076509342cadf0f8e040c6074ed54a230c4c16c28330640
MD5 f31dbb34ec4302594eba3eac15c1e529
BLAKE2b-256 6e91c1f2af3f36c05dbe9c52950ba848b3c01496a2951c72d82516ed497ccc96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 de6910f0ec7d2f21d4144c975556f29fc9fb366d37c26adf5f492eecf7812929
MD5 563b9cff713babe79e34757e0ca3b5ec
BLAKE2b-256 a921d5cbeba31a6e4caa5d965ab448d649fafadf1de9f04d890528da2c2950dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8f7db3261cdbadd1a7bf1ccde0510d3201fb29de41fe2281988f3203ad2be041
MD5 e19016112b53e1e682107d6048375506
BLAKE2b-256 715759a50afd69fbf58bd0f64d70a86d035fa7acb0021a4ddbc4db29fd88c97d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0243579e603d7d9451e1bb244e0113dd91bb61e4412a54a13db0ee579ce7df94
MD5 cb40f8c3129109160eabbd34f0d75029
BLAKE2b-256 b647a24117d394e76712955c1358834ee061031091f5a19b64660b8a7ad282f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 05177dc87d3952a60405deb096e7432686a957a8daa3b9ce9ef33efb22bf9acd
MD5 427188a9d798b3adbba9b1afa39ecbef
BLAKE2b-256 5571f91ffd1d14b98ad19752d450a102f1c0927903ccce02469465d6d2362729

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d305864c6ba43156f28c12ea99155373c59a231190834e9059d0fe664c50e010
MD5 ee094405052177aa9721dc50d69f4347
BLAKE2b-256 9ef5c056c3ea6319648042cc1fe981c47291ebd33d66da5aed3425916f1edef9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7bf55265f2a22d8b64b674a6680109360bbf4776e0f65f4b100ef21acf232e31
MD5 88523c9862b84c41d7a08a422c9acb66
BLAKE2b-256 b3aab308be77ffcd1ee84483b7e8fb03e94da789db434ba2e40cd3809d6ee3c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 48ee143cc10bc212c15508d1db829527887f3ad6e517f69f61789d86581d2143
MD5 884717ad9f45c1ef030f8b9d4a3b9094
BLAKE2b-256 1f4fea1cb4a43ad50d4d218e5409449f6586d31b2d74d2dc7496bc89433e3706

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 c3fb027b40da9a684f5b07bec456a8682c5fe81542fcf32758d72984f647ea0a
MD5 531bbb83e7f49867af42c3267abbbfdf
BLAKE2b-256 2d5c6c106d53cbd87edd978c0c9c33bd9f22446022c180c5d7de004f74e64a18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 6fe2bb99b6520b8085c1aa16393b3f132682440141a0aba6189da16325310ac8
MD5 06149aea70f991a5f136c6babe6c48f2
BLAKE2b-256 f521bac360053f522368cc296ee1fcf2478e3665113a63e3d7356e272e57419e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 7825841bce058e9af772baa43d0fc6a3112b323b34ef2e89f40aaaaff3a93e50
MD5 adc843de76ad99c04dc667828237bcf8
BLAKE2b-256 83f88c3f80bebdd62ebbcf92ef7434bde3c104ff451996b3945aafe692e51cb4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.1.2-cp314-cp314-android_24_x86_64.whl
  • Upload date:
  • Size: 13.7 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.2-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 d9a0184701efa7f3ba566e6d39479b9d20ed09d48341e326dc382fbceaf11157
MD5 4b4703845c2281bfc1c87c16e97e0534
BLAKE2b-256 31266d31b7a1ab0301040864ebf3a85246aee2155a3e9cc905496919d47add2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 03463b44f1c62455a8a42e86ea92c79d51899edfc914e14171ee56a1281574ba
MD5 a9c017d72b0fb55b7b8dbce40972784d
BLAKE2b-256 d744c112ab6aad1597e3461e86823b4a236617f5f2add7418de1938b57f46f34

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.1.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 13.5 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.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 9fbb5f8b734e1285544980f1800080b3d3befe954d482d494263dc071cd7e8a6
MD5 7accea8b58c8c78b92cb967787c7f7ef
BLAKE2b-256 8074e9e84c65e1769380d5c7aae29e4311a86f44b2d0514438241f1dfcc34d65

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.1.2-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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 02fd4b7a651812af7bd206d94c6ca1173e0c29f2d0b4e246a4b59fbe753976a4
MD5 4c71f1290a6d5b9eace37458542d43c6
BLAKE2b-256 631939acdcdc18dcc155066e44b801d8118be3ab770d134e7892832acea56c2b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.1.2-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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2301bf084b5f65586b7b519716203c0b6833d30cdb7184e12b0c114e5dd1fada
MD5 b9032e994b595195c25e2a1320b39787
BLAKE2b-256 ecbb95c9a858a0b3680a2bca723c1f16647ffe1bcc30c54f08f1302af3b3ba43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 d1d5aa0a0b86486d5e97542c5769646182fbb00faab651572c5a17cef61b021e
MD5 0904a347388a2fb145e3d6170741f8e0
BLAKE2b-256 0309ddcc54bb7ce93d80dc6899d402f2ca46e5f1d729d25ac1615eb2ffc44c71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab87dcd041fb840c9a06a59792a1853e83707a1a9fb6183aec74b9e8d348efc0
MD5 7ab58e4b90ab2f7c96c93d9e21d25e4f
BLAKE2b-256 8f777b0ec62a4b87828ce7c635290584e07ff3a0a91cafab95de07fbc77bd93b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7b3e788a438b9aed41fe6f28ca2191ebebbbf339586e6f6fc492bb7966892cd4
MD5 ee5e65527960f5f424173b0548ab3e52
BLAKE2b-256 b6ff69acb747ce7142564d3e9424db5ec6f908cc5794065b1134da073dbc0309

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 802823445cbd7bd8e99dd9de0ab6612c480ec55b393fa6e91e08cd0c124b0b0f
MD5 0282162faea8c0a6620d0972896b8e53
BLAKE2b-256 ffc5faa1f2dfc218f060c3959d9f15bab845e504cc859f6c79d94f95c008e30e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 877d7b725a7ff3e0ff6bc0350b82240182846f265831f82c790321467a2d6f65
MD5 8c23d0023c42d03d56459741de4e42ba
BLAKE2b-256 7578c5d126165afd2169838cd052c02b38d97216e8f62e8347bb574c05c98b0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bf2d2e2bec41dfc2ce361b025ec49e47b5a2516c9d9de6a3d441dbb0adea3cfc
MD5 c214844e3a6cd03dcc1c1fcae563d0a4
BLAKE2b-256 5c63e2011de24f604f00343b4810150c8ef118630a1d8b7d300f2549c6ed6357

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2991ff571de0c8681ee2b3e79290665894af4e02d38fd68822d611b7d7daa26f
MD5 9feba21f2fd1729b445c0a0ac05f28ad
BLAKE2b-256 c990bca657303154050b1b9440eefffc5a274d02dd26a6fe53463c2b49f950fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2929fb3a624c16bed617510d15f7b7622ce594df66c76c7b12723c4688a6b85a
MD5 a53423f11bba52793ec32d5730b98f17
BLAKE2b-256 2c8938423fbb4c89287daeb37bb67285de5606680eb30c6964cdd4dc7a3f63b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a39248b412e20e2a350983ff017d2148d756232228fc00c005aa833b4096f89a
MD5 33687158b27eb762e1d94244e7161a48
BLAKE2b-256 ca7d48b3ecc3bdcb7b7a81e7b0754ccee3a48696fc96d8a9b9754b3b4e00a465

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.2-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.2-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.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 54c78e10a038deb3eb4045c2b39f53b94d266f7db4a2e3779fdc0ba5543b6310
MD5 962eeada33b300bf1cb7045eb59532ba
BLAKE2b-256 5af73dc3635ee6e21c847afd2dc5fb539a0180062318fd219c230c31b8045ad5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 53b31401632269e1edaa98334ea4ef57a3e43910680a6d163936423439267a91
MD5 34081b1c8e93b99d6aac9b1a05e24708
BLAKE2b-256 92392f6d1828b1543d3a9672e7036e15d0afb4e0abcc33aa4b4d4e15c17739ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 fa5a515e730b3f29675661706a616677db345cc1e4ccf25c8a3b9bca33c46c3c
MD5 e34fd54e7a0acf73e7d0cd7543c4694a
BLAKE2b-256 f365feed5f2e623db0caea60897caa1905abadf659240a4fb1bf786b4e56bf37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7c0aff21ed5005eca116603d5afabbfbec7cb5465089de51eabc2b802ed97f9a
MD5 e61803b54fc14be629e2f861dada2f81
BLAKE2b-256 6b27c28fd7ed2d27e720daed9c881b8185f189a2cfe5422fc02454b76cdfc0be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4e0bf5fad6755743e57896b7d0d6e72a6095a71a28160de393b0280fcabfa852
MD5 91e91c5712b3ec6479e0c4eba8ad9672
BLAKE2b-256 c509e7542628ce27f8b0dec6a0ec7c544e58e04c0a9eaffe86f438d977ad42e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 771e2fab12631b51faaee3d105136ff91c0993b75daa4c62305912ffc9a0b046
MD5 362371e72a08793cc1624650f5adb9b0
BLAKE2b-256 0e76607fb2271547c8c5f33c9a3715e4740a62150d298cbc8dc56973f085fbf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 560548e9c5ff484aa009ca3c9f5a3badc8ab2d66390766316f975f1f30a65e23
MD5 088d026d386b885a92d1ec376decd16b
BLAKE2b-256 a9b6225c6e48a7b25495caedd877e077f7c48037429968d24dab7955cd13b84a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 eeb531767e79c1138e211ada799e58669dd4a76b16ec548aed7bb8d153b79806
MD5 aa7728d10de5ed2c26be64a235693e05
BLAKE2b-256 b8e7c624fde8ab71861d62d28ae0b145256cce9e750bf19e9b13430c09c642c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 98644264bbfcc7963c69d310816faa33c9a6151446f83a98b6f8fb2053305a5d
MD5 8178359d2078a0752cb6537e2fe8b9a6
BLAKE2b-256 1082e14d9addd62df32092ba8dbc7b3a44e08a998cf76da47c9324791fb41100

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 58695b72f35f4e19867fb66aead4fafc4a03c54f56e1578e7f0bc3542415d1c7
MD5 b6ee2e9844071b4c52d8c9890aa13fdb
BLAKE2b-256 193ef4338ee93d0dc52da710d54609c568df0d1af73f94c783c7426242324127

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 7da9c4056fae375149c9b5ad69185bb54ae8927c569890770591f6dba2853bc9
MD5 adf00427a303192d62141e5f44a07e4c
BLAKE2b-256 92da4b9ccd234802e693f13ce73820f1b0e61590e9c1251003594852544a609a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.1.2-cp313-cp313-android_24_x86_64.whl
  • Upload date:
  • Size: 13.7 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.2-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 731af238e11874d9b10331e770bdf8dc7d6e9a0dbd83e468328d3d96d9f33e75
MD5 1bfa091bf7d5f77cb25929aa88ab562d
BLAKE2b-256 92bf5fff7a264cc9119bc70f1ebbbc5d52c49fd8f99f703b170ea79c93323040

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 737fc891718716114acf4b7050496ca5205dd4adca29de5f2cf16116d707933d
MD5 a8bfbbb74c0841fd8eeb048a9c95b72b
BLAKE2b-256 4c9e9817039f4843b10806dff078352981b671f317a648d29f5073363f9d239a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.1.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 13.5 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.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 cf63dd7f0f80b759bcce9e42723e090df1e56f4fc2f37ee2b65267cc0719d7be
MD5 8bd0bab2b8d6a15a641539b3bc50795b
BLAKE2b-256 2e2a8b51fdfe3a2aea2771f3b1e0bbf0c2c9cf6b07b10d2b0bd282f150d6ad67

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.1.2-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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bad172cbd6b3f03dcfe2d65909150743db1ae9f98ab9b4eb037bb2fb9733f243
MD5 16cce0d272a9d430a46e4c970da1bc1b
BLAKE2b-256 f97ae0a9ad6d652d790715ed65d8513bacdcbacafc62d448b96553d3bd9827a1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.1.2-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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fc5ff7f1c6776d0f9486481e7e286bfe719acf6f9647f09f1ed668d66e2244c7
MD5 b1e5eed237885c6d7329d83f6ab975dc
BLAKE2b-256 e810b1c76589ca019a170e868fb28fa4323aeef676bd5bf008d2ff02d4f66009

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp312-cp312-pyemscripten_2024_0_wasm32.whl
Algorithm Hash digest
SHA256 9a2d72e7e98892be0a154b883990256afa91e734146ceea62faf25a8e4c7bd7b
MD5 e9c77039e0f080fc03da773fffe741ba
BLAKE2b-256 0004dd2f4ea63da95bd687477541716f8455e0aed1c27f62b9df660579495620

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63531fb21bf8482098ede7371e61bd6b000e15abe96557aaa17e9157ba97ced9
MD5 97ab946eff781a42a7efe83d994baadc
BLAKE2b-256 a42cc00bd2e6e51a188569e8a00807125e173640bc37fdf2a72461a97e18d02c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4d5eb91aec1fa51cc2ff7aadb83d7f3c84b6ef8ac93b8cb9f1e03aefd456ece3
MD5 284553f48ca576e8d6deb2401f2c0572
BLAKE2b-256 2be7fae117b9584649820bd1eb43b3f08576850afc131c4e3db303248d97426e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8e104c14d7faebb4744b4a61aa064697cac916bb34b71613e7ce3e764cdd0236
MD5 ba8475a23783dc0f375041a9fedaa618
BLAKE2b-256 b4c260be89a9e071773f0f03bfad48771e280783445638522fc70fc0de75ce07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6304c3336918be7ac6209305022d151b5dc8b8119b68511ed0be94b1de5640d3
MD5 8115e12433cbd62ca253d0ea47a3f0be
BLAKE2b-256 ed0db92ea59c4a17e083e0008af644357194b85636ec6ef575766241dc6a166d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf04856c2706d3cf7cbf2e0c9848a52e8c10fba9ea21f8e0a6000039148569e5
MD5 92c2e3ce7954dc8fde9b8789b5d2a897
BLAKE2b-256 b7feebb20dd34f476d797147341666dccba80027f116527cbb26b0865a48528a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2ccba814d97463bac78b2c893fee1e45ceb82b5203ba8671df6040442d2e52bb
MD5 41245ddbdb834d16613be6f31a95fb8f
BLAKE2b-256 cd2b44927c9be1ed12713c850a4ec0e330775450856d11f62b98e66e422ad138

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 689cf10f4bc3dcfb4ee8c75cbcf100c54a90995e5ae932add510189c5c2e54aa
MD5 1fd5b57e0def103bbf63ac1c8f2b413f
BLAKE2b-256 999f72d22c5d899f9523d4826f49823247628d2921f9c7071a05c5e6869f866d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a38486a85afc940af8876c458505446593c425a1fe4ac9f8ec1f5ef69ab5f177
MD5 a1a7153398ddaacedb798f36c0939608
BLAKE2b-256 79d8d94a5575231b7198f939180345a1ee825b75bcf801733c016bf96143fa3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.2-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.2-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.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d8650570086dce6ae2982d06933926327b912022cfdb9aa1caf312ffb2427a52
MD5 7b8d16cd99e040e25c2a52837e24ef35
BLAKE2b-256 4c8b3efbe5d02774e05567039bd6447e18095b7e44ff2cdce080efe54a34b95d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 80824df358a1de9fa14b72ab69fab00d8d64f24b1e4f076bb0df6d57158dbf8f
MD5 b1b3099220d4e93a224aa24d504cabbd
BLAKE2b-256 419d3657b40a7738bec86faf6f6ed2f01572a71d445420d84f94c16091ac5603

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0a6217698f8c86c81e3f84a5c9d292316c127fd53d079f95b97f2a0c761a5827
MD5 dc98f4d8a512adbccd63575e92c2686d
BLAKE2b-256 9769b3bc299d242493ed67d25e6f9e57e9c61e0948da8ffd6b3feaf657b2dbab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b4bf5d0ea4f65fe57217bd4a71d0b7408975bf6a0327071debb0f99ec7a5992c
MD5 71c4f1691c325bffb253cb290207b5fb
BLAKE2b-256 07517dead156260233d5aed3d21b06e87ffde2dda8231020e44a1b099fdeb938

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4f6898f58b14c3212ba255d77c14440de3b4e7e9718e9e21971b5d7a875eb1fd
MD5 096f702ef72496a91c0f5c987b121e78
BLAKE2b-256 1ec282ddf5036ed671f02d6efd3aa18c2566260f15d41a9e107d27d8d06e1abe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 98d381fbc4d0935c8dad294ab61ca20691b2cfcfbb42e9682dd437db7fce173c
MD5 3a21ba4b72036df1c68441c0aaa61c0d
BLAKE2b-256 bae6b1e9921615a3c814f902fdabc64145c81228a79e9cb08f66e7a7c316f4dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42b86886775b14f8293dac572fc4c46ede81a761c4d25f02866095628df32fd9
MD5 db4d217cfaadee8985bf9e68ad41be3e
BLAKE2b-256 b6e726d635e09de792b2fb340340043ca09cb33b4331449e0c3905670bc957d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 447b5b854296a0d0d2224eeed66db420fdc7ebcfa9a0057706f59994401ddc9c
MD5 df356bda00a93d70a269ea33228727f5
BLAKE2b-256 97f546674095a0d7d9b583313e0003e1d0bce45f83c0ccadbc48ce10f93b8775

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.1.2-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.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 939df9cbd450b49c62fa6bec1cbb1602105d88f3417ea20af1a28f2f7c3d9ac3
MD5 1d89343c07f2b0972074ec49dbacfed1
BLAKE2b-256 16e61c1730eae312e185aece439f82147e95784b7123d7034c2197ece40a98fa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 14.9 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 99493e7c9dab304bede206cdcbcd8e1dac23f2ec471a44d38f1a2ebefb36ea15
MD5 55946ffb5d78dd55dc0d64c4f607c511
BLAKE2b-256 e94bf19949d2037f6179207bbce50e876c0b6fb05c18634f7e4c0352b0083eb2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.1.2-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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 eca59616524b52aa2bfe1b2e73575ca163be1ecb9429b0f7f659dc7f33df02db
MD5 9b655862b6189da6297d9617473b364d
BLAKE2b-256 6139d3dd82e483c498381926590e74ac3878b4ce15b6d7ee51a22f90925dbdb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16d08d422ab9089ce29f1ed32f3fc262919953fd06ac43dc42d47d40f3b56259
MD5 913bb98230f870adb89fca19d9cc6703
BLAKE2b-256 56a0c3d3f6f277f580d88a0c32aaf42c78071e79680b5c15cfd2ac43b0e2b369

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 18eba8966d61af8943d56b9fe5d7f19f4cd0cd59488b5b0204092dcbec891ef0
MD5 cd2b274ed3c05d73fdb891b6b62c9375
BLAKE2b-256 2c6478b24bf6d401c9fdf7912ab3637dd0b853b153316493bb3af3bf364456e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1bc9248c636941390218e04e0c5e8b19ae236812d9ab7ffe70975f50efccc7a3
MD5 bec9249dbe07d7a94f68c4ab26e8754a
BLAKE2b-256 fd0a96924768a4006a714cb18ac2fcaa1e04b832c57a5c68fb22ec5d7db8f53c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9ac55d138a984c1c3b8f233e896e6de2adf686f640fe2dbc86b54dee366ce20a
MD5 e3f6c8f20313b5c46bd19a6c5c13c39d
BLAKE2b-256 f4df864df6e0666026e44aab92c5e50e348190ee505d0973e6f4c3345b3c2c81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 46222d05588066afe619e1f11a529a642bbbfed77b14a2668f5e4fd55bc8b408
MD5 cbb0b98fde5f0be705b32af0a73275d3
BLAKE2b-256 38b7789d964ce73ddf649011c99ee4fca27d4e8339597b0827505a790a647907

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 abed95f1af7b104b66ed28a5b9b32859eb65fe2018a30babc0198d7acfea9ac2
MD5 c0ecf4fdd5e88bd03f23caaf3b7cd9c6
BLAKE2b-256 545139047015f37f0ab30012d8ca6fd136a5955a315ff52f22c14cf40688845a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1ed338bef8d54bbf2ca6c439f58bac52fc7bf3e1373871b555086d00170d5612
MD5 2087b34bbc396ce3a1a8ddf2b6580bb4
BLAKE2b-256 44a6ba8620c9cda2d457aa8a2dccb1377811ccaf6ffbca5dc56443d183ab466c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 cd61ccb8c9f91d1d17b143d587799da17773dcc88f6cc4c594a81082e5791271
MD5 38752f9515e878b838cd966d73abfffc
BLAKE2b-256 ed6c5bde2cbcf00dc55d58c51ebfe03820f0da95dfa5ec360474c53e978b18ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.2-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.2-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.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dc4929cd45e640774b69c040c62e5738d82f08ea323719814b58446213e3031b
MD5 a417423b77f4f11b980e9b81ad231252
BLAKE2b-256 49aa23738435deffcc54c0e8e4c88697c32c5e9b46dc51cecce058d6703dc106

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 448a5c0037776e27c1631177439e436ad2abfb74acda5bf1df56fcaeac958ec1
MD5 9b87c6f6572ccd53fefa9e5bb79f824b
BLAKE2b-256 daf810210448aa8fbeb30c94e8918c3d844c9ce01591ad9b409a0c6df5d1f967

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 17ccee2593034afe159e4d461a122cae7648a89c00ae3eadfbf091b40bfbd6e7
MD5 b1d4eac2289947048bcecdfba6991ca4
BLAKE2b-256 d40d3c821882b2893b594dcb6cba996dc236a7d63eb845b84d1cfe4ff1d290e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c3f507c4ace29fcbdb6ebd42c7bc66c887dc2dcdfa8631e11c6fd13b44399ccf
MD5 a860e678e5fb452082bdbbf6278cefad
BLAKE2b-256 9800cc171ad0c3f6e4d4b25ee6c9cc95537a863f64d54f3e49e6716261adf1cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ebc140aa9b3d3a056d64bdd236a6fc4e2d95072235fd48aab475d4600434f677
MD5 317d0b036605787d040806918b7c4e53
BLAKE2b-256 e7e60027445ee9587db58865543190fd62862833d95a000f6f90234615c6e979

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 3d6723710fbded4221e97145a98712533a77fa2d91b756d0f75a014866b56516
MD5 b5563acbbb17ad365a5ee7e6352f5073
BLAKE2b-256 4b3008f17f4d3a5b6e51c0bbbef439defafaf6ea9e977239fbbc5e735fa9a2e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2939971fdbb6f57bcf542d5111bbbdce188e7c52b4d5971448b32950f7ffda26
MD5 911b9772740bcc5b6734aaa6ca81aca2
BLAKE2b-256 c69d287109fd50543c00da819305555db6439dc3fb60194b8b44ce73c9ceb5ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8651fd65639939a4f608e99332632d43bf13a06ec5f0e62280b90b512a948e30
MD5 c6908a8fb6dcbb9ebc29c9e252905a0e
BLAKE2b-256 260a64a3d159f942fca8ed86cc1456afc29791c87551e95206120fe143fd61d5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.1.2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 13.6 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.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 f990b23ed5d8cd3db62655e59dd3bf03c373cb73682d44d42aa4ed22447031ec
MD5 d52f5962c95dd8aa9a9d71e1f0a2a4f2
BLAKE2b-256 84f1d1050f659f9d7befe72381d1a6eaa0cfdbbcbc656dc333e565681314d629

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.1.2-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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d98e3aefd59c65cee62c6414391b94489efcdfc999b83f06ed5b7f031f875e17
MD5 3dd25428fd941c9a8da7afacdcddbbe5
BLAKE2b-256 3d560a2187c1301230bd0acf3174f33907916b82db7c8df0f90b359c67eb9236

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.1.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 13.9 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5d743ffd53996471a0ed19cfe134b16c72084a7f961dae6025e297af4fd3f912
MD5 0621c29e87465e89b98c8acbf0219078
BLAKE2b-256 c85c1fbf9e34abb0bdb0cccbeb641330c5ff46b3a2a979a5aad475a51549679b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6965abbc053b40e8db12a82c69653dbb8deb711c30c701fb5439dd015cb8b6d
MD5 56fc73e575fe248fe3f34e0f39d1d57e
BLAKE2b-256 5d333901bb0afe3b506e9d96484411af98d4a8dbd053e178d6fffd1402cf75e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 20f9c68d6996dcd4b84644dc34765678ed81d33d57e7ad516ab37636287e1530
MD5 bfba58523bae73e6c089ff23c3502e3f
BLAKE2b-256 9d7f02ee1d0f7e3a961c3d9f8ab71ab6d2bd5b9c1b3e1b1715116e40a3769103

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9794d440b58fde0bf0865c69341b96c03f84e98760cf6405e40350ba12b982e8
MD5 7799f7ec76c560b56bac3d99c65dff9e
BLAKE2b-256 bcdb6cfbd30dc6d54101512d57725d95b6aabc8bbee306606e678baac5f03aa8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0cb69415f63733930e6b59a79d25132630f7e847b28dc7c0c08e20da3097e71f
MD5 92bee76b5e65f4eaa54c392502fbe930
BLAKE2b-256 c084550d5e208cd764e89ceaf684630272873f7e6a1923acd565fbe90832491f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 29d21d5b064a49d4fb861258f895a0f1567919ff9efb8cc8a24c24e8411b85de
MD5 a33c18444d44916ac630f1845aa30a3d
BLAKE2b-256 1310d4fbe7f27365520d19e9b765e089c25f2380dd10ae8ff829793af6c1fc4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 14202df9b164f7657187258cecf8caf72e4dfa501d93df751bbfa54fc0198f46
MD5 cce8b0ea044f9dcf510284d132696137
BLAKE2b-256 aefda88f1275a9db3bb3f7acbeb658ff6325a42f99c14072bb1e78ac04a85768

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cda633c24d9794fe21a80bda1a9940ea64dfe58045c76388f8b953c4c5b96479
MD5 bc109e25570644b1e1942b38c5d4e3c0
BLAKE2b-256 bfa29a47a6fd4c716b3f83d3f96b1851f86db1bbdd3f480eea4572bd62668227

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 48fe5db1cb3905453432a8a9569cf7135c254f79cbff03bd93f8f9a27a4171e0
MD5 6a5a4c9b701539240b35c59ebb67e389
BLAKE2b-256 a57607fb6277c6a2c704e69a02fcbec1fd0788c6bdb6210805111aa78843cd85

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.2-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.2-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.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b8587de210163a3d3d589d0a6eca8e8f83720d6ade3c4371ec8a089cd27f9d34
MD5 b5eb83da1010f57143a72092b66b5895
BLAKE2b-256 2d3753fe8fabe7e5ca798b0ab94f3dde3b4b9d2348b494d89c7ac3047f0d993a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 77d0c1c2161b193e3f76ea81a107d6a02828df35b5e931d5b33922335e40a240
MD5 1c416b7a307049d1cbb98339c99bd816
BLAKE2b-256 9031f5dfce7cb34e10fd690ab4cc8434c47a467a285bf5ee42aabf7223493594

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5962e39767d36f5aa52ac714cdf04d77107bbbe73d91ef9c4e96f363f3f0735d
MD5 5df53babb19bb46c21bf4796a65826c1
BLAKE2b-256 1de7b440316b7db3f68e320c95384697ee388fa405dd72736516183e073958da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 317cd5e8f1a6ae514ab3e09964dcfe9b96dafe0c403497722a70278a0e966dcd
MD5 55cd38d69127031e4426b83901baa119
BLAKE2b-256 2f595fe60842c9ec56d385f5e0b83f4ec43cf255f15736a55965f00699142092

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cc38795c16c71675125ffabde3f680a2dd7940b4bee2c560dec8e7175620b9b8
MD5 10816fbf5fe7f949be29a8ec6da3266e
BLAKE2b-256 32b53b577126568bc8fa1578b163902a3c22aade0251bafdc607c3baa5114a9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e1ee1ab7bec49a80a23e515f3b170f2e6646d207dcac831435647484f3109f8d
MD5 a27c2121d76a9788c7a5a6cf0980d0eb
BLAKE2b-256 c7e7cf914c63d302b6ea3fec6d605322a9756d46d9ebb77114e8d16ff314014c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf787a890c802b101f263b72c495b4781253450f5bb76fd7819e5eb580440cbf
MD5 a2ca9baf5d6d28132277974f15ebb650
BLAKE2b-256 99c75568c3c86e4234bb0c8dbded8b95ad36d5dfb623adf075d0ca360ab73dc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 491c7a36584ebcca77a286782cad9ad118d3f60af44f19d1bcf1b06f8a8c34c6
MD5 1fa2e72c77c38353d48c1281a3215d04
BLAKE2b-256 dbcd4807ffeba6e87929de7b803601798aa6be323af7bdb26fb776ce726ed246

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.1.2-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 13.6 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.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 4d6cc1a4fba5e1c55dc525c606f3aa08af93ff95ba823835f27091b782f89f39
MD5 6ff281dad1504cfe647e03707aa7620c
BLAKE2b-256 6fae7ea1700ef78ad6d5bd057745d95fc0b8767d4bf0443b5efec6e6e9b6046b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.1.2-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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7a8fe6112688c57adc38282b12c242d4cb1b9ebd5853570a38f678d41cc353d3
MD5 ed78e45c930eca9f43f62a5fbdccba53
BLAKE2b-256 865ec673a1dd09130234e9f5a894a5702a16cf688334a05b6b417594dd433531

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.1.2-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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9c2ff948ce7664a7b10c9005b0be793775b14d0310bd2ad1fa7bd450cdca6427
MD5 a74f076e43cc071552f30839d652bfdf
BLAKE2b-256 ad8ad79046d88314ee4914540b8c35ddb8750bce67b70acab599af0e94cddeee

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 45.5 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f69eddbcc6aef017f15c8ec5ba6e7c3cb25329488da58c5f7cc9d506f41a99b4
MD5 20bc09535661dee499a851f2e04b9601
BLAKE2b-256 0bea48414d3efe00a2d1725c308f80798e1d43eb54af1b1b36c0f85f83aecab8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.1.2-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e6b5d761fb43fb92ce733798768c0e91e47a7ef1e02fd76fe28867e824aba387
MD5 023d8509fbcc65be997ebbc65af191f7
BLAKE2b-256 504f8f4648ac0a77f313479bfb80a4d2f2506229d3541302d19da525d6a052f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4731b271d271c13bc47a8bcc54e8989b57eb944debb1244d55e9742ce36d2ddf
MD5 dd5090da0b25afc44fabd70c00678698
BLAKE2b-256 3df96db659cef4c954dba9022ae14114b4fc47a014f7ccec0a7fb52e564c70ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7743cc5e6c50fb4c8791de64c259b320939fa114605b8a352091f6b70fd4a534
MD5 336d81395a620c73b0112001e62486f8
BLAKE2b-256 beccf7440db397dad1af48eaa2c20124af69f7624f78100d55a84f6922a44f73

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.1.2-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 43.1 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-5.1.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 493b589e3f133f6d99c25af32e8b9560bab172853f4c155f6d69e3a63348191c
MD5 4cabec12f478c710f9a3737f7c9f3684
BLAKE2b-256 555b3c9b60cd21ed6d5367137ce8bc228160eb41a4030ef46f263a1b50dd7330

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 45.2 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.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 34d8110ae7b53b9db20fc22e39f7ce05310a488af761de093a532b6cf9d0daf8
MD5 14af0036d19389f82a2558b39d08680b
BLAKE2b-256 b50055e3d88b2f04d917bee6592408cfbcafde6379aea9a37ae943c83f0399bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 096658170cbea9a8a6ba441ee2e577773ecaf6964aa6f8df0ccfa262b8a01857
MD5 0be7b5c0d36e785f1a3ce73c75197b29
BLAKE2b-256 985940150de4084546ba4cf4ad906d59c3ca3c8f0cf436bf19a8973e64a4ce80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 36cbb926b1a7ff5809df4f093948fefb20fc5a676698dda0ca925abfc26588a8
MD5 6b55885693d35c6317ed53adcde94ecb
BLAKE2b-256 7afce369520c04cab3f73f6d75a9c653f7746b58edbb6ae4b93309f6d2ea2eb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.1.2-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.2-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.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6bfef9fa11a1fd9db03d8457355cc8600e5ddb02f0e5d5d332b6b2f4e047943f
MD5 29d629685c7ca31ab4e30cf770b086fe
BLAKE2b-256 40c0d1ba5f2de3cb2aa8d36f0e0d4dab135388d13798b15619fe80cde7a6bde9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 8f2a01d2a77827adf22df5294036319418bad257c93c5cbd6af13ebe48821c13
MD5 06089b92e5c0e6d3f38bd176e62da9b0
BLAKE2b-256 43ce66c39e3117013a69293ac1fa0d70d9a94159e7bb10e1a9862e92bfe3b421

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 69c096fef4bc737edbd50b2452f6c5ceb3bcb27cddd0bc17ab383de00da2d45f
MD5 ca5585c2764ead59ef3c61f65f352692
BLAKE2b-256 87d0604b04f030c39d6a90fad0be4fef31f42d1f4c3a20887104251421051c86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 9448ef6a0ce12a0db31540a23e5b0aa3a0348378145f98d2a67c85c2ddcfea15
MD5 4cbe30afd4fef48bfc6e5a94bf12d925
BLAKE2b-256 1273fcf373fe022727e20c1ea304e80a78b1b4cc3744478133a36db6325578b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bb4aec7f92eccde5791e9724a33796d9d080e3cd22720dc35c076fb1fa6ebbe1
MD5 1081b15d06cbf6d1dc360d980b4328c5
BLAKE2b-256 9b2dd305c4cef6e405ae283d3a3a984ec3d8fbde075c010a8b76142bd593d2b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7f4c131f3d4637df713f538235a997bdd44a9aa6bc4bd40f14e23c56cce1290f
MD5 46a58a6cf49f13d151a03e54f090e329
BLAKE2b-256 0342aebf1cd747a7f42bfd8987ad3066f19eddf5d5b77f1671ee4d67dafd729c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.1.2-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 12.9 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.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31068621f22d526752f351c602656938c923a0d20623dcb9d692cf9e62a82323
MD5 fcbea9887dfa492f233f3d2ae5ba32e6
BLAKE2b-256 db76b8b818b4b86ae9875e734e889795fd3dc0cf15f980daabd5c557fe3f573b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.1.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a4e960bece9e7a6a249baafc19da24bd0b475188cdf760412bc88d8280c7f4da
MD5 dfc94299dc5146b04e626780c2368298
BLAKE2b-256 594ac81821d4b9bbe723b23c617dc0e16e565aa4dbf448c3fa62c231bed0ba89

See more details on using hashes here.

Provenance

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

5.1.3

170 files

This release

5.1.2 This release

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