Skip to main content

xxtea is a simple block cipher

Project description

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

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

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

Installation

$ pip install xxtea -U

Usage

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

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

XXTEA Type

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

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

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

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

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

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

Padding

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

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

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

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

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

Rounds

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

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

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

Catching Exceptions

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

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

Project details


Download files

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

Source Distribution

xxtea-5.0.1.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.1-pp311-pypy311_pp73-win_amd64.whl (15.2 kB view details)

Uploaded PyPyWindows x86-64

xxtea-5.0.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (14.3 kB view details)

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

xxtea-5.0.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.3 kB view details)

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

xxtea-5.0.1-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (14.6 kB view details)

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

xxtea-5.0.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (11.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

xxtea-5.0.1-pp310-pypy310_pp73-win_amd64.whl (15.3 kB view details)

Uploaded PyPyWindows x86-64

xxtea-5.0.1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.5 kB view details)

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

xxtea-5.0.1-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (14.3 kB view details)

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

xxtea-5.0.1-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (14.7 kB view details)

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

xxtea-5.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (12.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

xxtea-5.0.1-pp39-pypy39_pp73-win_amd64.whl (15.3 kB view details)

Uploaded PyPyWindows x86-64

xxtea-5.0.1-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.5 kB view details)

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

xxtea-5.0.1-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (14.3 kB view details)

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

xxtea-5.0.1-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (14.7 kB view details)

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

