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.0.2.tar.gz (20.6 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.0.2-pp311-pypy311_pp73-win_amd64.whl (15.0 kB view details)

Uploaded PyPyWindows x86-64

xxtea-5.0.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.0.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.0.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.0.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (11.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

xxtea-5.0.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.0.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.0.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.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (12.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

xxtea-5.0.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.0.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.0.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.0.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl (12.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded Windows x86-64graalpy312

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

Uploaded graalpy312macOS 11.0+ ARM64

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

Uploaded graalpy312macOS 10.13+ x86-64

xxtea-5.0.2-graalpy311-graalpy242_311_native-win_amd64.whl (14.9 kB view details)

Uploaded Windows x86-64graalpy311

xxtea-5.0.2-graalpy311-graalpy242_311_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (14.4 kB view details)

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

xxtea-5.0.2-graalpy311-graalpy242_311_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (13.5 kB view details)

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

xxtea-5.0.2-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl (12.6 kB view details)

Uploaded graalpy311macOS 11.0+ ARM64

xxtea-5.0.2-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl (11.7 kB view details)

Uploaded graalpy311macOS 10.9+ x86-64

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

xxtea-5.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl (48.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxtea-5.0.2-cp314-cp314t-musllinux_1_2_aarch64.whl (47.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxtea-5.0.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.0.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.0.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (66.3 kB view details)

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

xxtea-5.0.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.0.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (59.0 kB view details)

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

xxtea-5.0.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.0.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.0.2-cp314-cp314t-macosx_11_0_arm64.whl (12.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

xxtea-5.0.2-cp314-cp314-musllinux_1_2_x86_64.whl (44.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxtea-5.0.2-cp314-cp314-musllinux_1_2_ppc64le.whl (47.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxtea-5.0.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.0.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.0.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.0.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.0.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.0.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.0.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.0.2-cp314-cp314-macosx_11_0_arm64.whl (12.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

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

Uploaded Android API level 24+ x86-64CPython 3.14

xxtea-5.0.2-cp314-cp314-android_24_arm64_v8a.whl (13.1 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

xxtea-5.0.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.0.2-cp313-cp313-musllinux_1_2_s390x.whl (57.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxtea-5.0.2-cp313-cp313-musllinux_1_2_riscv64.whl (41.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxtea-5.0.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.0.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.0.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.0.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.0.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.0.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.0.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.0.2-cp313-cp313-macosx_11_0_arm64.whl (12.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxtea-5.0.2-cp313-cp313-android_21_x86_64.whl (13.5 kB view details)

Uploaded Android API level 21+ x86-64CPython 3.13

xxtea-5.0.2-cp313-cp313-android_21_arm64_v8a.whl (13.2 kB view details)

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

xxtea-5.0.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.0.2-cp312-cp312-musllinux_1_2_s390x.whl (57.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxtea-5.0.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.0.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.0.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.0.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.0.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.0.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.0.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.0.2-cp312-cp312-macosx_11_0_arm64.whl (12.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

xxtea-5.0.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.0.2-cp311-cp311-musllinux_1_2_s390x.whl (57.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxtea-5.0.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.0.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.0.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (61.5 kB view details)

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

xxtea-5.0.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.0.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.0.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.0.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.0.2-cp311-cp311-macosx_11_0_arm64.whl (12.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

xxtea-5.0.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.0.2-cp310-cp310-musllinux_1_2_s390x.whl (58.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxtea-5.0.2-cp310-cp310-musllinux_1_2_aarch64.whl (44.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxtea-5.0.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.0.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.0.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.0.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.0.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.0.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (46.7 kB view details)

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

xxtea-5.0.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.0.2-cp310-cp310-macosx_11_0_arm64.whl (12.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xxtea-5.0.2-cp310-cp310-macosx_10_9_x86_64.whl (12.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

xxtea-5.0.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.0.2-cp39-cp39-musllinux_1_2_s390x.whl (58.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxtea-5.0.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.0.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.0.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.0.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.0.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.0.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.0.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.0.2-cp39-cp39-macosx_11_0_arm64.whl (12.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xxtea-5.0.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.0.2.tar.gz.

File metadata

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

File hashes

Hashes for xxtea-5.0.2.tar.gz
Algorithm Hash digest
SHA256 591752ffe906d05c51cdedce5f9ef1c0aa73536e98c2fc5780c19207be49bc81
MD5 69e87cd73855ad4398f8c0090ab6eaff
BLAKE2b-256 4e34c6a5a604c468860b8d3f4ef8fba79dd9ddf139dbb1c2be3d5e5d0c214d9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 260dcf261fbad5f742b488370f68264bcdfbf32552ffcdac0a9be1e273ec0ce3
MD5 9bc5cf5bd2b712ebf5b2f644ac67a052
BLAKE2b-256 96cb880a067431416250021bafdb4615643c4ca3392a0c0442892d8637d86af6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.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.0.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.0.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ea418f8eb67a5c7ff0d4cecabbbdaeb7b94f246d4378ca289245922d4b5d708c
MD5 d643850d4c06fe8b22e457b3b92ac445
BLAKE2b-256 930c01aac03375209025818f457ceb4fa237b20eec94bb48724de6fa4bbd82ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dc74e595d033eb1ae0724f926d3f004990bf7b59807ebbacb1e2cdb592020049
MD5 5d8b85e40f08e7c5708fbd9f31188c04
BLAKE2b-256 cc13f1234a00c3cb603d6a3309dbaf8f649047e8cf358e0fd791294f39906807

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 61ab752fecfec5c8a13f5466596bdd2ffe89f3c6da7d5ac790deedcf97b3fc46
MD5 b5b510f487acca2a309c8263066438dd
BLAKE2b-256 53f6a10b94b3a1c914c32d27c9329c3f6749f062541fc473b7eaca8a654453d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa38f447eac1b6df355331d8f6406d02fd2d117f395a92c647124007aebf93c6
MD5 800e08b80a658ce3f510d7284bae4ae8
BLAKE2b-256 f1474d3445b95627ff6ed7043ab50afeeb33b2d62d7022cec0d43a1a1a0f55ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ac6b1d44db2803f0db84234975bb093681ec44661016d87475d186492f87a524
MD5 e435591f7741214125c03c47296cfea8
BLAKE2b-256 3e52f5008d5807d8f62ed8d7bbafb6332e2365470e524850fb3bd5d99d141acf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a9c731c01c062e191e2256279bb97fa91a9dd70f3ce915d586bf280327a4a34c
MD5 75197331a541364b6b5804ef1936d95f
BLAKE2b-256 64920a4352f7a168ffdd9c1df447cdcad7af04ad9822aa06eb55405c9d42b2f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5d454d8c7441a4d3dabee07725e87e11f41e073d31f47bb5068605085eb21f08
MD5 ea4b7326923315f37999b803e3df6cc4
BLAKE2b-256 1a87783faa249bcc4631db1f152b39330e02e986bf347570a7c96a7d7d7e4c4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.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.0.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.0.2-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 9ce3eb448f116fb4670e91d9897718f0cb737734b2a1d6d694643cd3b2cd92d4
MD5 3ffb6f787c895fe289e3929e55441df4
BLAKE2b-256 9c1f825334d39689a81d1b0631e98bcc10a4ff413d24711db0ee701ea28de9d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 54475e23e1122e424284655152a4215ed8abc648e12ab6595660248570835b7a
MD5 34171a92bc34113fabe2163af418a35e
BLAKE2b-256 1ccdc0f7826b45004b871d4c07207e3ccf732b43d0d272e7a1ee6b586f91d968

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c687f4e4e5e5e59b76decfd30c977ab1110435940c60e0c18f9f0de65c34266
MD5 889ae999a991eac08005a6e94f5605e9
BLAKE2b-256 78de4d05a955b4510686d119481dfb7f74e4958d8260daf54059e639704509bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 26d77aa2dd87c0c1825c8d7fb141e68fda2f8353f6997cbc28419a0205417232
MD5 74894c37c36447759af920139ccf9fc4
BLAKE2b-256 cdc2e0a1ca9e5e1ac4960c561e2d1d577c0ee1354a513791b25eaac3120a47ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 441eb1ee232392b3e05aa2683d051c678c6b4244738d22d2d92b75cdd28f77c8
MD5 70839b08f5d40109daabf1929f8214eb
BLAKE2b-256 d6eaf24c44827302032c6d13a8be72841a1dd38853c4d3470c9df5be57eb07f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 58fd1652528f7ee93f935442ec3dbf216225fbe57b8ca6a5edb94030f33d6b76
MD5 bf87a525e2b33883aed6f97aa2372ec0
BLAKE2b-256 b64369e1e66ee2bcb9752cb30846158dda3e87c00629d07bfc272d462137488e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.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.0.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.0.2-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 69ea8cc6e2e187f7b56e1e9778846b4d36b648d2840fdb247110077d3e87e992
MD5 cafc5259998eb9db25a98e553254c708
BLAKE2b-256 1e97116465104592362d303a92549c02836e46c09d022598421f98accf7feeb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 92e4adafbefb679ef495b4cb02a9dd50a304d8174e0c91b4f25cff80acefeae3
MD5 4ded6f3df96b197d6e610ff53ebc1aab
BLAKE2b-256 34a364ed746b23aef3e7be8433d6f9943dab508ed172d73874cf1736db71914c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a33ebd109fe5172ba07a2486fd64e9cc7ff6fc367a150797328a638ee37d950c
MD5 73d12059d48df2ded57b7e6cdbb7714e
BLAKE2b-256 0c67b4ab1d121a0f36a43b3d39c42b89bf0dfbe7c67a8918cc6bc40f33e79e76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 91775bed195af7e9af44cdcad1eb888757c55616a1246de80e6b591eee493cec
MD5 675041c59230e0f22fee64d8e061098a
BLAKE2b-256 81fd699788dce009dccceeb39c098e357303eaf749d631c4c587f94d8296ac57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 c08dd3195b77fe90dccf2aa201975f3ef6df3c2864b65b4a73e89a13d0b75a82
MD5 482c8039d351e219279cb36e337c4cbe
BLAKE2b-256 d11377f3215c9f6a6f30283892c684c4c0ce2b3ca9217b4fb496358966ef9fe5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 06cfbe7ffb564a7cd5f13915ff0bfc97b3a3cfb43d5946576ee36fb568df4cd6
MD5 3621720848736c58c64da47cbb7aa8d6
BLAKE2b-256 1a7fa5ffbf8a0ef2ab6e31ae740b99b576c8ecd57b1a7a4459b59f70a4ed5fde

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.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.0.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.0.2-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 5a69e59d935e5b52d8011d8764ede0e12b66636cde004ce52f773a28c553f036
MD5 0da66eabd2c18a5dcd586c70a7e386ab
BLAKE2b-256 cc9556b69281506f6993c66966ab515a8ca2770e47963d6677194d3f1b2fcb5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b63c2dd7df65f51fd7761a4b3885bc316d46cf9bf93680e36b4a2432ec3ffd25
MD5 ece64997606c536c1f8b29ae8137633b
BLAKE2b-256 a56324fcff9bf038ae7518aa48632f9a367c96bdfe7d3cb48b21d847dc561369

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1de3858dcf3e877029a4daeb6789a5211bf2a2a65e6fdc9db5287db82321c7cc
MD5 49d01cad4f8718648af500a4161c1bb2
BLAKE2b-256 6b681478f443b7924b634d5ec39d7e86bf068ee80f4f7fc66997e7a875b84d99

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.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.0.2-graalpy311-graalpy242_311_native-win_amd64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.2-graalpy311-graalpy242_311_native-win_amd64.whl
Algorithm Hash digest
SHA256 f42e713efa12d7fa3f34549ab822f2fe36c22531129f6fba2691d62db06c64e6
MD5 f341e1fe9894ad5325057cd4df7bac4b
BLAKE2b-256 911c9cf30f49d1fd7d1358791e4773c95d9107c1a20afee3ccd36f3a601a3cc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.2-graalpy311-graalpy242_311_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.0.2-graalpy311-graalpy242_311_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.2-graalpy311-graalpy242_311_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b4493926081fd02333215cf3a423d519dcc90c622a8eb9c306107d22dd1d2a8b
MD5 a6314a3bd79158df81f1aa56143dd267
BLAKE2b-256 d92e71739ba85b91d6f64a545557357621a4b1fefa76eb5c823d8299f6522784

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.2-graalpy311-graalpy242_311_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.0.2-graalpy311-graalpy242_311_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.2-graalpy311-graalpy242_311_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 74a5b468f64b87af5fa0bf9dc3d450d289fffaf082af00680bcf35af9f2a0e53
MD5 e1af9288f96b9c9d746e1af22442360d
BLAKE2b-256 9542a1d62cf6a8d26fef27605cea7df99d2808a767c9f4a3c85451c18dbef75d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.2-graalpy311-graalpy242_311_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.0.2-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.2-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1190e0b1c3ad7a16a2a49bd8cf7c3dc1550240a58aeff76b5794164b9b499006
MD5 5c7a112c27fda2e38428206f16f93ed7
BLAKE2b-256 c4da757bbb89c708f4704a9d60a911974d8a4afe2cd7bfb1d6b0dd0356650397

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.2-graalpy311-graalpy242_311_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.0.2-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.2-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fbc051fef460a49df57d5777c37f5427c9f92587521f11b799b3330c2bd738f1
MD5 ed913de23a0eea6ff1669a7c40d2fc56
BLAKE2b-256 2e65619f777037bc0b58c141f132d3509ba4654dcf3ef5a265a3e01cf0cad29d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.2-graalpy311-graalpy242_311_native-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.0.2-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: xxtea-5.0.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.0.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 16bfa540b76e0c603df52c44f4ef20c1775d6d3ecff230e642fb5288c3ef9f22
MD5 97c766b37fca379943318a6648411874
BLAKE2b-256 bcb69674678229ebe7775db66714845832d674b413e7d556b350d2ffd6500230

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.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.0.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c964824039f6107804c3a6a9ca05677e5adec205be0fb24522c7bf0ccdf30063
MD5 2005cbf584284429f93610a092a1caec
BLAKE2b-256 886e1806b2fc4610e5a1f95441c6d31388e186d77f6b661c309b382858a34bf2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.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.0.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 3272f1c33ba760891f6ca02f9768cb37cbebb5e2cdeb51b12d49e75c8de1bcfd
MD5 45ee6601669c6812cea2236dc69db127
BLAKE2b-256 0d556d22b9ac69f42c2d7a252e73d1d1afb3f23a1fc9bd61be79b77c55a7ea7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c1a45585f837bbe3b6837e22ede6bf2edeeed917a30e796f4439c2aceba147b2
MD5 6873b881cb885197ba3456308bac7ed5
BLAKE2b-256 8e80c9e84a2c44ad64459295b146bab298ef4996cff83dbb21f2f3cda5969921

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 65e50e2a84863e595d7f42a8731026c6e2dc4b9f6238c6837a16e09158ed34ad
MD5 3b5787c716a587590f85d0c1ecf5debd
BLAKE2b-256 f5c93de240d1e123874a59bd9c1c870bd10de6c2ddb220dce879fe0c82705f34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5e8806c00155317bad812742291f7dec749b1df5e74be7bb861300e12195715f
MD5 388dc5b81e93214fdfca015bcb359b90
BLAKE2b-256 38b3bd1086f710dea042ae169f97b9595d18294787b1bc8ddc1176eef0a520b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c390545aa869862fa9c41d13f3415a3e205739a260bd36f67b552966c8a8cb77
MD5 670935e77434a7d34ad7a193f251abba
BLAKE2b-256 66d5139fc6fea478b4606e782fc2ac2f97d4d5589512682fd6d58a33300c0cd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fac754cf12250b5c6dfbf2c97ece1ac80b86f3e3d34e35b84bb46f329d4cdfe3
MD5 7187aecfe61b62efe60289854e0080c1
BLAKE2b-256 3fa713ddcee9f24889fcebc1943eac8d1b475dbc2723d50c39902aafa597660f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d6e99f373b881a29eb000be4bb0de8137ca6715a76d261b399b55e5bb8e806f9
MD5 01143eb200d05d73c4334907598856cc
BLAKE2b-256 f4d4ecf04ea0078de302561936f5762aeb2d0d16d5b55dcafccb656066bb1bfa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5eb7c3f50369d93ba3737397d8716b2aa634f62a1e6dd4ef67b8fc808580aa7
MD5 07406184c10cd60a07d8106dab40198f
BLAKE2b-256 97f91789ce5b86d0600650cdf5fc0267ef5aaf64f5331f5bf8a949f0952bc8d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d4cc14d4e938d56a38fcfba87c08318cdd564b4a7a7e503858f6ab0765f7cc8a
MD5 b824bd74c9d0aaabaa4c9b7b40ac7267
BLAKE2b-256 48b829b9530556fdda4eee833a0ebfc6df6344385dbd9abc4a30476588d6dd5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.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.0.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.0.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 da276c3a07e374ebb210e39dfbb8a280aa97f7cefa26fd51991fd54d16f5265d
MD5 2e4213d9e26b996ae7c8ec9320036835
BLAKE2b-256 78352e5e8401c754b75bcd5299f0e1a44b275cf79c119f0b359ce160fd15fc27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 dee62361da4d6f04654b105abeddc38b5b56f3cea29be1bc98a547f49dd8ce59
MD5 593994ddccdb6d1ae40efd94c27d3e64
BLAKE2b-256 3e7e472b69b81608a74290bf06bf0d2d37ef13c8f1eeff4be199487d490b53ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0b69b3197579fb4625cf5fba1e350414e369c421338f031b1e8ba5660c565e8b
MD5 cc3bb8dd429626ebcca3b5bf2ce48724
BLAKE2b-256 cf77d22bd1e130a509e7772763d34fbab539b4dbfd90d1650670a824d1487239

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a9cc0b3738e0347e78ea93a44f5d3fa71b636fadd36cedff0dc40e3cffe374b1
MD5 71c1b7c8ff5af93a4ad8c46079c7ea5c
BLAKE2b-256 7cec4ecec156fb969fd4815acc8515e6184c1bb80c76904aa978637d31dfd2e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5f692567fb218397d99f6228705e184010f67a663cf3339c2bedf64e729cc962
MD5 fda7b2949c00bd112a001003b23188da
BLAKE2b-256 1e50d0e930fe6a47251a78b6f562931b9b79e84c1f182c9758f91b9ba8638ca6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 2fe4d0cf2081abfed096942fd7655aec046f5646ef2c6557cfa6b4c72b8f6803
MD5 93a83ad7ae287ae4a19a5797ed806654
BLAKE2b-256 ea0663c122012f42b09434abaaf931b2871245ebc5fff85a8f20cc780f3403ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e131f77f5f2ad6e8cf7e11f4749fc7badf21d47f54b574b988df4f26339d25e9
MD5 1df4a380a771e7e52eeea17449398e5a
BLAKE2b-256 f288c5104a2b2e673ce92557ac391c8db052318e8d241b71f56b270e868c791b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 afaa1044e6de6e2a44d27653acf82e5c3abe0aaad21f8199917d19ac6fcbd068
MD5 8d04604c3ac8c81eb517a36a3f62d710
BLAKE2b-256 d68829959728f4e85f400c871681b8790becb2f5513f4995eae80eb188f8bb2f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.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.0.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 209ddc7c852756f3b8650ebc594193692bd7f431f0f37545ccc746db5e0b1e26
MD5 566f9a582bb984e2dc6d9d514865341a
BLAKE2b-256 5aa63031406c8232a73bb8ac8d8369d04c3fa3c6ae31d05d618d44840a4deb47

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.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.0.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9a6e84b60985e14ffd42ac358fde1478f3034611d5482b019b9ec37db18771cd
MD5 3eb9e77ca75b9995c98137e8a43d3220
BLAKE2b-256 c3c64fac248418503a7af02482665605b66740ec450dcc74fb0b854dcc5d026f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.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.0.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2b17f390b155ebb286a16de161ea55f747749df2a9eccdff40269e191c76169b
MD5 c3501d4d0e8aa8831a538d049e3c17d7
BLAKE2b-256 cb86dcf0daa85f2c62f6d35a7cc199853a5cb0faed8a82d0157c7dc883389dd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ac187ed36621210507d161b58bf1b109a1b7606e41cc5c1082fe2116c0435f3
MD5 1cba64793cef0adc89af93bdd96d9f9e
BLAKE2b-256 51bb0c0bf4d16ce7ff00cf74b93563fcf9956b328e16dd870b1f327b08635b1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ea48512c855d5426fb5dd32dd339b11d718618ae166eb0e78e0bc7329a966be9
MD5 4fdefabfb56101583e162657dc5008cb
BLAKE2b-256 6636d08dbd61682e723e5879ce66169549b5fe01afce286108742fd8737179f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 36e2b79d3bf20dea7a43098989336d9d91a2972b9f3982db39d4f2138f962705
MD5 1c97e0effdffb376177776a2bc6caf1e
BLAKE2b-256 f20d7d2d076ad1b90f81647cda25d989796c814bd38394bf6e7eb8aa2670e6b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f4bb72873a4b1f2f12fe5c78239c52ca937f3b6c0a8a3ea57f124d72b5563014
MD5 021ee9cbbbc6b21c0508f9b53aeabe50
BLAKE2b-256 720bdfeb1a77cad07f99ba2092d982fd4fbf60cf635c750c1c2e124c94ecfc59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0589b6374c18067dac5a085353a8a979e3eb7ccbc66827fe6949f644c649102b
MD5 099d781de875ec3764874f072e7e0f9a
BLAKE2b-256 facf92af61c9f8b452c9f6e30e1106f3ad45689d09cbc4def238e5618b36df2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b64e33362807b850cbaa3a2a997a465f78c4a64f16c97973cfbbbd3065e1d714
MD5 a2682ea08c97e35dceb26dd0c13688a8
BLAKE2b-256 2c2ce541f7602b8d65840e60b2f258195d1e4782064c65fbbd152e839a8a63ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b31236ecd81f752a6b7953c92fcca0bffa89c51f8150cd554c4fd05b5b8bb6ca
MD5 a0fc29a8125d211a7e6d6dcb6fe39b86
BLAKE2b-256 07a32d57cd89ebc13bb13c6212631104d78d72c03dd663cbaa6bd52c4b637713

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0e0de872f3e0d0c45facc15709977025f1e0396d43f11502fe4e766a5868f8b3
MD5 a9b8f1999c2f4ac7b68dc8436578f9c0
BLAKE2b-256 0dacf9bf708ac046f4465972f2d2df5a05f9e74915110b3f2ff60320ad26551b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.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.0.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.0.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd5f7c0542df5233eae77c915c75e6e3e77b9b8bea18bd9dcbccf84a51e903e0
MD5 917c415e781fea6273ad19ef1889b6ca
BLAKE2b-256 595f9435b6c03a2aef164de4918c3165e58a5b0e956da336a9e196bbc2d31389

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a3f45c348e1af0d0b2ca426da3fe5c2760ffaa6430519cfbb7153d1c04b7a5e5
MD5 d58e261a3b91fc2c64d4bdb9e464da0d
BLAKE2b-256 94ad07b792e15bce9e089d0a6e67b2b525aeb3315619377d2c4afb896fbe4a21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 39edf7ff1e5998ee87eef7a5bb8bd0ffe0c1eb1ddd4979463b6e3b2b7586769b
MD5 0d363fe8d2c5a1e1bdffa8141eec0918
BLAKE2b-256 f49851e7a574b5138edfb4fa8c1895b8acf4dc54096a1b9d3ee45aa7563c9a3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 159eba4c9e5e6b2a975f8b606ba1d66b7ab4faa313190f967a5e480f6f5fc921
MD5 1705688f8e2d0f2ef6bc338a05392635
BLAKE2b-256 800c482cf2b459c1166ea4e0a24c955c0866e2ddd7950b60c8bea9269c1e8e8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 13342c301b2bf3d6370d2da7a7f39a1fc36dfac9c529b1b0370985069c515285
MD5 f3591ab88ede2f9ce3b3456bb11a9026
BLAKE2b-256 e1ed4538169bb87396ba72b024af65ab6bc13a5a650572dad0aa894c9016721a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 dcfc29000793f8ddc98b7e73a01029a437af9314d169a902cd2d8218f16432da
MD5 28df6f5d6ccb48982b2eeef24f46695e
BLAKE2b-256 c5668680acf894d0690cd5af86056871af0785dcb7fe00f6fa9c3b599f8c0ac5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99353de0977ddff130881702d5eb2bec42c9985dc6a7070b2818f6b30fd6ba45
MD5 18b0a0badabd368f1febe485341b5420
BLAKE2b-256 1db4b81eead1a0d25e063290463e622d7f348600b7a9a66d02acb7e634c812d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0c729ead5f54eb1f191024640a70fb6432a3aac07425105cc9459ea9c1d66408
MD5 a3db547a0e8f6cdb20231aea82c59032
BLAKE2b-256 8f50d583d0c00a1af87c2d1fae840e7bbcb302d4a953f71d8e5be8b9e49f45e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 2a2e5a7e23b8e881dabc2b0261a7fb5ae4901a5fc24b59d635afacfd9bc35deb
MD5 10f032512b33b0f6fa64566a734c30a6
BLAKE2b-256 5e8cda0fe0b92def7269e34f5df695c546dd49cb7085d4470df1d7389c3b7007

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 fc6782583477cf456f13b98e1e6e443cf798d62a259a92755566324b829bdd41
MD5 e7931faa5c9a02127aa516377152499d
BLAKE2b-256 0be8753ea5fbf939383c0f27ec7fffacd3670e9b125525a951da9d86d5b40b9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 478e8b8c7d5376f4bcc43e6b61e7a81474e66fe7df6bbbec9b0ff86c973ec9a5
MD5 9847d8548b72e63f0fc515bff77db6f9
BLAKE2b-256 f5d804d72784e69b4eccf4470ef9d9da776bd2ba1512f5582be4ab7c1fac8452

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.2-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 669faf92566365b57277082ca19ad6b19fd26aeac0969907844d7ace5888ff60
MD5 038848741095273663cb58d72a80ef05
BLAKE2b-256 76abf8ceeef3a10d32e885c4751e9c7487f23b5860763da18bb9753ddce2932c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 44ca8e3235a0c797df41c54434cd64d3bca0c43e4a9b44201b1a302e914487d2
MD5 45ce233c52be11aab8f4c568740a275e
BLAKE2b-256 bb8519fa14bb44615b563a3c6e5232ed0df9509ceb9de671858cda06028a1a86

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.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.0.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 f10dc2146358b3c16af095dddb08d15b3bca0275118e42477b64545f54436120
MD5 627a5152a900b111b25f469ee9a2e90c
BLAKE2b-256 c36a7a657ad446c4e0d43eb09af3c31b7fa8961fbbd7991c60034f780573033b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.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.0.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2684900ca456d16a5a1420d30b24e680799829b6c1032a9b2c6ab6850a0ca3b9
MD5 8c1a4cafcd43f3dd9a5e03617f61d319
BLAKE2b-256 a0f80458d4b832464faeee9c91189438c21470367ffaa10d8903b70350016fcf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.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.0.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 47b4b5335bc5575dd4585c427f0f96e3b91ef94ba9fcea6b78364588110e6a7b
MD5 4250a3e46dbbf634e7952cd9483f8f90
BLAKE2b-256 ce6f804099ecc8d21dc46534af04334f5f9dff555315e9a460ae898aab5ec828

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 341496e1b6355253a55a20f39dd766a14c9ea790198038ad84a6aac316e6c548
MD5 6010c2c547eaeb8836cc50997dec9b5b
BLAKE2b-256 de5c2a7d53f3a14fbe64267168cf05a258e745b5c780268015149c09fb9117ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 98b7ce93dd4100f58c66e223c9b6226586cc77712dbb960b62322fa3cd95b795
MD5 9566ec461919dff00e6b64ae563ba82a
BLAKE2b-256 5dd9e675c05be278b6f78b0744e8fc7861a6142bb7e1696c48156bdad9316b82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 029560ae136d68880ecdd6fa57856b2dab1314be88b9f494dc3f5b92af6badf3
MD5 5b479ba814dee91228f5ff662dad04f1
BLAKE2b-256 4e9a25e0d8a12a33ad511aef1842be1098325428a52fd46ea7d4b62562a7314b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6ea2b0e68fe55f3c7862816b606035649039831cb12166150e4bca6b06ea7edb
MD5 632f1eed62ea570cb7accef152e38e6d
BLAKE2b-256 8ba77f1dfa1cffece708567a4582f9503008e9bce56df364b62fbfb412ddd7d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fb65f8860a97586c1f28b95967132c54c7737508eaabd2b7824818e960371414
MD5 95016324b34e97756ee91977049fbb84
BLAKE2b-256 7e2cd76eb83bf3a97bf583cca0d475debcc958945659674f49c5e880c78aaf24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 468ffc9da3138239d4f4e2c18d4c5ebba358b7a6287fd394dac8f9ad85f3f0f6
MD5 9955228b201922bff196fc9e454bd0ad
BLAKE2b-256 a62c591eb9269dd6c4bc41a2275787ac7865449309655c93b02d3fd100c322ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9cce6cc65fafdfbbdd34063a5f4294d08cf0ec4f2936a0ac3974bf36120ae389
MD5 e54d778f7d7ebf257288d249843d6d31
BLAKE2b-256 293aa2e2ec5da9d9f3b810426d56f3b5e4b8412092c43f66b906500726a5eeac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8937d94fc4d6ea35e642829028904a5c6f835dad9d0f225a5dc12385c5ebb730
MD5 acf0f98c1a3161e9950b2a936a03d697
BLAKE2b-256 b577f55e3ba68a21130d1967b20c85733531b4850019e6d027326c0ee75a7624

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.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.0.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.0.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c4eac95637cb85f8904a6e20371f696b4da00a1c74af93ad1c9b0967d9ceeb38
MD5 e6466c1897efdae565eb199c80cbc0cc
BLAKE2b-256 b9466cdd6700f96c10696197d5e95a8f838a376bfa97805ccdafdef504c96952

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a5af301b1f1f7365054fd53bf859752ad21779f11457350743e816202ef611b2
MD5 865e198297dffdc51b61855e6f199188
BLAKE2b-256 cb792d0b832e0d1eb4951b9364212805bcecedb8650fc51cfc5a49401d8a0165

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 bc33b1f4d28ef03cb4ece027a919d1ad6b3e73bccadf755286855f099001d363
MD5 563df5cf2187108cb9897c10bec34604
BLAKE2b-256 bc627e560a3835c086c48a625d7c74385d99dcf5dc5026798fa285bb8cffd740

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4339a029e0947acdef6a4f3cc6815d0aae9e5ebe5f33a505b88c226c8a316721
MD5 6aa3c0575e6170b2042d76875e0945df
BLAKE2b-256 4a6331ac0f9e81e07337178621706860bd832dee49faf58a5a45462bfd3151a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 68b0c4a3de7ad8fd06b541dce499475dc11ed2b6bd5ca3122a615ea82d723a2c
MD5 0b614752923c0426a4a8f4f7888c5f71
BLAKE2b-256 f65c64ab68c99a2fef8c4f1223a9aad1a962bbd8242cb1cad6d0bdb45e196101

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 734259482c528d04e8d2f584839859c5950f279ef885e28b01c799e762ffbed6
MD5 22ecb002c29455fe887d8e22505becbc
BLAKE2b-256 db26738f508ebe27b35ce1adf5fa5972086b52d4008d4f20ae4e630475055196

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8d593ea60af1e061d86b0ad73828095e7a199d2d5ca00c0f41e09dd329737ce
MD5 d95f74d1664f237c0cdf92f5413458c7
BLAKE2b-256 0bff571dcfa7b3fae224a7a41c7630ee625806ff03c839e6b753fc859d273512

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fa243b1bb0bdaa17583266527ae8add2d487bc45a053b84c64600efa5f9b3987
MD5 afd5f027caedebfeef7b51e89f5cad18
BLAKE2b-256 d46ad12d731536148c93dbb017bec23747c5a94b9b3192ab279d5011701b5266

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 ab7d6d8ba4635d3f963089f19fe70948d0261bb103de778aa464d1bbfb6a4e3e
MD5 4c22409f0564ada2f21f006ea044a240
BLAKE2b-256 db5801dfc105fe5727dd10e86bc56daa73d09d5614551b01ea5bd72189b51035

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 ec59ec74ff13a58dc53afa0106c0b1fde57b037ccfaa67f77e3997b06a9acef0
MD5 d0e2b59177a35a4b1735b632013f5c8a
BLAKE2b-256 6a73ee95c6b8df9e980c57b1ac710c9a446d5f461127ada2b11c99da4682fc47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 792b088cab9826a3c178334062360425d536c76065ff86fbf751e187ab41f35c
MD5 06a24e7e7db51f32021f74fa2da47923
BLAKE2b-256 f0e0f6cf75bbd52709505a1ad2da1c5ca4534e76a7b544a893ed96e20774d987

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.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.0.2-cp313-cp313-android_21_x86_64.whl.

File metadata

  • Download URL: xxtea-5.0.2-cp313-cp313-android_21_x86_64.whl
  • Upload date:
  • Size: 13.5 kB
  • Tags: Android API level 21+ 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.0.2-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 13a87db6865ef6c52571f1fe800a98006239398e4541b2b97f092be9d0abeb51
MD5 f26a6841def008f0971471c2b09c4866
BLAKE2b-256 c8c2256add8e334cc395894d1d13f0caa5fe883e8780f58829563f57107a6796

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.2-cp313-cp313-android_21_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.0.2-cp313-cp313-android_21_arm64_v8a.whl.

File metadata

File hashes

Hashes for xxtea-5.0.2-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 fe0eaea2872701c1e686c98f3217ee6dbe4afdd5e44bd1dfa3000b6adc7ca651
MD5 35b5a7ebb08997b4a65f095f1f5e4654
BLAKE2b-256 b1a0c67a71d6f9fa4167a8699cb0d0605270649054ddebf5458095910b18694d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.2-cp313-cp313-android_21_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.0.2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: xxtea-5.0.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.0.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 501ada8eccea326dfc8ee5d2975b6703fc27954f9640d78ee9912d09d1c0edcb
MD5 1f63e325987e7451fd125b81d4954f4f
BLAKE2b-256 05277996581977374fb610f1c12c5a5ef2b0a5c994484df977c7e27c86bfc5b1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.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.0.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6e9fec2c25eaab3d9be3f46cb1061369495cd6481d2e6dcef03f538db7388802
MD5 b7bd775db68fc93ee7357e2b0e68280b
BLAKE2b-256 eda3dbabdb0ad663cae611ec44e6378296ee8463a30f468605571f19ff7a8fa2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.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.0.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d3ed79fd8885c424799d0e58d4c3f2cd9d4d4eae95f6f4c6c9177de393e49df5
MD5 6fbdf89acbd027d885f3ec62e18818a9
BLAKE2b-256 7b1c3f940799f49ddebc9e8e780d4f21f79fd699820178ee8b3cb36d75f069d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a367c61011b8b80540fa63b7a413d35e9f292e30d54d9aab7a45f260c3f0e21
MD5 573d631a431dfcc5b0ad4aa793dbcea3
BLAKE2b-256 63551ee6588341e8135e701cd2a149bad145aa5908255f1e3199f8b431e0f945

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 524b64640ad6f8b1017a65a1b16959f39e98835520aaabe6b398c36304b6215f
MD5 2ac86cfd20abc26c2dabdf8a6a658cbd
BLAKE2b-256 a2c58499f63c8a31bf884ccbfa9d791f37a3b655479c38d64cb7834eaf7cddd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9ca8001c22f4bbef7dac997441edaffb0e2446b373c45f7cdc323783aaf9bef6
MD5 49a826cdf0e27b5335d40236e563b930
BLAKE2b-256 16d4d202412dc0aa25e14d55fc96918e6f032387776eaf0c3cbda32422f05d6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8a60df15eca0aada5950daf1f8aa7209e45f4377ef1d161a82997b34bd12520f
MD5 195329c455c66f3facd6d9291887fc85
BLAKE2b-256 78d659689fb7d05d036e2a11465e22c69b957dd2c5d67bbf4f2385f9e755b021

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a56b17be640bdc0dbf46d845b4d3297f5ac8ac0dece3e4b1b939d5fede8c7f6b
MD5 85f13a16608fbc1526dbe3ef93126ac7
BLAKE2b-256 45ce67feec9af7032641ea69046a107c95893c475932e2d60cdc23c82870f915

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 33396ca2a593d39337c97e170929f63567ed52cb088e60f4c725eda32808f834
MD5 956aa0a3b0d06407b1f1d978b9d08ea0
BLAKE2b-256 d80046ef0f8e85b9f2db91b4eb46a95988c9064113a8a21ff59679e277c73844

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6504e169ae322e85542634b46b470108edb121c702ef1a060d4b723ede03b216
MD5 0feb2db17c1e02f5ac5da3921e3ca317
BLAKE2b-256 4ca13b0e8dfb65756ea199e850959d9919ae923e6a2f68e00825037380dd075b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2e4a3c3ab93a39b025ea6664dc26efbae2602d3add5b071848d94194176f1040
MD5 e63368903d5c9c4dd34befc18b23437e
BLAKE2b-256 04b902d6fd98e33f650bd545e97b0f451fb1ce5572d0831ca6f3a3513cc478b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.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.0.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.0.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 06f998626f673fdf5061555770006913cc7c84ff7c0a3038ef8578a6c0c52005
MD5 111c0a92b01fb172e586c1d185e702a2
BLAKE2b-256 f2c2b15a611beccb1273ef2f3dd001d71c8993a94a6684ef3dd908682541ac78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4989e0dded2304022c599d4beb789d50d7511d6c9fb701f39db00519df55fcd8
MD5 5abd152e22105c93c218a6d1e0586f9f
BLAKE2b-256 62dfd31edde20fe4af3b5565f75f01b442a6c8543e27656094c6e880aab58e08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4e7e722166a4e9c9979f905e25dfe5f92e90ddac5ebd776f959456feffd54df7
MD5 1d83d042889156adc0629d135921303f
BLAKE2b-256 9becafc0ee422bfc2a12288801ec53473829777675ac95b7f58f99829e248a2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8e19ed9f33ee5858e1752d9909106f291ee41b99067c669b5dc4a866d659f7bf
MD5 f383f6329aeda6e48fc9101003b71fef
BLAKE2b-256 1a415b57f6368f939e3079c58454ad82acb6e8941b0d1beb5eaad4e7c13bef01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c9b988f88a3a36c8f632af0cd43743607be1d96c064902b72a33f2ed27b01fbc
MD5 0ec0c2347d6ce6fb40df211db6c17c18
BLAKE2b-256 fe1f1c76042bfaab47d82b097e79a2ce8a4801ba3652c31b245ef4ca98e9058b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e94d11bac77a7881c97d28eadeb3ad98c28c547ac4efd7d6f82d0de41c4d54b0
MD5 b42d0dd5c699f4096efa0a0a1e1c5ef0
BLAKE2b-256 22751956cf8947de65ad2a8abe66f3cc6b9f93a9c9adbc9c8ca6c34139dbabc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed6fc316800dcdacdc792f2cc20b02234b86dc0038d11617a86ef082f939444c
MD5 68d379cad70020629c5683888932d569
BLAKE2b-256 6ec554221063970b0ab330d01e995addf42b6437bfbe40ecf3bab986d48ae907

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 68dbc85363ce530400e6ad20da58b2eb2ba547b6e24d74e1f47852caa4cf29dd
MD5 1b182107b42c0bbccec2f10971fee2b3
BLAKE2b-256 4db3141b37472d98eb45f3e0cba9b8dadfe55e2a0e143d4a5d605cdd4b00aec5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.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.0.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 1aba33b09b39cb11edc5db8bcf31c9f02f6ecf7b7e08ea1d86637ad517d42580
MD5 13b0ad9712d894a2b73f2064fb570ab9
BLAKE2b-256 876fbcc1af06f8258abe13f27adb3b6ffce92aa566e797741333c682b20b6f46

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.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.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 63c97e5e838f8433a794f7ff18fbe787dd2c7d0f835b475daec79407a0895eb9
MD5 1e99ab9ff9f14bc44dcfb3d188c0426b
BLAKE2b-256 2e5e3afbf11c6741424f3f2ea2181be8799f030d32f04e8cc3c575cb22873473

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.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.0.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e0747ba81822e0c46c125e84966ba7617cebe448d22cbe583f302754731ab63b
MD5 1d2f37708df94b1d2f3b6a30162b6452
BLAKE2b-256 d6ec45f32021813d4c43d7b87940487a3a8f68b565790a96c9c60de326f266b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4570d5611a6a0532cf0a578685330914df56444f8714870686b6e98544b39eb
MD5 37d54cfb86d90f1fae257aaa33ecce6d
BLAKE2b-256 7a5cded9d958c806f3c3747d9d99500244c9c0c4a690fa434eff354dca00da1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 bcc7c2bdb28b4c994a9c1bc56b48f84a2ee68152daf627ddc1dc4cba4c07ba7a
MD5 c6a7be9187777afb1b6753bb97ec4c47
BLAKE2b-256 002e84c24b9cc62c34b2080d3f227b11e49438e8d6fb1652f45796cdd5fe199d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 89026f63cd50d8e49e167364259627638a85c5cb71147b7ada970a34afafa7b4
MD5 391b2d66b8ca71bcaff97c0f6b405e3b
BLAKE2b-256 a0ca52651cf425cc37d1370539f9d0d0a9a85e194531a0b32dd37f33cfe750f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0c4646080e083f0f19d6e585dcbff53e6db2ad2da4c89b8e8365a331e8c56908
MD5 bca0ef95495ce03f785a1a63882c8854
BLAKE2b-256 a4e6e5c15cf194ba3fc2875e79dfa0de5076b823c79b9ccc7d80174358c45e73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 34aa23b7dfde948ddcbf6b3b90d4d713a91602211bf840e090ea81d0945904df
MD5 0954774873b71faadce100d401dea546
BLAKE2b-256 65962ab14731c9ad5f93fde492e64cae4a80d4bea7ca01ebfe13ed6471a10382

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 27f233def432cfc64ca62128dccf780b6d087d34f493daf9643dc0150c998ba8
MD5 9e6d9e7f4f219f8f3c01245372b254cc
BLAKE2b-256 fb42bb64cfd40b347bb4655892763972047c63e10b39f177c7c6e304c03669c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2653e57656da56ecccfca2dac506b39f9311e0447f80b1f226f6ca6f52f2f2b7
MD5 4ae6c7a24c6849e9038a8865acecabd3
BLAKE2b-256 c6ad79ec29d1515b1faaee8dd2538405b91b98ab1c430a19e30bb70e1cf14a27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 20c79464cbacf3d4dc83c8819bcd6059a052a251e87ce68d969499ff0dd96b78
MD5 e3905bd9d992f2a989cee95c3de70f1a
BLAKE2b-256 4ae91a0cbdec49acea7e1b811d25c96f6645d530c3c53d84a2f292fcd9830a6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.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.0.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.0.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4704ef25a7183fa295e848e6775a3bc2591cceffbb49ba6ca077e23dca8447c3
MD5 d8965313da0e7e8a7c75c882ff3492c2
BLAKE2b-256 c89f92038f0a9767df0fc14314c423ca9c8281a89c47aab42921ec58c3463eaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 163f85b14167f5a365ff32384d73c828d6f704bc8dc1abdd2c815c83cff7e3a9
MD5 7d537f0b37bb52caa9c36028e08f9c10
BLAKE2b-256 df44d2b8857d3d886fa00164f11cc6e7d431be780885f4b2b125c76cad7568b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 84b13f105e02a3ed7527ed7600a43903ed64d5914aa5a2f69b86a29b3acb57d0
MD5 ecd162d5e68ddcd4cf34c5f393556764
BLAKE2b-256 594fe35ba118cbc408c7fc6af6220f7e8af9eb18a8a0c2878282f051ca89a843

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1150fba6d9432d5686fafab7936c3b5a974fd1b4587768aa3a21489bff3cf68a
MD5 8d7e8ac99c355d292eb90f7ec10241a3
BLAKE2b-256 f54aae0997ae605c98206796069af7902cdb63907513ca91a6d41ec39e99573b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c47635cc509fdef02befb6322d067afba5e8a428a8a7c7aff6b88b3101ba29eb
MD5 d71ba74ff737ad010ac2b1cceb902566
BLAKE2b-256 63631820c8574b5d3845577cad04ceacde11ed2c027af7e37f613a4fb228a220

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c22daba0e9a29047b711f83bce249a53b0d64853e350b1a7103144c9037513fe
MD5 452c5cfcca49620f723cf915defc5968
BLAKE2b-256 73cedd067fe1041ca7eb267428f66d81baa9929c64589c843e9262650433648d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c6ca05aa6574cc11fd3b9c8de010b7cc5b19a75bd32ad58316cafaf87cd05b2
MD5 91d805982a62d1fddffd4d78ffc56e4f
BLAKE2b-256 d3f36d10f50a6519b29e2f449138e333649a18e2472dcba31daacf545a8f93a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 205bd4085be02451cdbe89b191344b8127be7abfd2434f52473f1f4b5fefc080
MD5 4fcce6df0f76ae63bd69eab46e01b90f
BLAKE2b-256 9ff0a798083380ab4c2da11f3f4bcf1d393a43422369832ceadb72d27fb3b3c3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.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.0.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 aa7aa7c870bcda342704e0f403b5b00ea6e113ddb1a3dbdb099249f0ec537ddd
MD5 fbd89be87df497ce9d47749f7c02621f
BLAKE2b-256 3e077b9cb6596565ff06875471e5b4b5f019adcd2abada02ef346ed9405cbd03

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.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.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d83fed7f049f87c65fe18613586b134db3e05cb06f49a3cb815676b84088655e
MD5 a587969752cebd2bf0cd97ffa4996845
BLAKE2b-256 8f3798cd829b9c459bbc9d5c2017e9fd603b389555e514f6610351f85b01b52a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.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.0.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 208930e9bedfe79367fc6e5bb2b9be4c7636474527b6a75c5b08ca0bc46eb8d2
MD5 b8217ed4aaf2237308698a9e9c3c06c8
BLAKE2b-256 985d2562e59d4ab4f23704f38373b785e20225d418717b9a3bbf937d6fa0f29a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3313991d063bf41cd6d0b962874ef232d9171d60e154e23dc72aeef760cd113f
MD5 b827f902ef7aafecb47c4b6d07dc6696
BLAKE2b-256 5e3094f6f6053c9aa2140027e40817b3565180eb479c249472a0a92118ee6088

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c463a119779b3cff6530b4a81a030b5549ab48d313b8809455012519ff562f23
MD5 7e8a6daf627407dd0c6a64136b53ca5a
BLAKE2b-256 6318ee4a9754ff588978685def56191c2c6894363096a688e643bd9d4c346ad0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e4032fa54c95685ebc17d4473bad11db852b49f15f6dc87ed8585fe6b0219124
MD5 8b8a4b74574487078551fcc1b309f278
BLAKE2b-256 27d705b4f34a35aec272a030e43e55d6f4871d5e7cff84c0eaef5c104e1789cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 64e954f0835ba0689c12698f1e8d656f067fafbd63f31ef38ccbbefe0f3b1555
MD5 81da8a5a33eb66b250ea40b1c086c221
BLAKE2b-256 e86781162760af9db4528c07433e65b85af55f7f668af4fac66afd997603a653

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 df1c7ecaf4f0d16a39030d58b1fcfc71f6c6abcb67f6e188a9013f40b690d013
MD5 0b01b8624bd1cb2b4d2dceeefc82d4bd
BLAKE2b-256 9db543ec1be2e634a67fdeb199e2b16127405ad88a35a87ab59e949d1e402a52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1cccce8da541b9b1a463bf3f96107a33a5206b9cb37ad974106e03d1d6794cfe
MD5 9dd0f35ef262846d3f5ec8d50af71a45
BLAKE2b-256 a40bc8289b8d307b70db001e1c2238b8ecfe3fb49b307687794206f1240bf390

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f9bff489e32fb096b3f899c4c06450462f1e7cb76d1939bead0fe6707fec17f
MD5 61fd57ffe0c4b49cc6f3f861e38b8c98
BLAKE2b-256 9998d03df9c287ba8a5f362fddef0df15e93006032d6d5143136c988be6332f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 cfb94ff051a84489d819c820a8d1849a14d8c4a465c6e5ea66df049ae6c4ed82
MD5 aa54b87f71b797855c5b6cc8c4d0eb10
BLAKE2b-256 cf7097d416ffb4db518be9ad5e0495dbaae279dfc7349dfb94eb43511443d864

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.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.0.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.0.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b03dd17b624cdf34624ad41f9f50edd5cdb7037ec3c5985e9b6ee0968242b77e
MD5 0755657c9259327a7cd902a354f1ec95
BLAKE2b-256 3955438a485c531e858831fcaeeb189389e7f4af451c6876910837b6af9c516b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1cbd8f9672aa71651d8d96067ce23e59706a02473173f932e7b3ee957b2a1d8e
MD5 05042a4bf2735b07ebdf738359a8d5f2
BLAKE2b-256 14eca2a7588546c507b92be3633c9b68666157d1aaea979668374c8f169ff868

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 926589b6bbfc54e77ec303b0a9c0c71a96330ab71adf59067129c6827833b1b9
MD5 71ecbad5523fd3e6b1675890af94f10d
BLAKE2b-256 d7c1a5de37210a46507bdb153850d6fa4aca644db0a4a4bc1c55c5d7c5467f82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6987a26f7ad8813d7a57ed5fa185665bd8cf1e32e2613bd781d294820ea370b9
MD5 2fddf23a5881b18c38c7024eb7364cf9
BLAKE2b-256 87d0f5120506d4a9244dce811b078ff7c9c6d6f6767beecb71360d50a15a2476

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2e9c5131daa2ab74c54ded56e84bbc00293effac7e618145e1cd7b22d1cea63d
MD5 b3c695e9abdffdc8ade561e235c04f99
BLAKE2b-256 447fe870d2279c03977dd60d142f9321bb980c294a5cb63401833784fdda0eb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9d30f4c1c1945f50fbdf43220f9b8fe50f0fafac0c627dff4f84ccedc0119558
MD5 896aecd84b9278f53e1abd428c09ec1e
BLAKE2b-256 04dfc7571db058f839cd89a8ba9c3b97d152dc6e07d8831b27560e9e6053d520

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5550e5b4de5ceab6bdb4477cbb3a09cb7a407008d8e5367a98a308d7b75e221f
MD5 75618c1fca833773c2250070b6f4491d
BLAKE2b-256 8543b632f67ad277fa6f21a82051affe95b179aa85b965b29c1b9098e13a2395

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a54fea0472ccee5ac144a87341a27484f380fd3d5b30b0f1a6b3f1a7a40827d
MD5 6b7221082be93f11854ce86149fb0a17
BLAKE2b-256 aea468dbae843001013fe9786b38315ce79a6af3546e21f8c53e65bd80267bae

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.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.0.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 8451a9df8af306fb94e61ae048e7b644d51ddf58a508106877ec9f4c42deb9cc
MD5 656f13ffd077c9661cf834bb5f850683
BLAKE2b-256 1e8106091b42a9fb2a6a22729d006444eda185260911a58c24a2cf274238133a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.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.0.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 72f5daae376b4760a0722745a1e1e0063e7c78255c45e196b29115c317e9a0b4
MD5 a2988d9b274bbaf1ba1d40318bae493c
BLAKE2b-256 ec1ead931321850c6c1c035f21114d326d27653a5a7ce80db59136c0024c5785

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.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.0.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6cf5a9cbf1888d0e3794a77ff7115e206f8063ff70bb9afd0073a78e40653bee
MD5 13912778b9cc3e476dae8cdb90b05a39
BLAKE2b-256 1d4be5f67e5074013c2860cb14483a8821ba3a4deedaa42f4c16ac99765f0fa6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.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.0.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 733c9c8769d483e03db5e9ca4c22514b882efce995dc4b1d9ecf4075b59461ad
MD5 760ea4dada91362d4f0a4b21f1afef24
BLAKE2b-256 460044dc107a6f1a479a23264d118d564322d707de26b5e9d24dde0426b3ad80

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.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.0.2-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5b99096f5293093167e7db501a1a5b66556298139d65435b1168e4dddb36c36d
MD5 fd479236ee61c91a3e84a31d61495fbe
BLAKE2b-256 a4366972ddfb80a69ed09939cbc8663dabb400f967d9976a607fda358ca9283f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d1d1ac56b8c9ffd9c93a18f5daa0d2fd13b520064b039f3340de40c08ee601d3
MD5 5a0f2bd40cebfbc88c68596c55003f55
BLAKE2b-256 82f4969f6d9b8bee521bd27cf43d032afeef35424a15628685b91045ee28492f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 667b7a8983814688cec027c9bac4c4561d1b015630f8657a3cfb01f0028731de
MD5 11cad00f3fc342e646a0809d3d00810b
BLAKE2b-256 95d1057af2e5945761501b959a3472dd604ccda104d9823ec457471a3ad680e9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.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.0.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 193951c7f4f4bf30c170f5cdaf2e7374aff5a2563d3fc358061bcb6f979a34d6
MD5 ca02e8d34fb90717a3ac2c458b9f0ef2
BLAKE2b-256 ecf220d0ee1f9b75d45b363641ccac6bc2f4a13f6c31a72196546f581d53f638

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.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.0.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8058258a092c1abe7cedcd3b9559f006ac6bbcd9f645a91bffe44a86b6947331
MD5 61d93907f6635d7992b81539c86b53f0
BLAKE2b-256 0f3809cd7933e42718f54bd898424007dcf78340aa3c0d60c4b664d328a0015c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 57b88fdfff03267a84f74f9ef57f3725f85e4b12d81c77a9be588a81c800b709
MD5 f6de262e6b0e52d570ed5c37feaf9d05
BLAKE2b-256 a92ee3d37835ae9a5da84d951b048677bcdcc9f88582cb86e8ad95b6825ffc7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 feb75a6ab09636a01c25259cf0f257619bcc2679235248733f0fc359cb231811
MD5 aa8de09b5658f763001a03f0631152d1
BLAKE2b-256 2f4b1d107e9c67a334b2c3322ba3516e9686611001f2647a0603198b3b08f8ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.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.0.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.0.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5d4dfd458bceb4f8ceabf3d8b7c71be226e7ae9e94b52b47b2b116a6e82395ae
MD5 caa05b5ed77cfd5383466ef87ebbef47
BLAKE2b-256 57654b5d7024e69327d659ac315d9d228dd574ac5efccc8cb7ea90599972512e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 137800ffe28a343b0d7a886550fce80b6692c7da946da3d2b183c5d9d7f878c2
MD5 2dc89e02e3669855b3070e7051a12b8a
BLAKE2b-256 e126dfd9108145efbcce1162b1bda75f0b8668334b7e2e72932aae2a95abf62e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 595ddf310270a74f503c2cbe16a58c12f18dc78b6c9b07057f34ecd60962327a
MD5 4509fcc915fafd02bb8d171e0c89b9dd
BLAKE2b-256 4a48da43d5e8bfb790a0f523db785311192c2989f2951eab73c66157ef7cc642

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8acb46001e4deea4692dc4f926aea2cc0de205cdd82040d5d72a99faf85801ad
MD5 7234792fea3015466a73ec647f054c5a
BLAKE2b-256 6551c452d4f8e30a3d83c082fa482bb070409fa1348598ea0c671f6698b80cc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 01631bbfeee523ef9cdec920a14558d63aeff2b3c681c6c5769b25afaa387493
MD5 b0ff58f23d980c6053cb1dbde7cb3bb8
BLAKE2b-256 df7d60a9a0c89c6e5e4f4e1095f9b6dede261682e0d0711c63fe531adccf42f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 3c9d3b73d4babbd2d8c071b1663392de8d2a54fc6dfe8d4730aee3c767085153
MD5 3d8258ea5cc3d7977438d94c514cb4b8
BLAKE2b-256 7ac1a6d16ae4e61d38224c94bacfa5d96d1542f59d707c719d73d44ff2d6eac0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.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.0.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 918290ef50de920f4c5722e2a4f2b4afb70b3d17414565967f5c992f14c70baa
MD5 af3fa6cb14c41d837e124c683367175d
BLAKE2b-256 7cd185a4b862ebac1fd5fa4d8767c88a8f72068ac1caa474489960bc825fa6ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a2e55fd9d43010d4745fb39ebf5951b7f9f27b36b17846c066ec86e5406010aa
MD5 9d63130f27f4057dccb6e301027fe49c
BLAKE2b-256 9eb504fafba2b33005950159d6db453c209185803ff3bd941e8b479a3f361c49

See more details on using hashes here.

Provenance

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

5.1.2

170 files

5.1.1

170 files

5.1.0

170 files

5.0.5

169 files

This release

5.0.2 This release

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