xxtea-5.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (12.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.0.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (11.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-5.0.1-graalpy312-graalpy250_312_native-win_amd64.whl (15.4 kB view details)

Uploaded Windows x86-64graalpy312

xxtea-5.0.1-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.1-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (13.9 kB view details)

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

xxtea-5.0.1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (13.1 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

xxtea-5.0.1-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl (12.2 kB view details)

Uploaded graalpy312macOS 10.13+ x86-64

xxtea-5.0.1-graalpy311-graalpy242_311_native-win_amd64.whl (15.0 kB view details)

Uploaded Windows x86-64graalpy311

xxtea-5.0.1-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.1-graalpy311-graalpy242_311_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (13.6 kB view details)

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

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

Uploaded graalpy311macOS 11.0+ ARM64

xxtea-5.0.1-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl (11.8 kB view details)

Uploaded graalpy311macOS 10.9+ x86-64

xxtea-5.0.1-cp314-cp314t-win_arm64.whl (14.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

xxtea-5.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl (46.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxtea-5.0.1-cp314-cp314t-musllinux_1_2_s390x.whl (60.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxtea-5.0.1-cp314-cp314t-musllinux_1_2_riscv64.whl (43.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxtea-5.0.1-cp314-cp314t-musllinux_1_2_ppc64le.whl (49.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxtea-5.0.1-cp314-cp314t-musllinux_1_2_i686.whl (49.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxtea-5.0.1-cp314-cp314t-musllinux_1_2_armv7l.whl (51.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxtea-5.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl (46.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxtea-5.0.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (44.5 kB view details)

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

xxtea-5.0.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (47.7 kB view details)

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

xxtea-5.0.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (65.4 kB view details)

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

xxtea-5.0.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (51.3 kB view details)

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

xxtea-5.0.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (49.7 kB view details)

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

xxtea-5.0.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (48.3 kB view details)

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

xxtea-5.0.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (48.9 kB view details)

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

xxtea-5.0.1-cp314-cp314t-macosx_11_0_arm64.whl (12.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xxtea-5.0.1-cp314-cp314t-macosx_10_15_x86_64.whl (12.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

xxtea-5.0.1-cp314-cp314-win_arm64.whl (14.0 kB view details)

Uploaded CPython 3.14Windows ARM64

xxtea-5.0.1-cp314-cp314-win_amd64.whl (15.5 kB view details)

Uploaded CPython 3.14Windows x86-64

xxtea-5.0.1-cp314-cp314-win32.whl (14.2 kB view details)

Uploaded CPython 3.14Windows x86

xxtea-5.0.1-cp314-cp314-musllinux_1_2_x86_64.whl (43.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxtea-5.0.1-cp314-cp314-musllinux_1_2_riscv64.whl (40.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxtea-5.0.1-cp314-cp314-musllinux_1_2_ppc64le.whl (45.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxtea-5.0.1-cp314-cp314-musllinux_1_2_i686.whl (40.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xxtea-5.0.1-cp314-cp314-musllinux_1_2_armv7l.whl (43.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxtea-5.0.1-cp314-cp314-musllinux_1_2_aarch64.whl (42.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxtea-5.0.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (41.1 kB view details)

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

xxtea-5.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (44.0 kB view details)

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

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

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

xxtea-5.0.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (47.5 kB view details)

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

xxtea-5.0.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (45.9 kB view details)

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

xxtea-5.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (44.3 kB view details)

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

xxtea-5.0.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (40.2 kB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

xxtea-5.0.1-cp314-cp314-macosx_10_15_x86_64.whl (12.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

xxtea-5.0.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (12.4 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxtea-5.0.1-cp314-cp314-android_24_x86_64.whl (13.5 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

xxtea-5.0.1-cp314-cp314-android_24_arm64_v8a.whl (13.2 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

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

Uploaded CPython 3.13Windows ARM64

xxtea-5.0.1-cp313-cp313-win_amd64.whl (15.2 kB view details)

Uploaded CPython 3.13Windows x86-64

xxtea-5.0.1-cp313-cp313-win32.whl (13.9 kB view details)

Uploaded CPython 3.13Windows x86

xxtea-5.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (43.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxtea-5.0.1-cp313-cp313-musllinux_1_2_s390x.whl (56.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxtea-5.0.1-cp313-cp313-musllinux_1_2_riscv64.whl (40.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxtea-5.0.1-cp313-cp313-musllinux_1_2_ppc64le.whl (45.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxtea-5.0.1-cp313-cp313-musllinux_1_2_i686.whl (40.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxtea-5.0.1-cp313-cp313-musllinux_1_2_armv7l.whl (43.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxtea-5.0.1-cp313-cp313-musllinux_1_2_aarch64.whl (42.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxtea-5.0.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (41.0 kB view details)

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

xxtea-5.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (43.8 kB view details)

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

xxtea-5.0.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (60.4 kB view details)

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

xxtea-5.0.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (47.4 kB view details)

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

xxtea-5.0.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (45.8 kB view details)

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

xxtea-5.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (44.2 kB view details)

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

xxtea-5.0.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (40.0 kB view details)

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

xxtea-5.0.1-cp313-cp313-macosx_11_0_arm64.whl (12.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

xxtea-5.0.1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (12.4 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

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

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

xxtea-5.0.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl (12.1 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxtea-5.0.1-cp313-cp313-android_21_x86_64.whl (13.6 kB view details)

Uploaded Android API level 21+ x86-64CPython 3.13

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

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

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

Uploaded CPython 3.12Windows ARM64

xxtea-5.0.1-cp312-cp312-win_amd64.whl (15.2 kB view details)

Uploaded CPython 3.12Windows x86-64

xxtea-5.0.1-cp312-cp312-win32.whl (13.9 kB view details)

Uploaded CPython 3.12Windows x86

xxtea-5.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (42.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xxtea-5.0.1-cp312-cp312-musllinux_1_2_s390x.whl (56.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxtea-5.0.1-cp312-cp312-musllinux_1_2_riscv64.whl (40.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxtea-5.0.1-cp312-cp312-musllinux_1_2_ppc64le.whl (45.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxtea-5.0.1-cp312-cp312-musllinux_1_2_i686.whl (40.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxtea-5.0.1-cp312-cp312-musllinux_1_2_armv7l.whl (43.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxtea-5.0.1-cp312-cp312-musllinux_1_2_aarch64.whl (42.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxtea-5.0.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (40.9 kB view details)

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

xxtea-5.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (43.7 kB view details)

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

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

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

xxtea-5.0.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (47.3 kB view details)

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

xxtea-5.0.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (46.0 kB view details)

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

xxtea-5.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (44.0 kB view details)

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

xxtea-5.0.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (39.9 kB view details)

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

xxtea-5.0.1-cp312-cp312-macosx_11_0_arm64.whl (12.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

xxtea-5.0.1-cp311-cp311-win_arm64.whl (13.6 kB view details)

Uploaded CPython 3.11Windows ARM64

xxtea-5.0.1-cp311-cp311-win_amd64.whl (15.1 kB view details)

Uploaded CPython 3.11Windows x86-64

xxtea-5.0.1-cp311-cp311-win32.whl (13.8 kB view details)

Uploaded CPython 3.11Windows x86

xxtea-5.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (42.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxtea-5.0.1-cp311-cp311-musllinux_1_2_s390x.whl (55.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxtea-5.0.1-cp311-cp311-musllinux_1_2_riscv64.whl (40.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxtea-5.0.1-cp311-cp311-musllinux_1_2_ppc64le.whl (45.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxtea-5.0.1-cp311-cp311-musllinux_1_2_i686.whl (40.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxtea-5.0.1-cp311-cp311-musllinux_1_2_armv7l.whl (42.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxtea-5.0.1-cp311-cp311-musllinux_1_2_aarch64.whl (41.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxtea-5.0.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (40.6 kB view details)

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

xxtea-5.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (43.2 kB view details)

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

xxtea-5.0.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (59.6 kB view details)

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

xxtea-5.0.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (46.9 kB view details)

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

xxtea-5.0.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (45.4 kB view details)

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

xxtea-5.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (43.6 kB view details)

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

xxtea-5.0.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (39.8 kB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

xxtea-5.0.1-cp310-cp310-win_arm64.whl (13.8 kB view details)

Uploaded CPython 3.10Windows ARM64

xxtea-5.0.1-cp310-cp310-win_amd64.whl (15.3 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

xxtea-5.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (43.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxtea-5.0.1-cp310-cp310-musllinux_1_2_s390x.whl (57.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxtea-5.0.1-cp310-cp310-musllinux_1_2_riscv64.whl (41.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxtea-5.0.1-cp310-cp310-musllinux_1_2_ppc64le.whl (46.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxtea-5.0.1-cp310-cp310-musllinux_1_2_i686.whl (41.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xxtea-5.0.1-cp310-cp310-musllinux_1_2_armv7l.whl (44.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxtea-5.0.1-cp310-cp310-musllinux_1_2_aarch64.whl (43.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxtea-5.0.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (41.8 kB view details)

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

xxtea-5.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (44.7 kB view details)

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

xxtea-5.0.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (61.9 kB view details)

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

xxtea-5.0.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (48.4 kB view details)

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

xxtea-5.0.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (47.4 kB view details)

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

xxtea-5.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (45.1 kB view details)

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

xxtea-5.0.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (41.0 kB view details)

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

xxtea-5.0.1-cp310-cp310-macosx_11_0_arm64.whl (13.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xxtea-5.0.1-cp310-cp310-macosx_10_9_x86_64.whl (12.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

xxtea-5.0.1-cp39-cp39-win_arm64.whl (13.8 kB view details)

Uploaded CPython 3.9Windows ARM64

xxtea-5.0.1-cp39-cp39-win_amd64.whl (15.3 kB view details)

Uploaded CPython 3.9Windows x86-64

xxtea-5.0.1-cp39-cp39-win32.whl (14.0 kB view details)

Uploaded CPython 3.9Windows x86

xxtea-5.0.1-cp39-cp39-musllinux_1_2_x86_64.whl (43.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxtea-5.0.1-cp39-cp39-musllinux_1_2_s390x.whl (57.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxtea-5.0.1-cp39-cp39-musllinux_1_2_riscv64.whl (41.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxtea-5.0.1-cp39-cp39-musllinux_1_2_ppc64le.whl (46.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxtea-5.0.1-cp39-cp39-musllinux_1_2_i686.whl (41.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxtea-5.0.1-cp39-cp39-musllinux_1_2_armv7l.whl (44.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxtea-5.0.1-cp39-cp39-musllinux_1_2_aarch64.whl (42.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxtea-5.0.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (41.6 kB view details)

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

xxtea-5.0.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (44.5 kB view details)

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

xxtea-5.0.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (61.6 kB view details)

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

xxtea-5.0.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (48.2 kB view details)

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

xxtea-5.0.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (47.1 kB view details)

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

xxtea-5.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (44.9 kB view details)

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

xxtea-5.0.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (40.8 kB view details)

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

xxtea-5.0.1-cp39-cp39-macosx_11_0_arm64.whl (13.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xxtea-5.0.1-cp39-cp39-macosx_10_9_x86_64.whl (12.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.0.1.tar.gz
Algorithm Hash digest
SHA256 c1b55ede05ec37c65adc38d1e4d1bc8f8cef627e59261c4148be400157fb9585
MD5 839d61f61d15251c5c36f190b913f4a4
BLAKE2b-256 389ff690c72d612d9d5d1f4814db8e355a3c559b7c4a2dd76dbfc89a7c7c3c94

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 cf2b6354df144cda952ef237b7382a55750b1f0b28dda87613e32953da7cddab
MD5 560f11d0da9373a648ad17f8f84e59e8
BLAKE2b-256 9e8bb8577f2a01e39df70bfd6d70a0c55850e7be535faa6ec6dd6e50103bc831

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 98ac2b09940313fd2c58537476704df0e78e2555ad1905f24d1cb7fc35289232
MD5 659bfefade42e5d3702208cdb06c5180
BLAKE2b-256 1fc27b185de2648707b887e92aa8cc0901a29e85576bb693aa8e97e254c3033b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9393818420b09def00ffa81a9e2e3e7c119d4e4074d87b7383b1eb2b393c602e
MD5 ae2b01adc7a0d5de710fd3e33e19014a
BLAKE2b-256 b4db75c609b31609ab7ca6d8b7047bd67b0363a359a486b74d95e971d0780dc2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4b4bc3c02fc6cc39bf78bf0b27c696ee14768a822494361b41bbef7835fd8271
MD5 bdf8c0c2ab1cda0c569d9593c6370aea
BLAKE2b-256 8c9b3fa1eb44b095de27b781e17b61afa39494c5313f26151a96d5a436a72a3d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4c67577d18119546aba112e2bfaa9051593e0a839a88e49fab1f51a8040077b
MD5 7fefe78cf7576609468339bfe3f93be7
BLAKE2b-256 608bead0b58a1aede3d3525975ed86a5aec2ca08c947a73e8528ab88086e73b9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 69d366fc55befbb47888f2b1860e613b14284e7e17e0687224a358862ef12707
MD5 193038b0deabf330b0880e9e71a0f04f
BLAKE2b-256 90fed0fdf19e5d96bdb92125eb8dbe84e784f7782349cd0f676f325247592dd4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e6b2515d6b6df664f9cad26afefafecb207196518d306aa1bf5467a7c3431607
MD5 8b9e21350581856fedc5a03fa0412689
BLAKE2b-256 5dcd316dc985b0bb5c441684dbbe2216b176e05068f1a76519e9b5d7b054b68a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8867c0778e0e3c28267518014cf4e7752d463fc6885ea8dd7c4e0662bd136107
MD5 b0303ab883b6ffe87ccb5ab2f6d4d071
BLAKE2b-256 431914d896fdcebf0938b62e2c9ac2697c12dbc27405a5acf4b263494bd9dfec

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.0.1-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.1-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7f1526b993d61faa85c6f4f54cebf474e246b998bad96b16de4c09011ce73253
MD5 1628f71f8693b3c5b924fc95f5a6ec5e
BLAKE2b-256 fa1276bdf9bc6850fc3e9b8e71d1fc6cd809072ad9314cb002962e41cc004197

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.1-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 bd83ed5cb59c038ec399f990be302a5a33612943c84eb53c079fb60c21e45919
MD5 850f55feb6941464beff78a7735ddcf7
BLAKE2b-256 a161d2a9a9063c2f0e5fc088bd66175bb984db8e1e842028d7bf01b13502f97c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36e95e7bd0019a4460978b82448c4933ec45c94b8f304dd72b46fb2c7faa89e8
MD5 978666df89a9a4ab7f76e4da8335c5d9
BLAKE2b-256 3eb5a399ee08561c26f04503affd9f408c429e59a80970980471ff58d2d3466e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 78be549487f8de83242958e2565e15b62f4241e6c51d0675632250995ec135b6
MD5 92b8318ec0e1d194cd7384da0f25e6f8
BLAKE2b-256 d3683708a298160cbb6526a955829223e0e1e20b4b05eeba15bb7722f1ef7d18

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f3302f24ad2b0caa8be44a90b76fd758b441a0c03fca295ce831819bb3db6da0
MD5 84fd5e47791e62b7d6b33604c244e48b
BLAKE2b-256 b8ac410df61e5b1f21e0806862a6cf5866e9eb99a20a4f7ae7113202362dc2f3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 335a2d65769f93c27e57719f85924456e0637408d00bfc82ddc940d103d5f839
MD5 c961ecb13dc1c6df0ff68de7014bc48a
BLAKE2b-256 60545e7cf7286e4887e86f712dba118bb7e89e5ffdb279d65df3f11c447cf019

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.0.1-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.1-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 921c72016eba83c7132170dde80c12f250009ec3ccba6e64925b027eabab3218
MD5 f4dc01906cffd19d213024d17048f3eb
BLAKE2b-256 810b97e4a23199f9b10e095cd137fdde313964a6080089b3f651edc4fca925a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.1-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 fdf5ea2749382fd8f09c8d5c482672f98bb2125243264b8448eeac92ea3c52e6
MD5 30b48d49b1e6c5c902f900d9b830c5aa
BLAKE2b-256 b5b8b2f26439ff2ad7d4d20bc4315c3ab0fb4af00b4e29e57bf3a642dc9c00de

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7513c6a1bb2e790e61ee9513945550fdd13a2ee569ec854720f359f995f31a8
MD5 265942700817bfc8bd8e6f0b987cc1fb
BLAKE2b-256 f75e3c2435dcf3b47b01c266e782e15a908b1044dc05b0aeb3e8e9bb046323b6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f0d90b4b2e205e37727e2ae29cfd9898a19cd7447e19bdd19582ae550c5e3ac6
MD5 f2dd901b0641af2038a7dda4b60b38b6
BLAKE2b-256 fed6773c8bd52a74e3b53b603bcdb8a6e527717524f8a30c62b9e2228d54d3c7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 b40275c87b109ddded6abec1a11447df0acdf4d374ec84b5df4e5d72ae20f36b
MD5 139091ee6d904ddfa01a70aa9948b58a
BLAKE2b-256 985e2490f3530b03f84adc8e78f3be629b1860f87f83f075bc9a80e27b5681f2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 300252fb2bd8f131b474068ba4b440bcd38fbc00ead4551172b0a657f71fa541
MD5 58a87542dc48bc7890489b735a4a02d4
BLAKE2b-256 7a94db452b8b062a0eae6bb2e74d8c197a727153b8a9dffd9cf3fe9767d2c8fb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 6d6af37edc916a175af6dee73401919005dc503a25699ee8cfbef79c1d9248b4
MD5 10a86529e61cf56cba9d57b1b8f349bb
BLAKE2b-256 c067af5d04ff67f7635471fa6a440b2db39c29af9288d5b1ef1d10e6a6222a11

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a41f17f363b869cbda580e2550434dfe094197314bd50cbb4ff425fa0d75ceb0
MD5 4f935469b683406f597a28d85cb44d7c
BLAKE2b-256 109f68c72220730a2152f6fc0a2b592ea217ae87068f2f664548bb751cd7c3a7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a1568a06fe5cc3ce23e0eff6693d72c6c1b40fe522d4e28c25c56cafa153380b
MD5 2819e28e3f36677e03f1eace56761d7f
BLAKE2b-256 7c3a690f7c9ae9c96f8b7be2a194be04b536a1603f47b50538c29854e0e519cb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.0.1-graalpy311-graalpy242_311_native-win_amd64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.1-graalpy311-graalpy242_311_native-win_amd64.whl
Algorithm Hash digest
SHA256 e1ce11a00c0a959f2bf8592c2423c7f174e9b384bd822254dcc52cf3eabc97d3
MD5 ed011f386ec67b72420325397033d82d
BLAKE2b-256 63bd452f62b8672f779834aa9b428427fec7ea86182c4a4e62ad8df3d1971a8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.1-graalpy311-graalpy242_311_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9078baf67961db5e1f26648ec684d583ae70c3027612d4b85b9db1e3bfd09ffa
MD5 b187bc2b24c22b0ca7a1d58b66c0eb26
BLAKE2b-256 1dccc7c35a9670da83a0273e2935b4331b6cfbe03ecd3444769cf5b66b56a165

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.1-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.1-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.1-graalpy311-graalpy242_311_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 5480b7ccba36fa64e5b3b32e1c34c6a649a1e56881d96ba2dc625f9ebf1bf024
MD5 1c4eb8c2434f1832c586da4f7f6dad11
BLAKE2b-256 f78691bd2b5aa0295802174b9fee6cfaf0b751a840db195d2d63934f777c07e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.1-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 782d40e546a9e8e736067bd449a6d43c0e6e34af1d8d0bc71f98278ab7f0a327
MD5 ec0c076e5a9ac0b62ba394df6c6e77bb
BLAKE2b-256 9f2acf0b4fa44176c198b702cce00e97a325453251b25fdbbb0c29057bca4d9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.1-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fcfd662e6eb0b2094f7f27cf8cb4c1dad2dadda53342495d0b443a6e2bb4aaf4
MD5 a861ea34cb15eff5d9a437c39e087f2b
BLAKE2b-256 ad0d0c0922fb5364d2e02d549259580642c7698f413edba86370c09decba0d3e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 dd5fe2ddabedf6937c0750796333d8c1f37e4eecc282dd75192e50f6896ca15b
MD5 a7456ed6c81df4932a6ae0fd53dc420f
BLAKE2b-256 7fefeeca6a99ef477e43f67a481763ef54387d3e4d37865ccbf79d23a60da9d2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.0.1-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.12

File hashes

Hashes for xxtea-5.0.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 0626b5d5f459757fa02dd27496c116720b0c0e4ce600e67f040af86df4535eaa
MD5 77beab8220ae81c017b190ff2ad4ff52
BLAKE2b-256 91afc60c379a922710b7f4c9ee4a714ed009b4c516ac94522641a5eb5cde90ce

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.0.1-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.12

File hashes

Hashes for xxtea-5.0.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 03d456e7c6bfdc552e906ec9d70f65e3714bff77fda1931b244ad25482b83ce4
MD5 aab75517d89b1390a8efc49ca2bb757b
BLAKE2b-256 ff3ab1f150e0481264799837592ec0b965591b53aba59e983178a7c355c0db9b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2b0e9f858e7e9b33e3a88b92718b0f825c6c263b5502f077f4d150bde498f40
MD5 abdd84518b002a6bd026b68e6933010e
BLAKE2b-256 246b429e2bb0f75bdc04846c2ca9c020d66bb2d44fc98c10bf683c6dcc69e313

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 95a51fdb126c6d389eec697a28aeb6e09be7910275423b9a01df59127854dce0
MD5 8873b0eef82340b61119f71e6e06727e
BLAKE2b-256 7c235498b57c641433c4bcd7c770f42c1448c1e401952237df61209822ab7493

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7ac861bdaab3e2c9bd557d591cc734e30ace20771f4a51714b9ea5df3f2b4716
MD5 58a000229bc542adb0d32f5af0ac0dd2
BLAKE2b-256 2a3ed00b4cacf92657061f24c6f50c5ea7bf0e0d83c442e8b2d777ff51178a7e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c986dc6a774223888865b757f1c2c4d4d5edccc229ac830890240805fcfeff1c
MD5 b311b692b3d0abd60c5967e859cf7350
BLAKE2b-256 9b92d84eb36eb22cdcd355298470b18d58dbdbb4fdc66fb2fcd79ea94fd690d9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 809b51387b509d3f89ba1942e784f003725a3d95d2c554caf3f32febf9508d92
MD5 f230ceafb99a8f6af0eb779fdf68ac0e
BLAKE2b-256 607f460b8b75f630fe0614f387fd60f81e5b9718b55fb146b15cc87f91b4febe

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 be2c235ea6f3e7ac128ac209889244db98b4c3e5c02bc7c4170c05fe44d0deda
MD5 07730df2ae10330124a16368d697cc83
BLAKE2b-256 0f3f7d39aa6f594e20dd159a5bdc732f69417f3031e3527b5d47e8d8318839e3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 42da18ce83fbb21ffeea0a00f5eb44c1a476951750e0fda1c7f15776f46bd9c0
MD5 5925e9e493303e09987aa07945325fd3
BLAKE2b-256 4a288130d250adb927cafa211c31b87d619472962423e3f192c81d09e8d37a77

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a09dba0854cabc67e18f34c79a548b07609bbfebab249f1f53e8a8f22cc5083d
MD5 d9eeca4e110c06dac6d70ce80322c0c2
BLAKE2b-256 bb54a290d721833d507e3a519b202d7fe9fb0bdbb758bb89e0be065b02742da0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 41cdc3e13350d827b6c689c2505bbf5a9fbd2ca84e7821b2a99c4c3ea5172688
MD5 67fccf44207162b7fe40f6ffacb85c70
BLAKE2b-256 6301fd2e253e5a1f467cfed19216e6c2d95f5e9f1232cb77c276d9a3182c6285

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 470fdc2354ea90ec25e00e22fbe40609f9815d3a8c57f8708f669ae4c0d62f0e
MD5 1126d1d43dea884ee0cc637c62e7a746
BLAKE2b-256 774e2df820945ad1abe090aeee81d66e52d904928e1f50393d2e947e70569f0e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9bfebe0d4bc4d017ee3a8320beed9a4f4837199b0975219e2ccb226d73abe128
MD5 678c721a14edf0f6b4e104d556c8e469
BLAKE2b-256 5ea30e05f8c91887c8919c7a918c4b4cef3b83f9e263e9c8c77df8eac512a399

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 00679ec727e2f33c2e9956466fbdc09cc1f27b1972584d8fbd54e577db93bf8a
MD5 6407e705a780b679f400a231e2fe6dc1
BLAKE2b-256 66cff5011f36837e5b323a37f8afc97caad327dee284f9760e39456a4759ae64

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a661f61a7aa2fd37f5414f79b12824d206841d0c45538dd62e1b1a51d44a1e35
MD5 26533c63cc202490dc874d4918770c0f
BLAKE2b-256 7ea8cb0f4640dc3763e76aee47a50f2af13401a9baec48d59a6f0e40dba85803

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c6c250b1bc617bb7dee4301488f084053af8400c2260e742e69019c67c04f2f1
MD5 b1674e2e72c831ca78c992dd37c5e5f1
BLAKE2b-256 6c5f0af4f75c8948c3dde362ecc5d13e01c98ba3d3f41aa6b06b05ad2a519f16

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77d613584c1c2975be237bf63c7082cc06ab54d99ca8986e80ec070b0a2d4981
MD5 cd76a1856e8f34bc8073a85ca6331344
BLAKE2b-256 e59b331632e1677af4692589934f37047a313c8bc43924fd3c3dd24adfd9fedf

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8353b9f506842b72a706994c26d0ab6bd2f791f2e684e3b2e68ff464afaa3933
MD5 34b66bb7096acdab9881684bb33d5b3c
BLAKE2b-256 dcf73ec884167496760603132b5e78fcae95cf9e5eeb4af05964ca3f4f5808cb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.0.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 5610e552dcf322ce9552e9ddcc6dd6f8b5175f8b57ce5ce752c64902f0e1011d
MD5 b37436c04c3b4d57337dca243f0ba0f6
BLAKE2b-256 9c3b0dfecc1f32821a18bec3f709dd47e83c7c7feec7638315b578c0b130b669

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3e4fdde54f11b684d39c07c3cc53d9513a771401aa1eca0b21f744265e0ada66
MD5 cf2206f10a532c409fd189047f69b390
BLAKE2b-256 681ef54fe15f34eb69200755bf2d0cf25d3edde66de2702df45996d5fe8e368b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.0.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 eefaf313fe10f3ca32d1cfb4987bb01fba01271608911cce45fb39f37ec112df
MD5 0314f23b5b243ecf2d4267b8ba94ba20
BLAKE2b-256 a53c2d7d07fad3414a287c165a81ffb6b35545f3691d3c03bcf408446ffcd215

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7b20e5abb25201b9b28e891abb00cba36030e8c7aa92e1bbc4009e0dcaaab2d
MD5 feef782a5b188c78dc30fe93a548e9fd
BLAKE2b-256 22bd648f1d37e43df358bae7b734dcaf73c87a2512847b4ffc491d2e35e93b11

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 39f192237e94e747fda9ad5e0d4253ca815d3311900dffb2f4ad385a57e34978
MD5 4262e62c1f0c13941a58930e77b586f9
BLAKE2b-256 33de51a45e6458e58331643d84aa138f471bb19e19557acfd85dfa4dc1b9e498

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3d07eb9c61f9a5b6c17e56ec2862f881e4f031580395e1a5c85190efd05b8286
MD5 8e6ff76c21d1d5b0b8573d9447e1ad97
BLAKE2b-256 6a614fac91420d5b8ce3c317d2c1d59d72797b10636d0664eb35740c6466c316

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e521405d7d9e0ed58086dd85cb7ddabcb17e9256c2da9944b9ef41e3e3a3f048
MD5 bb2459c0d325357e2d061429c92bf781
BLAKE2b-256 978498e193ad2503ca6a4464c5ab15e211840da94ca8102ba19d856d9ee5aacf

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 080f590571d91a26e41929afd02a69f067a821eeffbb61e35daffcb113d52025
MD5 0af64b813db7334d9e9294ac9d2c5283
BLAKE2b-256 f011ad50a81f4b5d18c8f05599fe4d77f39d38855a1da10f159ff5d2e3d4eac0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0a4ee8cdbb8b6bff94884a10f77e6f3d04617f2b590bde0acb20123102607e52
MD5 88cf7483fd4dc05c4b0a47e643e43348
BLAKE2b-256 92c5fdd6ba51f2fb6243136bed2bf68899e307446ac042983b96917bb0f1045c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5adf898b5e71619674e1f218c7d3291510ed1f7264dec067f51d65587075affa
MD5 74b2d943dca54678d9fd986f91cbf97b
BLAKE2b-256 791b91b262a4ada46a36c64e220410112cf87a4cf4ed66573ccd73cad3a73107

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3935df827bbf7671033407dc703347b70c0862d910285418ae21fd54eacde0c6
MD5 ec759042ef02810d0a0631733ff974e5
BLAKE2b-256 331fb514296c52d7d914eaca3f21400826a9c05a6649d692714f7fad21c4cf54

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3e7c8fcda3ebf3be71ad1417995a32d677f7400f8e240abcda2274cdda2ad0f1
MD5 71238922e683208ccc71594c08214958
BLAKE2b-256 2952c4292ff8c33fc4d16ee3e97ec39022f59be6beb47c7c65116b76d730c9ff

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2e6364a015ee7c9137529d7de67b4e5c9dc5807a3d025633d321d7821e9d8b04
MD5 cb555b05b6736f34aa3fa7d2fba081d9
BLAKE2b-256 f1e6cef36a46ad28857d013caf78c583c6820d0f9727f225fe24856aee27ac92

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4fc3d318bb9d10f4b6a00835691b3ceed256e6f75f32c6a885334345ca30480a
MD5 b702dc1953fc8718b0cdf83388cf2e7d
BLAKE2b-256 f4eb7fc1a45c104bab8eca1bf3acc518b6aaa58f1cf6dd77ed463a6330a1542c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d8d6d4f9696125248e476418df26fd63e15dd81766917788fe80505b53edbb4a
MD5 cbc11395c3c086685cf491c641e7b313
BLAKE2b-256 6fa29e35e3027c11de9522bc51ba07ea76c11e50899442b108077294cfb5da5f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c417136d399d246a93553098bd7263da2d9e32eca114fc7b0d23720af8180846
MD5 a726b39d088337584b66d790956c7a0a
BLAKE2b-256 4fcdb6ef132fc923b32b6f998cd2bdaae6943596d720ebb3033d6326fe0e3552

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 cccdabda7a443ff199b63812afb9ebedde53b2426c6a74ac7d0fe0cdcd3c84c2
MD5 0066f39dc91bb1792c917fe1a95e6afe
BLAKE2b-256 a61fbf48cbc91906cc9338c2d698b9ab06110a4f8f0ea763a67e2a645f283e3c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11a2c3b1b285906184f072b377825996be558078c1f94d3b8a6fc3583646ca06
MD5 45ff07045bfefaef675d3f4492f20ea9
BLAKE2b-256 ed48c823044a86ca7587f8511b6fa16e34e98f3451055467bf5cc3ca28f13756

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5c93e1f0c83ddd7ab6ba664d5f3848a58c2d4b031264e8cbe425f872bf7bf5aa
MD5 b9b23fa46c6af64ae4eca06184ef41b2
BLAKE2b-256 58a5d7d1068e8780213ef9803416651344afe63b4ac71aab7a8cee04c64f73f0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 0dddb1a8fc8270d25e4a0f1af03eaf4efa5f5bfa51cd9fa00b039286155be2bb
MD5 08d225cad3361ba853a8a7c5ec8d52d4
BLAKE2b-256 92355595d4317cd0bea98bb9abe8fdfea2284f887b42f6715d32facd44b04e45

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 543e131e5cc29ef6f452798b351d28cea5fd47099570f442280987b72c0c8c15
MD5 37c5caa8d11628518d01fd909e803354
BLAKE2b-256 3ce1a4204c5a091a11dad2b8404a5e1a4194c4446386d962d074f65a3430db76

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 67b79fa1f15113b6756a1ae66e29f0bc4ac215358e6e4669d143587c14da961a
MD5 2992cb0ac83a6d52523c3e8ff9c6a82f
BLAKE2b-256 f5bdc6e7cdf1967892d0d20688221c515d82d1cd6251ced60a07ee15b60ef1d9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.0.1-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 28c0f043d99d82f4c6efe3e51c62762089ccf5596de1cb5c2a95c707d1c44d0a
MD5 a117386bad639c794d44df47090519b8
BLAKE2b-256 5e5d0f065681a60790fd4729daf5620edf31daf15ca48ba061677c78b6caa8b1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 78737ea6e8dbdeb8113ad5c51e8fd104ee08fa5a1ecdd3ae95f88f9b66b0ac87
MD5 f29f4e883a2797dd25d76514e941880a
BLAKE2b-256 6df0b49cbdbc842ded157d2bc8b45b4bb322f4b9d8b766e894d7a1fdf09a07d8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.0.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 6fd9556c0b1cfbdd94a4c5e1bb9688b0fe7bb3d1b4abe787ddd554826d9f0df7
MD5 6aaf5883325c8327ac4c8a1f33b8b511
BLAKE2b-256 008a2e38f0f471568a3a46cb1c75704d1ac9e0fc4ab5926b2822a54d412f1a0b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4cdc07ee6ecf697ac2e2776c453e91b32b17f7d82add466c218b1fb0ade2a8fa
MD5 380fa79e753b2beba4728eda426e8ca9
BLAKE2b-256 2ac68ee61b9a4ec21f16188239489d5f54c41e94c46bc4fef50ef925f00369e2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.0.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 87180c6685d7e7f91e587f1c56e65dd0abc382aa8887a4de6a90c1076f2ee6ea
MD5 6513b1c4bf4e6aed3e969608ee1ab4db
BLAKE2b-256 69db4a666b862914bcf2992a7cab782d1ed264f52e938859db1d599f553d63b2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7848200efa03d870efc0f91623a6e281297fc77aca86c619616749b5e2561215
MD5 41047c83889c2f06f806cededecce490
BLAKE2b-256 58c3adc288b7be46f552417c5c85d28f285c4dc74edb42f3bd29a2fc5e0e2314

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2e1f4a4fd4c2f4b437e4feb84d213b41503189160a6b528bcc2bb90b13b4dd1d
MD5 16d66cc93f885f6d764847dd693a9c7b
BLAKE2b-256 750e22519eba2fe4cacde7005494764875f5ffa80ec9bb7f3cbdd9d62580b357

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 0e18b70be0daacd5a4b4aaeb4cdc67bbe55077780fe2c9fe86801ebb657c9532
MD5 f4358b383d81f3c3440da8150c2ed460
BLAKE2b-256 ee41f09ee42d50dc6b9488aab9c29ae727a35c74800eb57f7d625e8f9d76d0c8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 20eda16f35beac4641a151dc94c3db2dbf52f991a5e556239d32ace22a87be63
MD5 f6c4b643fef46d37744a9cf60814b42c
BLAKE2b-256 d541d4e41c821e5acaa2932e04c76b5a03c540e97f44c9ec2fe17e157d73fac4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2b6d9bdef63498dd35d7832758cab601827d4556978b681f23bfdc75334e91d6
MD5 85e16836f5bedb313a59571e418cb684
BLAKE2b-256 4e1589d4c7192f71a06ded68d254306c5f76abb44a5dcab9c4ef87eb0b593079

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 79cb397ed8d4910dac3902a5e7ab6fa84b52193bbcdbf00f23739700a86fb429
MD5 3a988247fbfc6244ff9f4da886a44222
BLAKE2b-256 4f4187f1ee791214247c0d75ecad596399ffcf5cb22ac2cb38c59f8775031929

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 05644f7da606aef86c6ff83b62ddfda36a282bceafb6bfcff2b96bc008e68624
MD5 ae695fcfd1ad15c09ab6f44de08158e5
BLAKE2b-256 4a3d64303781505a2014b11afe0ebf4bac0010abe079bc55b977c56c220008be

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3a698e11d402deebdfa43f69b937bed35f53d4f9058ca4c82fc9299b32363250
MD5 edd257c42a2ebfdd0887eac8b24b39b4
BLAKE2b-256 34c8dd850222d78bbac4ef8b307d451f9c225f3837d5797a10b69fefb4478aeb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8c33993a82669e00ae56969c223235963914a0a96dc35588a817fc4e23287c84
MD5 9ced3c7e9b56b027d0408dfdcb6efcb3
BLAKE2b-256 cc0fd6768d86cb3ed3e890fa6cf14eec07660b4fdd289362922f2458b97f0cfa

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f3e584b3afb39372e36d3df349947c4793090b5ba850e3898883c5e83e6b4e65
MD5 92c56a405c9043261fda8fde91e29357
BLAKE2b-256 3dbcf8b43169c70fd246ce00b24e1de2209bd2d1c3e93e0748693b29fa863bf2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 be861175adfd1ceca52891d9c3e3989ca064257b7f5c83dd605f14a25491b3f4
MD5 55781cae103e365fdec3c022ac00786e
BLAKE2b-256 2c11195d647bd2ec64f69b366ff11c1e6fe04efd73cbf0566c47483ab0e6542c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8bc8651f68539a9d954ef23ed933ecbbec72a967efb6009e90e23f923d1e9acc
MD5 7892ca49f706d6be0101ba63ee13fdba
BLAKE2b-256 1c31679c2c6a7911679cef3b3c624346694dd8c98802240bc2e24134d88d4559

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1f43bb24db905643c74a56ea04c477353341f05549215969abcddb5118872ca8
MD5 2204dc865a4d1510827ca73f653f56ab
BLAKE2b-256 7752769313138b276aac43b7d4773c7300420b016a3a5d3833ee050e83a8a0dd

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 3d66fb395d453654fbe73bdb8d0fb0ec6cdb967188c58635b387efd6fdb37184
MD5 4c17d3b11415f607866e23b27837fe87
BLAKE2b-256 e133e39be8ab55978d03c5fa3b40a3a28edb20d3801c59a7db8086b69d8ec35f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3cf5c4adfb183badf98e04c1a7423c35311d8530622f8976940bca635ef668a
MD5 cfbb1c5b292437d5e7444175a905a290
BLAKE2b-256 40ff75345debdb52f09b6d678d4630a70075badc0b358f272d95765a9b4a9871

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 81e4cc7e34346a03c8aab973afef5f9d556f77733a01a06cb5d5f7f41aab8d5c
MD5 ebf121cec3b089c071e852448fb3b816
BLAKE2b-256 7b99aa961ea5039ec28dbe8e3f1d7e880013648a2546cc5e01cb2f370bcea376

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 7466d4e77e5b3c2b2e65162e6b65aa2ec78297d663576b3c2eb29dbe8b9c6c17
MD5 8ef37c4f8d2af3b62572dc92dade9f72
BLAKE2b-256 166685a730dc26596db411bfaed441580db65ce1fdd44eead38bd74c02f52c3d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 9d621a3c022a8857f22bbc9cd72bc188220b596e76203b6f7e3d35cf7ab370fb
MD5 4c89aabf50295dc4a576a3ed4a390711
BLAKE2b-256 dd35d799a16850c8acf6fe14550db85487078dd7a2a04561a61f31c340c37749

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 e9ce0e27507be0b7e2e41e01cfbc452fe8fdf92251c9718808044a911ac29650
MD5 391a4085181039f63d9ae835715bba1a
BLAKE2b-256 f3efd299647bf84d2bd20d81d7233ea13641f519253d877d53b22b6c0c2b1a21

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.0.1-cp313-cp313-android_21_x86_64.whl.

File metadata

  • Download URL: xxtea-5.0.1-cp313-cp313-android_21_x86_64.whl
  • Upload date:
  • Size: 13.6 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.12

File hashes

Hashes for xxtea-5.0.1-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 7fe5747aa331069efe448cad32079d79892698eeea27447d2eaeb1189ac76ef7
MD5 8695b92917049f851e514eb780038487
BLAKE2b-256 34d5c8bbd7d05f9608e8a2a3477dd2fa64de98e2cf0959f82867f0521852c10d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 a512b39872fe31d3e279443bbb77d064e95c2a3a25e428ae5e017dd2ddd384ef
MD5 71fa741be211f0fe6a770f4983bc4f4e
BLAKE2b-256 5eb9dddc12b99e6a3165aa89f627c533b1a71dc229f47544d74b515927f9f9f7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 1ba767f9ae2f48e866b37bf9c1c84ffcfae3e67b8a46bbda24c04a0162afc8a9
MD5 25a80f48667f509a0f4a3103a5f8ea59
BLAKE2b-256 3aecf11a2fea7c8cd9158a7a4b5b211751d1d9ea920afc058a1a03839a03bfc5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9c053c77879284aed4159c9f8de526ac966c9434e0a29a5a0bb59e5ded846803
MD5 33966deecc84734172810c577274660e
BLAKE2b-256 8758cc5b7eb7a0aec291bf66a8a6e111caf5751f70b74bfa4dec9d1bfaa2fbdb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f6ba4c853eceaddea86ea52aef82f194faa4975cf0ebf7f484b7e181ea2e0188
MD5 0383ac933fb5c6b108f38af425cd2ece
BLAKE2b-256 bab0cc4df7b8919318fdd7fb4efc1b23e40888193ba6470e7f8cfb62021e7d6b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c9395cf435e893a22d37f5acc08ce7a0eff3a8d25853e3929da718018eded81
MD5 11ee0722f2c6af5c9fba50c431daec24
BLAKE2b-256 b6f85f97143042f01a2b7845cf0c4882b622d429a49faecf1a6df5fca142d35a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3631d189dff71523a67f963f6e1f1fa57d3177aa8dd33f053cc2be74230b012b
MD5 f4f77550bfdf1c9ee0a7242887ce8612
BLAKE2b-256 8dbe0c9bad855334b828b86f144b1d9347cb9578932f86c6c0e017b89735f9d2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5756e0ec0ddafeea6000e53f337ee8c8be84b00e4eb7c9595b2b876f67924032
MD5 468433a526e7c2ef001051fb4bd84103
BLAKE2b-256 ec1c29750ad952d1924a506372d70e1cc9719d8f176671c26f1f050e740b01e5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 58737c7f321fc95f3298a3c8f0deb8a147f1aa8506ca604e5f17f272bed9c756
MD5 8315bde63480aa566a922abe7e911c30
BLAKE2b-256 53405bc1612c50d9db243f81cd488fc201c06a6a591cadf9f081800a05bd00df

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aab246ae68e5ca1056df36c4541285a856791259470663652116e704e557d1a4
MD5 b848c7fd21306881993881941a24900c
BLAKE2b-256 80045739262d54f072bdbb376767f48b852a78aaa3854debed8c44ef080044c9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eca88cfc5194be4d4beebafe484c3016273c32b8080e592eda176331d18b59a2
MD5 9673553fdaf8596a4a9e499d432579f4
BLAKE2b-256 92a46dc343dfa31fcce42944d8e3edc773d9f708a640d9e6de37dedfe09c9374

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47e4a94aebfecb2ae344acde7c768eb0af69c84a7f35d6b7718379c18df59e1a
MD5 16a59f2e9d34c5fe21a64008e6203c0c
BLAKE2b-256 e441ecb18d40f1dca899917088b87522e01d2f74581ee092ca3a8d9d3ed2444e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 bd3f904529707e150bd70306a3d184eaaa78b133806ad44166b4e259f8c64fa1
MD5 9fe3982edde9340b0d788515fcb8bb15
BLAKE2b-256 461844e51f306095d070f353daf878014a1a8ce09189d1cf1925dc9adeb90673

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9db636cb791bce4019d46c1fd93e8adc9c8b06aa1c986dce8b67457aac09b1d4
MD5 1021cbb4e96c1f79d0a8a0835cff1ad4
BLAKE2b-256 77ffccb3472f1f7f462ca113c6e0e1c3f24e149415dae577d9282b3051a9b7c3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 16abf30ce9d53940b933eb6bbc33581acb2fe3e0ad875bd9cd9cbbc217f3da9f
MD5 1c05c4ba26870fea75910055c21dbae8
BLAKE2b-256 b2466f83c3534fde0dfcfd68afd4ab73d7e7121f65fd443d92fac11b49840b19

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5a4fc811fe1635e387f125b740f376b024b82946738e43083caa412ae9f6e642
MD5 2dadd64205164aaed5126889e9a99b38
BLAKE2b-256 7561e46074a3dc5c0556b68059e65f38e545e7d9faece136fba6a7408fd1d6ca

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 bad23a611c29d460d62d711ba373c5cf10c2be51ed8d2d0940c36931a54ba9e8
MD5 40aeee7c5ee6cdb5de41b21d94b7087c
BLAKE2b-256 b024ad2f60180072a524d7102051d7e1025232ae7d228b72fc01f08246ded9ca

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b8fd80645702b4d66915dc6d04cba2beee8e7296ea7160c085889d253a84375a
MD5 a209728b6a4d8590960af10d83a87101
BLAKE2b-256 313d48154307d11105786472dbb4afe4a085719548d49d8ac7a9a87d56784f8d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 dd8ed6ddfe45d1acc4fd09804d0d8b5f68f8fb7a348814bd814aa4ad483f5604
MD5 0c6062a3b8a2986d1e8f7498ac9377b3
BLAKE2b-256 a3d914d35af7f1c5f74ce23135f5091cf97966c7f8dd67459174882cbef3d959

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 205581c2ed15ee1bf0952cebb8fa5d265975665ae0a8b523be10cd893018b725
MD5 00fce7a1d18f5449811292cd337c83bb
BLAKE2b-256 351583e1e49c9abb42b4926aca9780d5f95c04525ceb2f2bd7f79f6bcc82ce3b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4c0e5ca623fa6478d041cd648922c2df6711dc2f4f636900ef8e31317600530e
MD5 581fd56b0ba56f662e746ec018215607
BLAKE2b-256 0a27bba2491455a3fa924ded644b459a9e5738cfe5fb2b9e66d9778e66baced2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.0.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 a01d71639ea87727d3a0dffb4892ceb06c4e7b18fbdd42352beffe57fc7099f0
MD5 35ae51ddb01ad99db8eab366261a18f5
BLAKE2b-256 c5952acb71b533a8cd8df28dbd3d6f0fd1d7bb423f190a6dd71f697feaa7a4f0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ec1018456ac623144c1d20f5a70aa63bd767b859a28c8b0c9da192c84f6e22fd
MD5 41417e6d631eae16cf55cb924a6010b3
BLAKE2b-256 55adb29c955a1b52674b18cea85c77b4ab7a546c6e2580289d7968206e49e0d0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 878433ac354b00f70a99ec25763a7e912c504eee5a7d32f8f6a55c24058bc2f3
MD5 64bef1fbc9beefae368f23e81e81c81e
BLAKE2b-256 429ff9568af5cfd24eda8d7ba6414e3844db9ad53ed230d16587b64605f0e509

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd742da1e7c30d53fd4b9866a49ffe1fd0c1a41954fc530e2322c7152320dea5
MD5 b6fc908a43a8c3dbb5b141ccb5d071c0
BLAKE2b-256 49e4de7f52a3779bce2699abbad4526a34d727e75bab0352058fb643874df52c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 702b261cd3fb15656ee8d6be41b201516bb36aed2df88dcf65f07a12a414d455
MD5 56d453ef1f29e864bfd48b5ae4d3cf67
BLAKE2b-256 968c71a9c15992e6d5a70a4430ba94029dacef336ad75d6b81e831b4355bad82

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ec26d52ff0a969dd4e639e29227a0f99f9ee5cef884edbc3106f03a0def5ec1c
MD5 f82e17220fccf11b49f9bfcc2c04f221
BLAKE2b-256 e665735cdaa9a25e13503fa0f85fc5980a18b4b60852ae63b453af9935951f7e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d73f4b8aaf39e90088a69d1c9cae2c2d9a0569629a007dbc3001a2f9558f6785
MD5 09bec5aa5692f0e450a4eb6f1e364e19
BLAKE2b-256 057c60d21a43a3aabd50090132a0b7c5ace9e06355629c3224b0b2fd9dbe8333

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 69e5d1edcd218d2630612c85837a2535358838a138b2920f07c4ac56eaf76bfd
MD5 f5bc27f958acda4df3d7e80006a5a62f
BLAKE2b-256 3f32de9289e2893ffcba3620a6bbcd992fc1962b2578eb2911e445ad282651ec

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aafe6842a137c3904b5618fa82a91d3eb21e72a4b8e9fcc7a704ec9dd5c8ee76
MD5 54957d303d9fbe11fa3eb2779abb2ee3
BLAKE2b-256 c0040c987c80ceb5042740e21cd0ac06dfb8cca636cc62c5db070b95dab3d8d8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 16f4e583955902000f0b90ab04a61b7ca283c14497f1b2b58af261d877e6a460
MD5 8514b41dd868a5efdc17ac253730a7a5
BLAKE2b-256 0060d56c70e0e94ae10c28face6be25dc29a4fbcf6a6cc57fe739c18dcbe396d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a01c2f16b69d5ff87ab6a0b16391d720e2ed32dd4c807056bf8edaf906e73864
MD5 91562a22f5c7637766e4b9ccda6f9b6d
BLAKE2b-256 a725f6e86b6eee3a79541aef46e3aed496b314db96d497206666101937eb65cd

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e6c2a5d1c0a52e3e8c70a29375d84e28f953470a2f26e49a8331b9840bec29ec
MD5 1fbd99cb6c884684434ee2401a67bc24
BLAKE2b-256 7bae66d244059b3aa90d810930bb758a5de8a4e0d69c6d400f886f185071c112

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 8c3c81e812f0ac898eac140750a803e78eb9dba43d9fb466e6e8e635bca24874
MD5 b37ae3671b6437221efc39b4eed4267b
BLAKE2b-256 0fc0356ffa576efea4ab9cdca7ff50574775190a6bc6dc61874288b5fb9eca0b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 00a3df2fc6d005c9fc1aa77ccd01c403441622d45cfaea6ff5955c9017415f2c
MD5 1c9d8f2bcfe60137a9ba2601429ba12d
BLAKE2b-256 95ed1dcd115b34ac67900c06632bb7e2f50082dc62223c606122312df61ed02c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3a084eeb0d3c465e86137d7667609acc376f180dc55b7b602858efe9be5df80d
MD5 ba19d412c02681d7c31e22d212fb681f
BLAKE2b-256 802312a765973b833b8a280ff0a126654e5bde7cab00c60743e6f8b6bb77cea0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 13f24936dc4b1f2f9c2ae23167244060f0e7e3005dbe4de5cc12a0b4f8126ddd
MD5 d89103c9df3f1e94b0a519384957f08f
BLAKE2b-256 56f4382b240544d52ecc1116a31eed2d275b4a9344b8367c8f8f9cebb1345179

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a79960a9826418dccffa5959aa18c109deb2d5e74197b424027278c9ae2d111a
MD5 e2ee8f66b1e97b53eb454d0b30c94021
BLAKE2b-256 73c723ce3f8b61513b04580f8aaf44a784a2d7131cd331f35c2f51a322d826e5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8d58cc9b6d74f9919d96b746ac6bc098498addb4d29a9f6cffb45f452bb110d
MD5 5acc84001909d1c4a5d19cd25d2f8ba7
BLAKE2b-256 9f02e9abdc4c35dde67b0056d5f704c4e1d44a45b0280e4b6a56299da24b55d6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fe9c1204051dc45b423272c3b08faa7b64a5ad70f3648f6bcf643248c0bd7bdf
MD5 d5d2d55ea3724ce51ae1bcc320d10b6d
BLAKE2b-256 0dc8633a614566ff37e01f00c129470cb91265dadbbdb9d7bcb2b5df31493175

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.0.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 eb915885ef5addca1e3c8a9b04cd9c60a1f72c0bc597c1ea566dc496c3485120
MD5 80386b990206485c402a09c36984764f
BLAKE2b-256 b103a014969baa215ec5bab158d542774fc68032759bd9bd8d98b6f2e6758f38

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-5.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9b203dc6f8bb6e0112256d78419632405b6954719981f1edd787ae7bab62fd8a
MD5 48c7cd50c1b32203c02883fa6346bf3b
BLAKE2b-256 2b5c7dcd84976f6a2d2aab0de20d08115bd018c3be4bf65010fc6491bbd0fc05

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-5.0.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 14.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xxtea-5.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 415fcfab4dd9b73943176ac4f86f0cac3d66978c8a6e4dcf7b2bac1887662e57
MD5 798923024c785c340e4f5545b171506a
BLAKE2b-256 a03f112879a8cfe26a791bcf43fa19bdcf6b98f9c433c5ae712471e35ec59e49

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0be5104c37c5a8fd387e2c725e5f04d9a4bc70fa822778890cbf5e3f32f2f22
MD5 ec995dc814b9ccd61f206b3748f38a05
BLAKE2b-256 51c9659ad339d5f8866eb4bd7d80e90c7c797ce3aec83cef5c9d9e0bd8c408e0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 94c2610ced4c62d5eb4e439d1bfcc6762677414cefe2db3d6e5b26eeeda63932
MD5 fc8f08de674bcf948b767a9f095f9095
BLAKE2b-256 bcd05dd14c9bc5c9cc56bd4792a157e41620a176fecb61fed4d34fe1db363028

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8237a372068eef5e1dd463f5789a8afa0bc10a1367989be02951b6e670822e65
MD5 e160538508c8062de2d36706b7ec2257
BLAKE2b-256 bd737869e3867ff3fe66f9e83bbfca316e615bfff20de0b88a842d079ed106b0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 47d98acb072ee14c7e02816eebc58d142789131e41b275948d3230009ba32c86
MD5 8e9ac5ed0d46bd0b51366afef05ecd26
BLAKE2b-256 787e89286908c94b3ddfd51dee5b76dc288be44c2df6bafd86a3778b6410db1c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 73e6645ce964061caf06c776d6931f36debc61f0b573ad529c5a67c21ab00b3a
MD5 3b7073115397d4347084fc6235e550da
BLAKE2b-256 0e58edbdd59caa226c47459ce22ffd04c8800e8125e6bc23a9f8d31eb6a008e8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ef1d4a9cd27f66b009ff65cab567e747f9ddbc9c3d0c5c51e1918e0f99571420
MD5 fcc0e126d29c9189f8cf3b14cba89abe
BLAKE2b-256 7e2b57f6b8cae477f911f913c997a694fce32b3db58de4a8d582a8ad6b9b4626

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91a29835edc68cff3dd9296ea17285a4c65c1b74fc319dbc97811958878e7619
MD5 648ef47fb447fca36c5be923aaabf8fe
BLAKE2b-256 1396d6741610d4d87e5201c5d4c61778caa288eaf78edc84e2133cf909ca4172

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1c108522f69595a903b112992f8374efd530f6e2860244105bbf1c40b8bf0545
MD5 c3ac87e4075af2ad3947ff2dabb8b7d8
BLAKE2b-256 6f78509accec6950ccefc1143f09f39a039b44c2ee3b5d6d70cd0035fa2bb006

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1bec530a25fb4c077cad1efdc43cabb53bd531832bb8059df73c41bf931c75f0
MD5 cf829c0c07951ba2d6c920bc62748e94
BLAKE2b-256 a4cb3053efcda091074b9a6b99a135837d2f0414694950a637df9bd41fbbe397

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 ba1fbed1728a4f182c0bd1ef8872cc7428c0efd5f91d647370f3f57f2d2bf2b8
MD5 122342b24aea19536860c4a87c6edc88
BLAKE2b-256 c52267039c36550a0c12219ed74dcb76a12c01be60f73ce7ec0ad97544a8274e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6fa84ecea4fbbff53b52fcc06d4686630b63f9202c8c691b9685dd0fb571ee50
MD5 7630e7e1ab7bfa125088e7dd66e620ff
BLAKE2b-256 43d22a3d31ddf4103661a0fa0f3632db615b4cf4103917ed750a8e05fe2cf87a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c8251b9d84cd7755e22d143bba09cc791bb46ab5f51ab7cc496471a8ba9124fb
MD5 d1e2cc793fd0a681853d501360b2682a
BLAKE2b-256 3cf9debea323032221c65da721a0ff587cb30846a36dbc1ef5e5c74e437e7bc1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bcd5ee96471ddd3daa03f3a33961a4b2002691a972073b9be718a4895bd5b12f
MD5 f1aa184b6b5a1cc428e216955a6a5804
BLAKE2b-256 0ae1fbce49027695348173751121f091899a48a9530620af7f67190080cf53b3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 804a66868957c7f724a397e495936f0ceb87bd304d7da28aa4d2512cde32f9cd
MD5 58bfaa6ddaf517b900ad5bd5e2b8f696
BLAKE2b-256 276c214184a5ec549207d0df6fa7c9794e64d166734d3c896764f929a1c364b4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-5.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7cfe93aab65896f9ec681ab88c88557812253dcc027598fb4e66b2938b6dcca9
MD5 b9437f398a85919f1c021b3eb6736a52
BLAKE2b-256 8bd41c97cfdd5d27d25f638b77ff387faab5f67162ea7ad7ee3a3eeb91e7803a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.0.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 29a0a170a48335e4a6b8c6b6ebc95a4743cc6e9a1289a1b391c9b215b20388ea
MD5 a314468f67f2e7901e3bfdd575ca7388
BLAKE2b-256 02a966d8bd452048490446b7589be259537aedb1f73d024bb8c292497a2add64

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.0.1-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: xxtea-5.0.1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 13.8 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xxtea-5.0.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 49229ec1a8bbf18a74b536e4f03302726d6aa3f17d8ee721fd2492470c423e9c
MD5 1a1567cb85ef8bb8658f75dac46cc2ae
BLAKE2b-256 edbf8c96ede376c514c30c8e19524f77605e6bec69a61b83e47d079326d7a0f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.1-cp39-cp39-win_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.0.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: xxtea-5.0.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 15.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xxtea-5.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 406572e5aff5c04be0cd2127d0b539319f3d75338127c73924e0d7a80187f5c4
MD5 bba3e35af130a4beab55731f0aa11665
BLAKE2b-256 2dd83a78da19c71a0aea1f60330924205754dc60c9c65f6cae13e57636756bea

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.1-cp39-cp39-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.0.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: xxtea-5.0.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 14.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xxtea-5.0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 bba1f52f3358e1cb07aab7d0c1801aabbc67eb9cd51e0d99d52bfee79b6053d8
MD5 7df7985fefbb8e96ff510c940ec65b9a
BLAKE2b-256 c7035f4427958b5459a7324c9fc6269629f072ac5e424d0b9ee21e5fd0dc11c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.1-cp39-cp39-win32.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.0.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

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

File hashes

Hashes for xxtea-5.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c0a100dbb1fcc49820c6452beb4c8ee054070a4e5155177b5ce4ef8faf7862b
MD5 9083f776b7366afb8e686214aaa7441f
BLAKE2b-256 a9f92c703bf5f3633900a71d2658b70a9fd4cee9fa46559af41d9ade859fa95c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.0.1-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

  • Download URL: xxtea-5.0.1-cp39-cp39-musllinux_1_2_s390x.whl
  • Upload date:
  • Size: 57.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.12

File hashes

Hashes for xxtea-5.0.1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a92f84b9408bba23c3d2aa9af47722e066ff12b8ad5787eaa499d1de05c2d4c5
MD5 6a1e9c1adbb3fc47b77e02db7110b2dc
BLAKE2b-256 76971d25589c9e643418185531918352c6b5ec69c003caaaed9a11903fe95818

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.1-cp39-cp39-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.0.1-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.1-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 84be0d89a215c4ae0b21f78a217cb7d9ebace52dbcc7f4942e03e2d531f27694
MD5 505a54080744c5a56ac0a1a2377b79a9
BLAKE2b-256 98f122c01b89c31f852a81a4c5daa7a56684fc1dd35557740d7a56434c1a6d70

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.1-cp39-cp39-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.0.1-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.0.1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1ed64a982e313073985ecff6b3336c03ab95bb89cd889d095e01939d5b21efcb
MD5 ef2960a7e9983ad3e10a08b5dc8d0bb7
BLAKE2b-256 bdd4cba72cff3262378454e069c24afc23244fd59462803538c90d14c7490661

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.1-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.0.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

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

File hashes

Hashes for xxtea-5.0.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ba89dba7f185362f5d97f49af7ae084e4455567a5113f5e45dd8643c618583b8
MD5 7c1fc74f11f6af92d0ed37f0d92cceee
BLAKE2b-256 b37244ae2a9a3843b04026250217080f20e3c4ee5d043ad7ccd751d1c5dc08d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.1-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.0.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

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

File hashes

Hashes for xxtea-5.0.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cd48cd4c77870566421852e4c6b260b6cef7e77e233a5a703d73369719649b19
MD5 297f7b089c3d7d40cfcb460be5b29de7
BLAKE2b-256 cbfd07f424f882eab6277e97be96fc5aa8c8c1582aa59924d85516fd44cee44e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.1-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.0.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d61fc335825919142847338a99dd9f5e0bbe1184f2bf3193a9f2c2ddcad1f5dd
MD5 9392829329deec354f8a60c08bc627df
BLAKE2b-256 0ad3c7137db88b7983311094c859b7fc29d2de3f1dbae5c65a7e1cf3bb45c617

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.1-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.0.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 58f73b6a757cf921be8c57f24bde50f837671496c8902285108134edef8cd50f
MD5 034fbd1cdd07b79ac166cb88e6b5366d
BLAKE2b-256 c5112476a5917a7fbb6797e3d5c58a9d89631049b59288bc9a6cdfb4fb714584

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.0.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 157e65e84072dea74a2c1f5ba8c812cabad7f7c0c18eda52ab5a8a1add13691a
MD5 153a33a5fa7c44b46d5946d8f046c402
BLAKE2b-256 c7c12f4251d3d23861ccf98e38e0ce13a671bfc5b6420121fb85cf74d2215978

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.0.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.0.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 008d423f15f45f7dcd59802c6479de49bdea0cd0e6a9a7e74989d92a3c8c9783
MD5 a04c0cecdda6fa1c18119e1c09d18e66
BLAKE2b-256 64b5e5d33d622a0d4f0270e6486a2dfb91e7d343a6611efee2dce627094e4cf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.0.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.0.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3624139390cd5ab301b543edfabb2cdf016bf07c9eb45d13194c031e3222bde8
MD5 6b44112be6002b5d0ce52250baca4005
BLAKE2b-256 34966d0decc126028b68be58cf26137c85cefba1d8768eb55723546074517be2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.0.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.0.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c5d3dd762edeefd7216736f6a071b9588eda0175a04fd9f9c12e4e8939e8c56f
MD5 539b15b6d168d722253c4df37fac172b
BLAKE2b-256 920bd313336fa14d50ff0c9ba8932cddc68b040f2e00664cc4eca8eb20d3915e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 30d0f4cef0e402465aa9210ce8057088cf42178d87b3a15b3e796877a5039abb
MD5 e902ea8a4cbd358ded3a0c7866a0ff9f
BLAKE2b-256 9d85ac76094e7a68fc036cc2f9451bd45c3d8d8379793092af8838131dc63abd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.0.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.0.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 0f6fccd3a17d82d8260108dc8b45f74f3ba8b0e3950a87856e7208c848182fb4
MD5 34bdd8f8f6fbeed2c8c01b89377c6ce3
BLAKE2b-256 b3951ef85f074b160dd1f0f8591cc20ec66393d01b43cfeae2c20a9454714c02

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.0.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: xxtea-5.0.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 13.0 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xxtea-5.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a06b3420c7cf4e2ddb22f5b463c9401b9de2ef6f3515079409b118fe379fa10
MD5 0814ef053cb714f34fae50547b0e92fc
BLAKE2b-256 25ce5c9c6580cebb704d6e042b8b7975111f9d7504f546cb30110420f6826a27

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-5.0.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 82c6253b01a0b9d1810f3a424c53ba8a5dc954ac2f7a238d78beb63c27b754e0
MD5 8668fb6d525dabd7e0ee348dd5b8ad8f
BLAKE2b-256 9b7eaee33385d6e468e32da3952fdc2c6fd23e26da65cfef99039aaea6ca4adf

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.1-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page