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. PKCS#7 padding is also used to make sure that the input bytes are padded to multiple of 4-byte (the size of a 32-bit integer) and at least 8-byte long (the size of two 32-bit integer, 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, in this case you can encode any bytes of any length.

>>> 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.0a1.tar.gz (16.2 kB view details)

Uploaded Source

Built Distributions

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

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

Uploaded PyPyWindows x86-64

xxtea-5.0.0a1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (14.0 kB view details)

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

xxtea-5.0.0a1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.1 kB view details)

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

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

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

xxtea-5.0.0a1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (11.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.0.0a1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (11.5 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

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

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

xxtea-5.0.0a1-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (14.0 kB view details)

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

xxtea-5.0.0a1-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (14.4 kB view details)

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

xxtea-5.0.0a1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (12.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.0.0a1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (11.4 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

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

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

xxtea-5.0.0a1-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (14.0 kB view details)

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

xxtea-5.0.0a1-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (14.4 kB view details)

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

xxtea-5.0.0a1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (12.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.0.0a1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (11.4 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded Windows x86-64graalpy312

xxtea-5.0.0a1-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (14.5 kB view details)

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

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

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

xxtea-5.0.0a1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (12.8 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

xxtea-5.0.0a1-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl (12.0 kB view details)

Uploaded graalpy312macOS 10.13+ x86-64

xxtea-5.0.0a1-graalpy311-graalpy242_311_native-win_amd64.whl (14.7 kB view details)

Uploaded Windows x86-64graalpy311

xxtea-5.0.0a1-graalpy311-graalpy242_311_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (14.1 kB view details)

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

xxtea-5.0.0a1-graalpy311-graalpy242_311_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (13.3 kB view details)

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

xxtea-5.0.0a1-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl (12.3 kB view details)

Uploaded graalpy311macOS 11.0+ ARM64

xxtea-5.0.0a1-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl (11.5 kB view details)

Uploaded graalpy311macOS 10.9+ x86-64

xxtea-5.0.0a1-cp314-cp314t-win_arm64.whl (14.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

xxtea-5.0.0a1-cp314-cp314t-win32.whl (14.2 kB view details)

Uploaded CPython 3.14tWindows x86

xxtea-5.0.0a1-cp314-cp314t-musllinux_1_2_x86_64.whl (46.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxtea-5.0.0a1-cp314-cp314t-musllinux_1_2_s390x.whl (50.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxtea-5.0.0a1-cp314-cp314t-musllinux_1_2_riscv64.whl (43.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxtea-5.0.0a1-cp314-cp314t-musllinux_1_2_ppc64le.whl (48.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxtea-5.0.0a1-cp314-cp314t-musllinux_1_2_i686.whl (43.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxtea-5.0.0a1-cp314-cp314t-musllinux_1_2_armv7l.whl (45.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxtea-5.0.0a1-cp314-cp314t-musllinux_1_2_aarch64.whl (45.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxtea-5.0.0a1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (44.2 kB view details)

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

xxtea-5.0.0a1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (47.0 kB view details)

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

xxtea-5.0.0a1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (54.3 kB view details)

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

xxtea-5.0.0a1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (50.7 kB view details)

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

xxtea-5.0.0a1-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.0a1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (47.5 kB view details)

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

xxtea-5.0.0a1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (43.5 kB view details)

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

xxtea-5.0.0a1-cp314-cp314t-macosx_11_0_arm64.whl (12.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xxtea-5.0.0a1-cp314-cp314t-macosx_10_15_x86_64.whl (12.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

xxtea-5.0.0a1-cp314-cp314-win_arm64.whl (13.5 kB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

xxtea-5.0.0a1-cp314-cp314-win32.whl (13.9 kB view details)

Uploaded CPython 3.14Windows x86

xxtea-5.0.0a1-cp314-cp314-musllinux_1_2_x86_64.whl (42.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxtea-5.0.0a1-cp314-cp314-musllinux_1_2_s390x.whl (50.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxtea-5.0.0a1-cp314-cp314-musllinux_1_2_riscv64.whl (40.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxtea-5.0.0a1-cp314-cp314-musllinux_1_2_ppc64le.whl (45.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxtea-5.0.0a1-cp314-cp314-musllinux_1_2_i686.whl (40.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xxtea-5.0.0a1-cp314-cp314-musllinux_1_2_armv7l.whl (42.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxtea-5.0.0a1-cp314-cp314-musllinux_1_2_aarch64.whl (41.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxtea-5.0.0a1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (40.9 kB view details)

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

xxtea-5.0.0a1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (43.5 kB view details)

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

xxtea-5.0.0a1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (54.9 kB view details)

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

xxtea-5.0.0a1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (46.9 kB view details)

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

xxtea-5.0.0a1-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.0a1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (43.8 kB view details)

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

xxtea-5.0.0a1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (39.6 kB view details)

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

xxtea-5.0.0a1-cp314-cp314-macosx_11_0_arm64.whl (12.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xxtea-5.0.0a1-cp314-cp314-macosx_10_15_x86_64.whl (12.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

xxtea-5.0.0a1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (12.1 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

xxtea-5.0.0a1-cp314-cp314-ios_13_0_arm64_iphoneos.whl (11.8 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxtea-5.0.0a1-cp314-cp314-android_24_x86_64.whl (12.9 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

xxtea-5.0.0a1-cp314-cp314-android_24_arm64_v8a.whl (12.8 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

xxtea-5.0.0a1-cp313-cp313t-win_arm64.whl (13.6 kB view details)

Uploaded CPython 3.13tWindows ARM64

xxtea-5.0.0a1-cp313-cp313t-win_amd64.whl (15.2 kB view details)

Uploaded CPython 3.13tWindows x86-64

xxtea-5.0.0a1-cp313-cp313t-win32.whl (13.9 kB view details)

Uploaded CPython 3.13tWindows x86

xxtea-5.0.0a1-cp313-cp313t-musllinux_1_2_x86_64.whl (46.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

xxtea-5.0.0a1-cp313-cp313t-musllinux_1_2_s390x.whl (50.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

xxtea-5.0.0a1-cp313-cp313t-musllinux_1_2_riscv64.whl (43.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

xxtea-5.0.0a1-cp313-cp313t-musllinux_1_2_ppc64le.whl (48.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

xxtea-5.0.0a1-cp313-cp313t-musllinux_1_2_i686.whl (43.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

xxtea-5.0.0a1-cp313-cp313t-musllinux_1_2_armv7l.whl (45.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

xxtea-5.0.0a1-cp313-cp313t-musllinux_1_2_aarch64.whl (45.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

xxtea-5.0.0a1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (44.1 kB view details)

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

xxtea-5.0.0a1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (46.8 kB view details)

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

xxtea-5.0.0a1-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (54.1 kB view details)

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

xxtea-5.0.0a1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (50.5 kB view details)

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

xxtea-5.0.0a1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (49.6 kB view details)

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

xxtea-5.0.0a1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (47.4 kB view details)

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

xxtea-5.0.0a1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (43.4 kB view details)

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

xxtea-5.0.0a1-cp313-cp313t-macosx_11_0_arm64.whl (12.5 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

xxtea-5.0.0a1-cp313-cp313t-macosx_10_13_x86_64.whl (12.6 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

xxtea-5.0.0a1-cp313-cp313-win_arm64.whl (13.2 kB view details)

Uploaded CPython 3.13Windows ARM64

xxtea-5.0.0a1-cp313-cp313-win_amd64.whl (14.8 kB view details)

Uploaded CPython 3.13Windows x86-64

xxtea-5.0.0a1-cp313-cp313-win32.whl (13.6 kB view details)

Uploaded CPython 3.13Windows x86

xxtea-5.0.0a1-cp313-cp313-musllinux_1_2_x86_64.whl (42.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxtea-5.0.0a1-cp313-cp313-musllinux_1_2_s390x.whl (50.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxtea-5.0.0a1-cp313-cp313-musllinux_1_2_riscv64.whl (40.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxtea-5.0.0a1-cp313-cp313-musllinux_1_2_ppc64le.whl (45.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxtea-5.0.0a1-cp313-cp313-musllinux_1_2_i686.whl (40.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxtea-5.0.0a1-cp313-cp313-musllinux_1_2_armv7l.whl (42.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxtea-5.0.0a1-cp313-cp313-musllinux_1_2_aarch64.whl (41.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxtea-5.0.0a1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (40.7 kB view details)

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

xxtea-5.0.0a1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (43.4 kB view details)

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

xxtea-5.0.0a1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (54.9 kB view details)

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

xxtea-5.0.0a1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (46.7 kB view details)

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

xxtea-5.0.0a1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (45.7 kB view details)

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

xxtea-5.0.0a1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (43.7 kB view details)

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

xxtea-5.0.0a1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (39.5 kB view details)

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

xxtea-5.0.0a1-cp313-cp313-macosx_11_0_arm64.whl (12.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xxtea-5.0.0a1-cp313-cp313-macosx_10_13_x86_64.whl (12.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

xxtea-5.0.0a1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (12.1 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

xxtea-5.0.0a1-cp313-cp313-ios_13_0_arm64_iphoneos.whl (11.7 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxtea-5.0.0a1-cp313-cp313-android_21_x86_64.whl (13.0 kB view details)

Uploaded Android API level 21+ x86-64CPython 3.13

xxtea-5.0.0a1-cp313-cp313-android_21_arm64_v8a.whl (12.8 kB view details)

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

xxtea-5.0.0a1-cp312-cp312-win_arm64.whl (13.2 kB view details)

Uploaded CPython 3.12Windows ARM64

xxtea-5.0.0a1-cp312-cp312-win_amd64.whl (14.8 kB view details)

Uploaded CPython 3.12Windows x86-64

xxtea-5.0.0a1-cp312-cp312-win32.whl (13.6 kB view details)

Uploaded CPython 3.12Windows x86

xxtea-5.0.0a1-cp312-cp312-musllinux_1_2_x86_64.whl (42.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xxtea-5.0.0a1-cp312-cp312-musllinux_1_2_s390x.whl (50.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxtea-5.0.0a1-cp312-cp312-musllinux_1_2_riscv64.whl (40.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxtea-5.0.0a1-cp312-cp312-musllinux_1_2_ppc64le.whl (44.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxtea-5.0.0a1-cp312-cp312-musllinux_1_2_i686.whl (40.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxtea-5.0.0a1-cp312-cp312-musllinux_1_2_armv7l.whl (42.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxtea-5.0.0a1-cp312-cp312-musllinux_1_2_aarch64.whl (41.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxtea-5.0.0a1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (40.6 kB view details)

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

xxtea-5.0.0a1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (43.3 kB view details)

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

xxtea-5.0.0a1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (54.8 kB view details)

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

xxtea-5.0.0a1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (46.6 kB view details)

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

xxtea-5.0.0a1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (45.9 kB view details)

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

xxtea-5.0.0a1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (43.6 kB view details)

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

xxtea-5.0.0a1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (39.4 kB view details)

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

xxtea-5.0.0a1-cp312-cp312-macosx_11_0_arm64.whl (12.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xxtea-5.0.0a1-cp312-cp312-macosx_10_13_x86_64.whl (12.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

xxtea-5.0.0a1-cp311-cp311-win_arm64.whl (13.2 kB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

xxtea-5.0.0a1-cp311-cp311-win32.whl (13.5 kB view details)

Uploaded CPython 3.11Windows x86

xxtea-5.0.0a1-cp311-cp311-musllinux_1_2_x86_64.whl (42.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxtea-5.0.0a1-cp311-cp311-musllinux_1_2_s390x.whl (49.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxtea-5.0.0a1-cp311-cp311-musllinux_1_2_riscv64.whl (39.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxtea-5.0.0a1-cp311-cp311-musllinux_1_2_ppc64le.whl (44.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxtea-5.0.0a1-cp311-cp311-musllinux_1_2_i686.whl (39.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxtea-5.0.0a1-cp311-cp311-musllinux_1_2_armv7l.whl (42.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxtea-5.0.0a1-cp311-cp311-musllinux_1_2_aarch64.whl (41.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxtea-5.0.0a1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (40.3 kB view details)

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

xxtea-5.0.0a1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (42.8 kB view details)

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

xxtea-5.0.0a1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (53.6 kB view details)

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

xxtea-5.0.0a1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (46.3 kB view details)

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

xxtea-5.0.0a1-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.0a1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (43.0 kB view details)

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

xxtea-5.0.0a1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (39.3 kB view details)

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

xxtea-5.0.0a1-cp311-cp311-macosx_11_0_arm64.whl (12.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xxtea-5.0.0a1-cp311-cp311-macosx_10_9_x86_64.whl (12.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

xxtea-5.0.0a1-cp310-cp310-win_arm64.whl (13.5 kB view details)

Uploaded CPython 3.10Windows ARM64

xxtea-5.0.0a1-cp310-cp310-win_amd64.whl (15.0 kB view details)

Uploaded CPython 3.10Windows x86-64

xxtea-5.0.0a1-cp310-cp310-win32.whl (13.7 kB view details)

Uploaded CPython 3.10Windows x86

xxtea-5.0.0a1-cp310-cp310-musllinux_1_2_x86_64.whl (43.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxtea-5.0.0a1-cp310-cp310-musllinux_1_2_s390x.whl (51.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxtea-5.0.0a1-cp310-cp310-musllinux_1_2_riscv64.whl (41.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxtea-5.0.0a1-cp310-cp310-musllinux_1_2_ppc64le.whl (46.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxtea-5.0.0a1-cp310-cp310-musllinux_1_2_i686.whl (41.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xxtea-5.0.0a1-cp310-cp310-musllinux_1_2_armv7l.whl (43.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxtea-5.0.0a1-cp310-cp310-musllinux_1_2_aarch64.whl (42.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxtea-5.0.0a1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (41.6 kB view details)

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

xxtea-5.0.0a1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (44.3 kB view details)

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

xxtea-5.0.0a1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (55.5 kB view details)

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

xxtea-5.0.0a1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (47.9 kB view details)

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

xxtea-5.0.0a1-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.0a1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (44.4 kB view details)

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

xxtea-5.0.0a1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (40.6 kB view details)

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

xxtea-5.0.0a1-cp310-cp310-macosx_11_0_arm64.whl (12.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

xxtea-5.0.0a1-cp39-cp39-win_arm64.whl (13.5 kB view details)

Uploaded CPython 3.9Windows ARM64

xxtea-5.0.0a1-cp39-cp39-win_amd64.whl (15.0 kB view details)

Uploaded CPython 3.9Windows x86-64

xxtea-5.0.0a1-cp39-cp39-win32.whl (13.7 kB view details)

Uploaded CPython 3.9Windows x86

xxtea-5.0.0a1-cp39-cp39-musllinux_1_2_x86_64.whl (43.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxtea-5.0.0a1-cp39-cp39-musllinux_1_2_s390x.whl (51.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxtea-5.0.0a1-cp39-cp39-musllinux_1_2_riscv64.whl (40.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxtea-5.0.0a1-cp39-cp39-musllinux_1_2_ppc64le.whl (46.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxtea-5.0.0a1-cp39-cp39-musllinux_1_2_i686.whl (41.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxtea-5.0.0a1-cp39-cp39-musllinux_1_2_armv7l.whl (43.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxtea-5.0.0a1-cp39-cp39-musllinux_1_2_aarch64.whl (42.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxtea-5.0.0a1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (41.3 kB view details)

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

xxtea-5.0.0a1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (44.0 kB view details)

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

xxtea-5.0.0a1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (55.4 kB view details)

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

xxtea-5.0.0a1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (47.7 kB view details)

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

xxtea-5.0.0a1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (47.2 kB view details)

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

xxtea-5.0.0a1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (44.1 kB view details)

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

xxtea-5.0.0a1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (40.4 kB view details)

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

xxtea-5.0.0a1-cp39-cp39-macosx_11_0_arm64.whl (12.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file xxtea-5.0.0a1.tar.gz.

File metadata

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

File hashes

Hashes for xxtea-5.0.0a1.tar.gz
Algorithm Hash digest
SHA256 c6c277ad57064cacf90a6f061f79ed54793936e4da79e73a2b8b635a89e717b8
MD5 1eaadd152bc792d73babc3414d042b3f
BLAKE2b-256 c81cde735242bc871f2c51b4b96a3bc9cba940d763a6876b5d27d9fa9b494125

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 64dcd5a0f097753f5e8927131fc2e29b7b84b7783b40ca06f3a25b6b29ccb08c
MD5 d9ce002242e4df7ffa8203b4461a56cd
BLAKE2b-256 55661aad46d966a67863d69cbe3b51ec951eea33837f9994d0fd118daf931e81

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-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.0a1-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.0a1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9850615ed395c2d0b2056cbc9fa8e116d2d9efa080aee18cdb4cd4e8195db64b
MD5 25a97c346ec88384fbfb5c4e620996a2
BLAKE2b-256 918229cb4430664c889c61427e99743a9343c9c280f571a176a55c678fb4e917

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6fc5c5b8eb564ee381be70f8e5db361863624f8e35308f0d3a660a233d39f7c4
MD5 314b565e9dfc7a4b7ef07c6a5e643ed8
BLAKE2b-256 2bf520ff31f7482fe299cc869657518e33ccf2a8f8d63b66f2502317d26813c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 999c997aac9d1ff86c94b4cfd2bb6aa9bb053a17bd8d6261e950bd1a822ec97a
MD5 268feee0e669dd766d3a2d9714f76b33
BLAKE2b-256 fca675785c8ba2588919c9a050307a16c4ca9881ce8a93330669a8357d4e8eee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd7389093d15d929bd2baf47f47ab684ff75189e18f686813a5eadcae4b7ee61
MD5 4337c10a2878668070857cd379628cf2
BLAKE2b-256 0d05774eeaebadedace58af2b1250f6ecd9220c2119b88e56c25110382b3f5d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b4bcd3f10f26f8d3af10b12190d39eef7e4b4c3e3645516bdae157dec28e4840
MD5 60195c7c86f2f30d31ffb311bb329cc7
BLAKE2b-256 9e9695b069f7b5cee408f8f2fdfb180029c52173f6bab35279616cc71ae8b880

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 976f47c05a4f32ff5f0a6700c5623cfcb5bca26c98cb73c928f387d72f3444f9
MD5 cc0239eafcb77d43356b763cbe8bbae1
BLAKE2b-256 900a11a7d2c0ea33fde4a39c08784a6b1e580ad791e9ec6e0bb19a1cf33e22ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 88c4007a1e2432c9517fc76d56cca5ab0541b32c647cbe5abff5e7fd9aca45d6
MD5 55f71b05dee0aabdcd92e60e4d486d7c
BLAKE2b-256 84c43875d253ffd527b386afa28d36f17928d6ef0afd7cb8789354626ba9e458

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-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.0a1-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.0a1-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f36e115ac3a13bc50fc43f2b86f737144b128dbb7eb03d7f99bd65bf25e802d7
MD5 e55aa1b9081ec2af944ff65cb48a5a4d
BLAKE2b-256 2b227add49feeda924c4625fff3ec7577948557e62642e918794c9992a77c6a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a7b38b0bfd39793a92c1ad15c3f779e0bd3993da5af8d9334bbbb8ca704db4ef
MD5 affdd0a2a674149533cd868ee5689309
BLAKE2b-256 b1582eaff3dd31540e97ed3f8f26d10615f283d033fc4df6c58268dde5a25af7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e03d83e83a6a80ea7e6a08d38399577d1dfd77987c7f888afa1d8032ed6c948
MD5 077a9732b1fe5394c7578ac163473852
BLAKE2b-256 781d73631b5fed4ae00a0e6997e376b7daaf8accb7fe270c1020d758ebc0fd0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 82e2afe6fc1db8eaf4b8e9bb9da9c36177bc977859ce4ac31b0eb0b347891b33
MD5 45f2716fb8a51ef808a13f36ccd3a02c
BLAKE2b-256 01be8a658c40ee1f5880baa7f55d0850352f142be43caaa7d113fe24299ea9ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c84936d67dcc26f9c78b33e1c6fac25bcd317b9108dc6e485fc7f71acfd37f88
MD5 085414d9de82ab5d5d8fdcf8e1c67745
BLAKE2b-256 b0d3a03b4056d793269d5be80a26bffd5a26bef3ddbcd978685f8808f6811e44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7441d2c2753bf3937309fcb8f42883180b785e436b7ab9b3fd3e19283f8417a8
MD5 fd7aa7a6f10306db1f886280a59dc7f2
BLAKE2b-256 10f3cfd02d19e3b1c0c3416608e4f146d7f9127ec37cff1c145967eb00c40f0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-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.0a1-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.0a1-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 069f3c2bbcb5ae6feb8137ef6451632efcc3244241b96fb83325b0fee3f3dc0d
MD5 c63bd519799a806f6beef975928ba750
BLAKE2b-256 0bf6aded5d1dc6019cfdc769ccda9ccbc4a2163b3e49af7506be928be1f1563a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 461b29ee6582b52515fd0929eda32c4333c4922603b321b4d6a505d28860940a
MD5 0e0852b0797a1b7e853f683782a8d42d
BLAKE2b-256 2dba40e7b9b0082c44be51a53b0af2d8201287005a796353171c4eae7f1d697e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 868e59360fc0b4a4fb3f1575cac132135e7b0696e49027cdcc3d84d53a7cf028
MD5 0ba83b936baa32bc0b56910d4b25fbf8
BLAKE2b-256 c07291a07fb57e20715de541ded59b34b146ab5889796fbe2ec730691b5bc760

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b54f32b14dcb3fdec5dae74d782a3a6f4d2f3eb39a300ff3b9d29e7bd3fb5a30
MD5 ae2030cfb251f1ed59a52105804e98f9
BLAKE2b-256 585a4e3dc25ad60ee4e3a8586a5d56cf2812f94a990b108d0d271463eca4086e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 3cc4d3b59281da1d474ef0471201a2f4e8b8d6ef7b655b797393ce8ae9d0c022
MD5 d533580945ae30354f544e24682ca9cd
BLAKE2b-256 b930b2b05c0330e709eb4ecb3449e859fe53923102a7672297f7425601883e0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 76e4ab5306dfdfe6c5a01d57293f31df5721442ff15a69a5315629d4f6ef97aa
MD5 99c52525bc5d4c99370e9122c67c615c
BLAKE2b-256 6074895a803c8cbc8cacc5eeb16a89a3c67a0c94997a8667fa478162193b4dc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-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.0a1-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.0a1-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 466c5735d54bc92cf4385c367d8a52f2f8ae3c634a3db816abc7a4e8dd3b9267
MD5 0ce4d5ce09ff33f5b34231f21810e436
BLAKE2b-256 5e3ce6a317e6b06592fd0407209a786290471ffc51415797f69e02b48364bac0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e6e5194a75b839dcb881f73ef2847d06a9b7a22e4602af10f8ec23b76d8f81e
MD5 cf6e55ba982fff6f288686a697f55f84
BLAKE2b-256 8d65b9ece21bd5106c85e6b52e0b5f81f01cc492ce10c6217baa8f47b84ff48c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5c014b813962bfd6bc9efa35d6b92bc384db42adf9012266a8873608c3461bd9
MD5 ac13a0e908fa33fe85563c2b53d86430
BLAKE2b-256 f47066da485e5b079caf4cfb8c6f1b8d084822ccc1861450ea4d4b4a9739b41c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-graalpy311-graalpy242_311_native-win_amd64.whl
Algorithm Hash digest
SHA256 3961e4f72c38df03b67e5be1db93b9cea8e810f0012cd5dc8f95627cb7e96b07
MD5 858b016548ee7329c84fa0fecf89ac1d
BLAKE2b-256 591a38e9de9e4012828c14c0bbba4dbaba1c4464287e708bf74db57dec77a642

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-graalpy311-graalpy242_311_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 735c0e8b3e3ff1b03cb2ae92d43db74469a22e694bd199f1b2326a8786dc1a29
MD5 e02abb072c23640b2e1ef3011ff310cf
BLAKE2b-256 9df1e000e48a6074195a301f952e33b03dcec1949bfe51650d9aefb0192dd1cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-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.0a1-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.0a1-graalpy311-graalpy242_311_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 8b3d31c99c02bee260b323005b7e57f24ff2dace31dc21bfeaf4300394cdb1c4
MD5 ea157e7bc4e8d371e2bf904b2e469c05
BLAKE2b-256 783779d041390732fe8ea268a3fbd35907b8e79052b1ef68443af71a37aba865

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41452eef6ea5d5ff4cfc7eb35a6629bb0d42aeb42f8395658f07a00078a527e9
MD5 53a9172e9b732bd0646b6cce8c5f952c
BLAKE2b-256 b31579267de2ac5d95eb3f27a3814659275e270b048d9178f4fd4aa6bd8df414

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d04f46ecb652dc2a254508d80565373bd9bf61bf307bbc632a7d5e4c7806c244
MD5 2e8243f800dc752b8313af357b8bdbe0
BLAKE2b-256 5a0ddac94455e1c49943e866a8508121a2cea55aba23952845efdd365bfedbfd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0a1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 14.0 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.0a1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 a03c6becd0db2e8c2a6c2f415309384a27ece8f74a843b13ee41f4ec52f60743
MD5 910004af04afc3e210febdfa4f7b5e9b
BLAKE2b-256 deaa9856a89025b98e416e43b97e2abc81b609e7ac9195b6a3bd96f77dd1ba21

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f5541b457df5d3efe85ff18caeacf0f096629c85542e39633a4502f3dbb3ca49
MD5 9fe3b7ab69998b07b7c43b3a03420644
BLAKE2b-256 39d958255a520ab9776dc25d07097011c1f5876776f1c737bc328789df19894b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0a1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 14.2 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.0a1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 fec2c6cc819b8d55f9da579dee4c7d5227f35f1ad21b0ec29c3d47d4e60ce5b1
MD5 35012589ed093b6ac291792cb9f8b8e0
BLAKE2b-256 b6dc461f22ea137c3f27f88d33deed32816fa7e669c56f776cdc7630e35bf77d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69ed00748df8153deddccf4464262b85145407a5caf7044cc084b6be497c5170
MD5 3a48f376cd861cfe56b36274dab18730
BLAKE2b-256 022ff90ee1c4685e50a0c9fe92876f22ee3cb95dd5b17b8b8d0f01cd21efc5b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f3900c2181fc7003654ca79d9a60671b8e712bc5c475f8caac789e237821a797
MD5 54b172f4e56748ad1cb1b93a03ae924d
BLAKE2b-256 25c0908ecdb07a2a1edb70db9c15e13994beb675d5fe13d994bdaf0e01a90412

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e4e8befd09627e980d6bfd9700b97071ed8aa2f5668a7e19a0b2d6e21134af01
MD5 2d4b3b6ba8817eada8642086fb482b68
BLAKE2b-256 a2b827519d009cb9bdfbf52c75f3cf81cbfdfae9187375344cfba179bf1bcfb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a56f4ec6809f1537d6f63b9c30470bb1bf6132c6b68d9e2f3800249a09d38e72
MD5 2dffe7452fd6d611af9dad24f4f4a1c8
BLAKE2b-256 25d628cceb66a1afa5cabea505700bfbfa4952e1cdb99090bc21adac9393b910

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0fd97abb00a75c29be783020c2845899d0018e860a81957c463c2204020ebc13
MD5 118eec19c4bd726c2225f9ce2f8eae6d
BLAKE2b-256 08d9884eb261c4d139d5f11a00c298edc9579d864a73a36a826a9db0acb06bea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4c6fb58ab2a0d6e6f6ac1e70397c4ac889da4e1fb556d3fd078deb8cef079b8a
MD5 56ddc7466d12d4b52ca3e61d7b8e0d99
BLAKE2b-256 b3148ac23ec587ea6f70d6e1eb55c829aa207668129f5e73bd648eadf48bf43a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6566ef7fa777ec6e6394bd15c67e729e5054daaf3a00148c421314ac7c447385
MD5 7b3d9e5c6cd14fe1c1e722c6027fefac
BLAKE2b-256 148782a139eccf7ea3ca6b4861a593e528e5d14d9a7fa67da841eb901a45b1bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 683048d030752d41a0b5acd6753ea25c27b72b2cb453ca3c0d8c50fa9ed515e0
MD5 173ef0fa42cb8adc81d685ecfaf0ed6c
BLAKE2b-256 a5139f59f0924de0c79e800622779265f3794f06324b964f7c5a7834097f4e44

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-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.0a1-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.0a1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d4095eb45ff05d176663a0fedd8ddb87f91aa9070e0b99038874f50c8d9e1633
MD5 5b548c2e3a718425a9e1ec1eb3f3c51b
BLAKE2b-256 e5c9d3374bf078329379d0ebb288a75e6a42b0095c183fafdbb53305eb1de210

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d45becff769556f737f554fa7ffae94adb96f46a3f842e2312d543464572bbe4
MD5 e3e5ccbef55b8ed423724e54eb964362
BLAKE2b-256 ed6a24c01d4aecaad9821fed6cc18807402cadb382c9e21a50a3e79cce5c6bde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c1b7ded2bb937f92b19e8d64062f31dc823ee8c7bd9c80a6952343667731db3a
MD5 43bf8966f2fc4763ec619a0b60917f28
BLAKE2b-256 a7cfd5cf4a0d3d07c178cf2d3e51f040543f3d3669805fcdeec09a8e24231e93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 9f5a05953968c65b42b8b0ff4f6fd6e702346f317d8654cf5d049b1b844a3aff
MD5 d08238e68ce52f7cbed33f4fe70c5787
BLAKE2b-256 9590a1f47aa533d4267594f09a678e51c451f62534a4d9c002aca57f1f541176

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 907f5848c93f191db5c32d7491edb92669e6aca1491bccc2d6f94053a7423feb
MD5 2e5947cef3a9d43a33e603d4c0c31128
BLAKE2b-256 7d11172433bc69c1d5f846d1742bc2650e53944ee7ce8a67af4ccfec561320d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f5011c9e578d8ec26aebc5afdc10efdf1c16a7888e7516af7a76e0cfac931fd6
MD5 7e6342d6c601d9c140fa14bd6dd1aa27
BLAKE2b-256 2c9f05063f15ac0ae4119019470db45ae4b2e008ec4115aa651ad5f6796042f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c26d7cba8da7716d7eb6ebb133fc3ad7b5a8c6734daa33976d952dd590a53999
MD5 1d67494759e03ab4c779977141b88440
BLAKE2b-256 710d571580e9b7be1250a2fe5d85b25093df5b7a1dc28cb6b9318bcbc2a7e66b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5988961bde8e81f97b01c1068911fe8d2637f1d2a172a8f051e02e90d466cf41
MD5 21397b29c6a33e4902bbe1d71ee595b3
BLAKE2b-256 900b94b1fe2447f7d1530bbd03322b79bf683936111f73a4849aa1456ef13bd1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0a1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 13.5 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.0a1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 5e037ab429f879885531795683a9af0039834a0de2479e5c736738be2bb8dcf6
MD5 5bf32d5830d661901397191f55e90f07
BLAKE2b-256 948a2913848279c6f0b5380b6d9f6d824f7e8081baff8f99b61db006559f9e66

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9ab44dfb6ab0239ff6c2a8c7bef41777aec5e4620a21062b2e5d67fe6620345b
MD5 37dfd9c7496423ed8a0f12d7e941df48
BLAKE2b-256 8379e7f63f53a5ff78c3ecca6c85f859dc26e82544d0703b63b9eb3e5cde4df3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0a1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 13.9 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.0a1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9761ccbc774b77cce257605b1f2e735ad507b312347bc2089d050f398ac2be86
MD5 5116df0f7cf14866719a961fe19ce22b
BLAKE2b-256 4f8c2c676884166a62ad1a347bcbe5bc46985d7b1d45adb431ee59f22684dabc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8fd032f7820e54b1b46aa94e6b5ec1ee975dd8609d856c1ec431d78efde3c179
MD5 6aff0b865c1d4da084cf0976c293286e
BLAKE2b-256 ae26ed5394a7441f7c997af77e810617d89685d0a7da7a1cc72e134b6f366b60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 42938e770f5b6a736a297c002e7d6fc542c23dc66e8b81f6f30c75d03c48ecbd
MD5 a1f3040d28d0a29efa925a9afac224ad
BLAKE2b-256 c39835022e715ce1311b2b66c649a9ccb6d86623e2436c46a798f36c653804ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 49ca24492251c26a3de58f9628970f58f6f24987a7986b6fc87a0026e802bee9
MD5 c4a4df9e98869c6034371de56e27ceea
BLAKE2b-256 dcb3f56e5e4d86d4971ff4efa92d1dda8f19d444c798c9fae698a24455168784

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 182dc9b0e32943b9b9ca10579c705909d5878a7b7b6ddae9be28ad1213f8fff9
MD5 2dee9cb98fba5d7e286dd0a3c0684257
BLAKE2b-256 7e88837013185a49d48f2e96f11a01367c6b4b214af4817e47559cb6b5b31e6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a60a46bf1bc5a66bce17a0e858d623425e174bab289da67f60f59f61aa625ff2
MD5 062986bbe1c1c615842f4c73e01bfccb
BLAKE2b-256 1edcc071a821c699579279a2bb5cdbdafbdec4eeb9453bd3bded0d3c9f917e48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c4b597e31c2e24695380cf6b36c07805999d4a9c50e1bc37e685ce7d74ce226f
MD5 905f5d31968ab93a3b5398d17493caed
BLAKE2b-256 19fc1677409b9f146dc572365dc1ac726f07b91df538765a736ae4086c3a5e15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3130c2ad19b23e9e3658c6a797cff10b90a1f07fefcc9ea33959399dfe9da474
MD5 365449667a9b4afd018e1ddaf5da399d
BLAKE2b-256 a2e87d4253374772d6f0998e55cf43a39390bdc9c1999be66920d9723d3ae62f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 63b4f11b2ad85828795c36540e35f17b7ae3d97e2240b875f27ab261199a1fd4
MD5 e75364a7004b3bae87dc8b80d719a13e
BLAKE2b-256 6746efe7088b78bf3cbadcf2c8c4a9aeda44f27f14ce209f0c0da1f91e233a6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-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.0a1-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.0a1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fabb6224f96341b14ddaaaf578bdd4a7119a6be5f11cb5a54b58274c73194be4
MD5 7918aeed35969f0235cbc4ca40d56448
BLAKE2b-256 4b54b657727c33a0f90a00057b11adfb6768df2138e2564d314dc9de7f538512

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4c521cd3a9d1de2be5c5b1c78cef7ea055f2a2b9720f4e5e1324c371ef58beda
MD5 707605750ec49dba545bfac0780c16af
BLAKE2b-256 44060b7fdab5113f542ead2fddc70ba07b7796fe7b3f97567f4fe1ea878ed7f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c5ffe6d30b524d1cba14d8388d905a0f55503f471e4a592c9c57ff273010258d
MD5 d71e5af7f07f124ba28f38236adcf675
BLAKE2b-256 b82a653a91c0971e29340fb129e10541e65f664f4a8bd9114b0af7caf4725fa7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 42c5c150bb17112ee678b0d4283d8ee272200846498c79c03804d7b9379da267
MD5 f01d2b40f857c4d24ec17a2907cdf0f0
BLAKE2b-256 69df0f061af00c10438ca2d93103ffd10837723e85227a168239f7a6f6994048

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cee8723cf387673074a14cc7678e4aed9977aebc2c11bfbe3c4c13756cb0da3a
MD5 0a1b1e8ebbbc3724a74644094e23ab72
BLAKE2b-256 ca54ed3e2d2e3c4fde0b536aec8d7ad2cf0cd2855cefdfc85c82601ccf26a07e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6609435608835d200b12eef733f4ed6f4f2fb8d27add3dfafe0441a7ff839f03
MD5 e2c39a7194075bd287b924223fad1132
BLAKE2b-256 2bc18dd46bb146713868a8fb917cd635b04b4fe379715f687f1475d623a41c3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1eacd1021a1d8b560512cdc153180a906300f81b6f6b817de81ba2d08ae354d
MD5 dd2830829b9b3caece58acf0270d310d
BLAKE2b-256 cc4cc97ffe63b201e83b3e3889871355c1e9fde5ca68a0d372f7e2c65839d280

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7d7a3d40059beec33488dac67e845a782fbfeaabf13039e829bc47044dbca46c
MD5 75a9b3df368af42a8e61afecac928e01
BLAKE2b-256 2e2fe3d64e6e6e3a7bee7dc2d554b8edefc6a1ea1a41b6d9ed7b0118e1ead8dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 4545f72715b374134801367362d37801974a740ebabe18da5c89da6970a534a8
MD5 1893f5d0840f757a14bc79a87d96b579
BLAKE2b-256 1996d8953067e47570236a57d6b7d5cfc827f0a8666c9de97f126cd393306e71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 e575cab113cd2e7166e89d65b7138ea7d9bd7fac37013bc2bda8166c302b1ef8
MD5 47efbbcdf655108ff05641e620a947ab
BLAKE2b-256 53292d7db2f0fabbeef9aa892fe9250257f83d80fbcc14a0a7e010af54251f99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 f3da5c32758befbd6dd13bf41a57121390b6280ca4c8826bebb689463f13fad6
MD5 cb809614bf569d60a2df1d91aaf79836
BLAKE2b-256 311188c666abb52a3420f9322094a0237ea03d0bed02514e2e0ec8388513fdcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 c4218f99ca10d915ee45d9e860fcf235fb6641871fdc76f493192fd1ea59168e
MD5 71db1b786afd5118841c5ddac826ea77
BLAKE2b-256 f31e9c84ae9294e9864c214563331256d159fc124b2feb92d4d36c0e0db7edc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 439402b691ef3062d3200d0456e455f2fab8c2560b11069d05f4155d57ee2376
MD5 e3e707429da149a54eb56fce5b3ba873
BLAKE2b-256 2bcb9c2e4f7187adccb688ca735b15ef6f586caf8292ea711b35c031c31e3ce0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-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.0a1-cp313-cp313t-win_arm64.whl.

File metadata

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

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 b0cc0337e438a8d5d817c385c33b335283b9aabe1bfe4576ed20a6f70d15fbcb
MD5 c713a98f55937f46e098ed0e114b089c
BLAKE2b-256 f8b878324dc877dacf0b9ec2c4fd610613973e3ee344b13c7d0a0c7a3e5aa357

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-cp313-cp313t-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.0a1-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: xxtea-5.0.0a1-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 15.2 kB
  • Tags: CPython 3.13t, 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.0a1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 24e4bd6356a982f542ab2eebf2e006048a781f235368a91611ebf3fce9972189
MD5 d84705d2f3c025c5044094fd865749c5
BLAKE2b-256 6863914f207481cb1f509bff0ea67f73c00eaa1124802f30f57f62d899a69f44

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-cp313-cp313t-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.0a1-cp313-cp313t-win32.whl.

File metadata

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

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 f3d16218ec2bc5aa98cafd2a7c6551f09b1dfea94d0357e744f0d1556550353c
MD5 784efeedf3ae40ad7191562ddf1a5767
BLAKE2b-256 74decaf13696762d8e8400b9f65a2610395094badf20f7b235f2586aef126066

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-cp313-cp313t-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.0a1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a2f56b80926cd91b3f6e6e06e73141105d2f669eb1beb76e8bd1d58dedf8cb3
MD5 84ac083874a897eb22859a892b9dabe7
BLAKE2b-256 0b3ffe7ccc4cdd93d292cdc29c38f8abd63f6f8b7731e5fca5e8d7dda7fac7d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-cp313-cp313t-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.0a1-cp313-cp313t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 92f7257b33d283a950cd74c6d6221b41face000b0f758b95811222a3d7ca82b3
MD5 bd277791c4e4dc9f034d17fa838fed7f
BLAKE2b-256 ca869d0e0bb96b8233e537db620d102c6dfcd38a9d63f0c551c2c9d4cd03ce3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-cp313-cp313t-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.0a1-cp313-cp313t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7a699f6eaee731514d0b5cc06c7209ce21c6a0d1d6dedf92e9d4e544a40cf8ac
MD5 1866139a93b16de9dd10963b50e8ce17
BLAKE2b-256 45678eafd63f1f93216dbadf1dea4b4e02884a37a9fbae545899a795ce74be94

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-cp313-cp313t-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.0a1-cp313-cp313t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0b086a05860d24ca87eeafd2a09d77b8b56cae75fd0bd420e7562620e019f421
MD5 a1f2b0f10433e1fa4b290ce14af422be
BLAKE2b-256 d0a19232267936978628c734b1df92d6af9ed6d9c7a76140eb12b20df317e618

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-cp313-cp313t-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.0a1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 634d2645c0e868c5faf332243f78d596d636e74f155d85b8c667d0bcc713c5f3
MD5 4e9b9d6bec696bed025cd0bf99b8ce2a
BLAKE2b-256 b3d76526cf9a019ab7b34427161afa3d7eceb15ccaadfa521dabf6037fee5681

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-cp313-cp313t-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.0a1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 491845624b6cf88dd6e6c03a416a1a1ef2b17d5f7b481caff9487cfaee11b707
MD5 4ae089143b9cf69b8047dfd302cfcd1d
BLAKE2b-256 ed9032803ced1f9677bac53071576bd1945100f62ff52c4c4f8f7f82ff62f3f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-cp313-cp313t-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.0a1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 44e092510ecf740b38bc136f12bf8b05dd871166e17063a12758661a07562abc
MD5 dde5b4e322e04886b2a1395ce2cca3d6
BLAKE2b-256 03e4ca553c61cab050973745164850bebc9c3aa4a095fdd5d671dc91fb7745b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-cp313-cp313t-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.0a1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 422eb7329ae77291bc6aec500de9e3b90882f70dc06930c7c990f29118814cb7
MD5 65907658fa43934f4199a69ebf409613
BLAKE2b-256 6d8313a24332a6062be5076bf6a8d22e9da051446152f21375bde6a6d4b743f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-cp313-cp313t-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.0a1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a050b6f0b6273267c1b525eb92c0065b5311037921ed208978d8734f489c3a63
MD5 d5239320cd6c5d5bcdaf6584f9b3f07d
BLAKE2b-256 de2837c5694f4042dc088d6e006c9ee61feb0fd8cbfd67ec2ce6cf6f908bacab

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-cp313-cp313t-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.0a1-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1709fac210a2fbea144cf8f25bc5243949d621a8d0373c3eeb3f470b9c06828b
MD5 714e31cb3368dafa4c2303880be829b6
BLAKE2b-256 ed8d915fbd82bc3b97df66d80f011cced58b95eaf656c68157a4a0aead892a2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-cp313-cp313t-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.0a1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3bd06375cf040d9559a20b854e639d657d9acb1f7ea7806931066d96caeea1de
MD5 2d275796ddbeebfd983322b887ec550e
BLAKE2b-256 17f328fe6a444e80ee0cd9f0d0b5e5fe06e100570c22781bc0b80e04e5830d2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-cp313-cp313t-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.0a1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 663d24aad6667f48909083346da865e6485cc046005ba970d79f1217289cb355
MD5 52e1be3ba676be119c1c311d54bd5ae8
BLAKE2b-256 5b3e49a469e6d161484836817d6b32059542f4945185d02b03b0901ac09edd0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-cp313-cp313t-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.0a1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3a02a881169a7442a5ebfacecf0956eb7a92370ea203e75767ca0e539cf88352
MD5 457ddbdd236d5fecadaaeee318b214d2
BLAKE2b-256 174a2c706f2a2a3798e77df242e8be3f43eefcf6cb4ac4f5883613689be51ac8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-cp313-cp313t-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.0a1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a0765eb8e986329f06f2782b88c2bcce820c5e9a1ef8bd1303858c4dffbdb8bf
MD5 0837fa9c764aeef6455655bb33fe1343
BLAKE2b-256 29af7ef0508324794ca8234e17c15cde150fcac5f320e0c27f9c03973f0871ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-cp313-cp313t-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.0a1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c3ba4c46038d00325bf1b96088822b4077c536f663df843cfd303a72e6f48ab
MD5 4d6dffae5ca484d96ec3fd0fbdc48d32
BLAKE2b-256 21e4cca5d7f36719979fc8e6f3941433601790e9ba027a2e8428acb900525bac

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-cp313-cp313t-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.0a1-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ebc0608993987beefdc1d94ff18583f084820909abf422530801cb2ff4070ca7
MD5 98e5ea5ba1ecd119603489a05138447a
BLAKE2b-256 388d7813b6ed5e752c9b2eaf8f36fba4b9285f094f6452640d987df81f9e2e86

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-cp313-cp313t-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.0a1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: xxtea-5.0.0a1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 13.2 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.0a1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b8fcf5de1ce7454f30e3e03701cac3075fd812a03b6f9cfa6a5b0ce3c7b0fc7e
MD5 0571fb09969e50fe54c8642f0d44b1f4
BLAKE2b-256 d6f1fa0abc239d3a9aec79f4da105c64a79c99a6cd43fe00ee1fffd868abd7b8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0a1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 14.8 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.0a1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c1da4acca2ea73bf7d234c98000c0527d2afd03aa8911f807473a2b90d3d7f84
MD5 fde6d2dccfa8c581f8476a1868968dd3
BLAKE2b-256 6b1938ec8557f023e42a83288c8e602434bad721d80a0ffde0054e46417b895d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0a1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 13.6 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.0a1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3206576a603e20b71e0fcb9e98a24874c1dc594833faa9bbb5a5b2d8a564fd1d
MD5 84850f39cfd3ad4f9b95541f73727877
BLAKE2b-256 c82044283ae1e3ed20f695846996d842fba2d4132c0397ee9472a1a3d28878ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43ff3366d7eb10c282b86c114395e7bc28bd638c7105af2878e5ef299d8e4366
MD5 ba9fe3c236b3e494adf977a5debf51d5
BLAKE2b-256 edef6580e46b3fdd9088687b6a3431a63655168952d0e25214c9d5706fe1c589

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 489a4692e21328bf9260406f110c6140ebb59d65d4c4ada6ede722f061c06317
MD5 4049f62f2134602aefd0f3be4cfa2dcf
BLAKE2b-256 466b43dc6ae91dce8b7675616e4b7ec399f5e05801a9949b19dcc7e51d333d25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6c5845a4770342165957e2fab9f1ab1702a43f9fbde8a87e4f70de61efb79c3a
MD5 ad165998fe0f80dfaf5ba401448e89a0
BLAKE2b-256 afb6352c769348804de2ec48ba072821d2c67abacddff208afde27893c1bb331

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 dab60ea2c56a7a3b4550a3059ad5f4b6c00cd99f3381ce2c5d9789b36bda69d8
MD5 402b09bada993c53fee93d2baa76d929
BLAKE2b-256 4eeceb0a19d15869f5ceaa526defc49e1e267d73776460e32cba65f50c32a816

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 53d3ce2c8502f7fbdb07c75b2a6d3d93109384f6141cbdd28d7bd7a7ce0d8bf0
MD5 a46ba3fa54f79be37c208c87a3b32bb1
BLAKE2b-256 2e17671c41180b57eaae42ed1b66dd7d6373e10ca1d98e47970395cb64f510f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6370750027dd425b02a49cff75c91ae1168caece4535e6133f90a4f8c9b82791
MD5 e05f3cf319c4b0199ba6e3403e0ffe1e
BLAKE2b-256 a16c846a450eef0ee7459029d4193d65a578af1cf8eccfdb6d292459ed58a447

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 12b59978ee32a2c13b564deca63242b11139bd8f170bfb5e9d90d9cd4256e4d0
MD5 b7fa59478f72f4e7434c2a9a2d537ada
BLAKE2b-256 36f2d5ba55fc6e207999d2d1f472c2a63155c9ba1ee40c8f059c47262fc18aa5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 addabdee55ca44e35a02e9877d36306a07a6a97c6981522a6a8690e8630ff4a7
MD5 22a5bdeb0ad1cfefdc14c97fa44970fc
BLAKE2b-256 42a613dc3e5268db14dae7598aca2e139a4d8b3b72342c4901e3794a8f7f12bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-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.0a1-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.0a1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 04dde470c444e765cc4972d6c3cd58f2ff9f978330df1e3447e98178d267f9a1
MD5 a7efbb2589adfe82c8afc4edd7884183
BLAKE2b-256 fbe2efe0fa1d895a87bfe2c5579b9829421671aca03e8913d8a09f69ff9bc51b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b037ca1119828efe93b30f37f6dec71952a943e0851496424e1afc03683619d4
MD5 1b86b56f4a8314b7dce5492f5b885ded
BLAKE2b-256 15ef61446cbbccab21d15237a132d14dbdc409bec9430e0912461a39844fb086

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7504e035ca63a61db36568356059cc3f7b6511733dd3f1ab6893e2d32036bb37
MD5 8834e248d721bc5d040d39f1e12e2f01
BLAKE2b-256 952fe455022b189da82a16c9a85ec0c759a1f7450887a23ec999fbe60ff9fa44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 18ffa777ca9aebb8d1a542f3867d586f5612dc658003a6c8f88d16d6225df973
MD5 b2858448b132f9955c9e133f45342709
BLAKE2b-256 3b472b12a80b886019ece310aa23b6c2795067545583d1310cdd9f7539375e92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2fbe9af7247997c099d217affc80665214540f6fe4306e63e48b71243014bff7
MD5 dfd28210644dd9ad313ae35db4fe438b
BLAKE2b-256 e8079bf5d45c5ca64a970ae1f7e0d628421a3d0b31fd1af2a7e5f986de9ba38b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7098d51c31cfc46b8760c2a551a87f30fa731785c0796e70f2540185765429ee
MD5 577b3c85c537438ac05d8ff690b9e84c
BLAKE2b-256 85f4d88980a737c9ea238a07c49d8d637c3400c2828ce2c63f1160139d838510

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5be79edec3858adf062b8d1415d807a7431684e16a1d659a25aa26207b0258cc
MD5 b76ed902e2672396d1822dbbe6813f71
BLAKE2b-256 208e940cb7be6316a7a76d626646939936e809154e2be1238733343353bf5bac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 dee71550cab9e1dace256e5adcb8d6ce5e1f7c7a3484ac9d7ba2716c0f2b798a
MD5 2a6503bd997ab1a908cf4ab5bb9ad863
BLAKE2b-256 55fb1a1b683802c03c18960e8cd689e2c6bc5e388b0660d0abc6617e6e61ca25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 b7e74dd0e2cbe292e39f0a3253d85191cd70e05487fd685ba74e030336c0dbb1
MD5 6e4734d0de2aebb670e75cc54fba7104
BLAKE2b-256 5bea37dd0d5f219e88091ce7ebdd955df80402114e31721ac8ff2d462b76e381

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 f572d45cd816b019842918404f3a791df454cab1fd09753301ff32f019993527
MD5 2dec807a2a6f6d8ba07452907d75c8d8
BLAKE2b-256 9184923ea36601574d89e76e8c8e5981cb64298b7a1c1934905668636797ae87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 05a0ebd5b27e0980604ff6889658b8d998f5bf196833aaf9963ded2d3d77af0d
MD5 ef850e6f56a9581760c91627f63d556a
BLAKE2b-256 e813bcad4aef28becbc2ec454a159712f3f182d91084fb2b8204798fc7acd2de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 c5b02ab4d0aa0d7a88f7ffb216cec5327a8975600452ecb13c6965812aa5662c
MD5 31a50213d62c6060ca6210a0452b0276
BLAKE2b-256 a2847b28c6aa8f77a331e38cad635b4f6aa549bbf6c246c05d907ed50e4d2129

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 19350975d31e356b0703d1968abb7852031a7ab4b743e66059b578c6ca4985d1
MD5 b935c424091bb357afdddcd6dbb819a4
BLAKE2b-256 fba6e5f547ca3ae592daa481f2b884d94fe43bfb991327f020988393a650df73

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0a1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 13.2 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.0a1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 3e7484f95a7354e09cfb62896e0bb9b80e6e13292efae166275a83cbc671b2a6
MD5 7e3e201a1770b5683ce89d4b7c6b076b
BLAKE2b-256 8fd9986a01df105439610128a6bba443db7451f4bdd558b7be48900678e2b48e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0a1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 14.8 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.0a1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 caed17dc46e91fb36e3d831b48013331df9b1f997f6af56f64b62706d116358c
MD5 1bdeafd72efbb41ffb2df085349fb82e
BLAKE2b-256 8161eae0a70ce4df7bc4c0e99b53dde4e5983f87ad2064701b8302f990258dd4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0a1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 13.6 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.0a1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 49277edda6c927ab97c17f6745dc078c0ba3797f114e27465f87cd51309a0345
MD5 1763a1383be90cfb414ce391a20cfc2c
BLAKE2b-256 f2774cb5be64c354cbb159a3237a23e68a51148bf4abffdda8622c537c0703f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37ff8e3cc761d3eaf634b10de19c918a87101c34d8ccfc6fc67bfa90083bfd21
MD5 d54072522dc0c5d3c8419f7e99efa0ca
BLAKE2b-256 56695a93493258a46006ce53f478be452bcd41b1a18df24f3c0dab16d0563d21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8bcf02c21df389069c06fcbf699e006494eff6d351f36aea942aba38c339250e
MD5 175adbb271d80f3d16c8dcf48e816eca
BLAKE2b-256 4743931cf1e03d1d33cc33dc8ce1d861bba34be77ed79975d7d66176024a3ed1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3b359c087de87107c5e354ef6382cb883d2a3f465ac380b3c08e446a84ea490a
MD5 a366513ddc1d76c8b4d98d3ecbe27efe
BLAKE2b-256 4e56598d13b1d5862cf01f557ddc223922028e851272ec150c563528b64fa797

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 22b3c8d9ed540852999dd3c631f08ea300040875cc6a7945a81039bb0d102f79
MD5 436ee8c01034cc39a302d49f5d003993
BLAKE2b-256 f0e15e921aa898af902c8eb8fe25a87a33e9d7885882df73071f77825f9ab995

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 71573da8fa59d3a98085a13eeba11000d303d3a8df5f7ac787d47405fc9a5b10
MD5 c8267c10b10ff4daf60db5fa7e4db7ec
BLAKE2b-256 2143da4b701a180a48247e032bc6a25ec4b43c9ae44a4987158b646b0288fe68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5b22cbd6e00295f24afc17cc234f31e3e6c8bef85f7eacaf0211494c9c02822c
MD5 b5eae3327680ffb9f7290bae5b73a1a1
BLAKE2b-256 b77f3e58970eab02ed86a9cc7b32b0c1189dc7490009c52d8943613b1a20d44c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d80f6e18193ba536608b82e36f22a3ed18bcbe6943be520680a1ede5e2464ce8
MD5 b45ec6a9695bb26ce580d9b2b94de592
BLAKE2b-256 3f76434fcb0917f6b9fd5eb47bad2acc40316491eacf55db4fe40ca51907423e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4a3292def10f9f28cd254f9d4815699415c1f7cc66aa214b60825b0e2d27c10f
MD5 4b444d9f5019bbd37f3b0a124be0adff
BLAKE2b-256 b05f25d043762d160ea37219c4b1644a2825fa5fca526774af74d374ce058be2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-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.0a1-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.0a1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 09a6755122faa6e2dd64affec0bb9b8a684c48d995016931a64e69779b5828bb
MD5 a663c3f4bd6efe028d7413036c0e6f88
BLAKE2b-256 c8638f01b4f0e3a558b36e9348771720ef43c3608eac49b1da5883641385997a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 dca6c4150187cd29e96cbb005db78b178ffe4698679c3302c6e26a8af2912904
MD5 82289236615d815886c2619ad9254b49
BLAKE2b-256 e131a068da821a56ef4aa409083762cbb67588ef2ab5a2bb6765a2eb0df6d0ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9b8f2f1df3f928e84e2b601c98ae135dbbab0620dc864f847c5439e3bc6028e9
MD5 8b9d908e123b620aa76b9b5bc756875f
BLAKE2b-256 04639d68c84396add4a22b6405ee5cfa374e7a0b321831fa6b3b9d674dbee860

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 81805177331d6d914db0e9e41c3444dbae52384b98bb069ab63bdf1038c6d3e3
MD5 7f7245df69538f175583a39de93ba302
BLAKE2b-256 5ce02e158dda7e39304e8e3bae449b39996871c0a166fa5d62b9061b80ab2995

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 557c9c28e2f38933461f7f3792a7923375114d448bd794abb7ca75bbaec9c01e
MD5 19a56679ebdaa8cfc727c340af0178f2
BLAKE2b-256 7b904d08c1ed08d1a6a1803a18bf65abcd52569ad6ee1e5aa6a053fa1682bf32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c02c28f333d579066d50daa91de342ebf29a979cb4a4927e846eb0858a761c7a
MD5 5f253adcd701842b61f1b93f8ef4d09a
BLAKE2b-256 f14a30c67b3f2efa393c2f50ed4292ecd16b42df29e690763176d669cd9d9697

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af864a73d4634a58f4d7ff5820a09ce462dfd249182ccde98a0193e6b6dd7ca3
MD5 cd134690ce59a31aad699d0f57673d73
BLAKE2b-256 e46977536c4a798e5606330c9a10b2da57d29c415d1c55b19373272a9e334a5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 31eaf3a89f9844c7f1dccf7d81502eb227b4e87997072c35d1e83f9307c32238
MD5 a5ba98c1f79267db6a11eafe2d613fd2
BLAKE2b-256 7447edd1b0a01201b1e09820ec8343e17a5bcf5adb053b15505ebddf803668e8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0a1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 13.2 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.0a1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 0a58484ecc464b7d47ffe06e307e55a2186d60d743d6dc5bdfea91f9cb5dae7b
MD5 dc472b7e075588fbb5d56275ca7250fd
BLAKE2b-256 e8f7cff3faff1717a6e12f4a72d8dc0a02d763c525cdd137c876d31bf4ad7807

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0a1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1cd833b52bbaa6462720e5c2dc75523bb3379ca6f1beb6dbaece35b3e2569030
MD5 7d0d84720784c9f938ff2e8dd3ec588e
BLAKE2b-256 840059f8e7f5396036e2380e4eaadc3cf8fa8e34cf477e34c5020a903f82216a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0a1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 13.5 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.0a1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f158433f8209b3e3c7c4f2f6f6b4fd9ce55e7ad00ec2eddefd7beaa24c632080
MD5 119cee4631660006e6845960764ed4d3
BLAKE2b-256 3ae95e1b5658931e9bbc74cbd0c97a5a5a4441ce259891edb3b11c6290a60065

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 358a9925f3f7897c868f00c3b44ab9f9ff8817bbc63de9e4e20e08ba2e29f846
MD5 1ac963bf09e48b98ba404219f82a8c1f
BLAKE2b-256 0321eeb907cc09b9cd53c99e791696470b4f5b6bbd8485250836bf24b58e7745

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0300b954abb10bc5181611ed23dec6308bb736493aed70d32a2007d038e49680
MD5 7f3b614a7b2f881620cb694045b89460
BLAKE2b-256 b189d602eaacea9a976dddd1af0ac58084866f3a6c740aec609ed1983282519a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 966de51022291a8aa11e9f523be21ba4f1ceb1038d6b5f55404270790e3b391b
MD5 766902aa1d8137b440b002cda86405ac
BLAKE2b-256 1b753e294872c9b0f5b83b24ad0d2c30aa7ebe8a22cc610d3858462e3524656a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4e4bc76074aa28c105942158397faf0ca6f8156edcd172ec28af1aedc195e7c2
MD5 9c09f496e035dc246c16a1a2a9fb630c
BLAKE2b-256 39258dd4cbdf3ced2083fae243739e2d7da36371a0b75d3198c707602878bd90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a69ac3e35fe2f5da9b444017026315b79d047d9cc79fa00f443561b1be32cc08
MD5 8da78e48e12f33a5b93b8948f19a3fcc
BLAKE2b-256 89a7c93c4261e34fc90aa8b152d577e5de98e28c283d701237c836b0bdfac272

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8138e6c9b87027f97e507fbbe1dd30b2aec20d7c6eadc78c2eebb2360382219b
MD5 002a59d134a9a3e7a8440a9a1c6acbdf
BLAKE2b-256 c00c58620a0637817df6a884e1b50ae446c8df25f905aa904e012c11ab8cbf01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4fa81eb0c441959aad62ef321dd5d8eea28e71da78d95d0697a186693540f3e1
MD5 c916915658de3211b4f98f36ae286420
BLAKE2b-256 1def7f00927cb858571517a53d171a3692407cd990a157bb4d21ed51e3cddf8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2605e6726516d405523fd06f25af942ad54f882188d8cea4d060cdb329692980
MD5 6945ad86313434e3e90a47ce576bad58
BLAKE2b-256 db5bf5b8c5137be8ef7161f72cd8c1e943b8c89cc2ca860af91f32955de4c369

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-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.0a1-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.0a1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 55ea783a67ee1c9773e1a8eb2605e263e080065919914941794ef46d95df762a
MD5 7f135db792652336799a0f20e7340809
BLAKE2b-256 367b3b552f91fd0af2f5bc544befb226456d8f8fa4f0eaa7dc62c4042b04c83d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6a891af6b86edfe1ba8b75fc95cb1e442a14bdb1c4430d9b86407398508ea8e2
MD5 4a9f73146abe2f546dd44d4e3a174a5a
BLAKE2b-256 47dfc9da2a3e00f48a0990aca8c185e74d0a8689f31492baee53549924cd2f80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7a7bbffcdaaadd6e5709c705d2ed14e2e846cf80888b7011b2ad9f5170720d76
MD5 909d45e3789dcee43057aa5f836381e8
BLAKE2b-256 a3ed821cdcd90dd4264e6c250864536fa80da02ca9665726ef67bf11d5dc64d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 976255bb24c64fe461fdbbf58150a9d4bd7fe1c123d25a6c0ccaa3e79e303a12
MD5 253aafd7155f07f4cef711eaee64dd6c
BLAKE2b-256 e8a16e5ed751146ab57a06a53adc5cfd20576d495b627dfa2fb128ab6cd33e1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 443976a0fa8357029036e938b0806035a456f7dae71e242fde0762bae7768215
MD5 3dcb6bf350feb9677569411675959de5
BLAKE2b-256 77e15fea9f1aa7f997f31efecca202fa7a242dc5f12ede5e9afac286f7b0302d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f8cc255997cbcb4ca5b405ef2e307ffd65c0c7518c33198cfd761dcfa5c4a5f0
MD5 9d997b945667211ed1f52c41b80209e6
BLAKE2b-256 10cc62f3faf1f44c8574a207e7acd6bee166a4ca2d6d4c1fdb3901ec36e0e163

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26f535ee48548543dd89ba0f7880d22c731c804160e06803b01cb7ac8044d86c
MD5 0a1a4553e88bfac4c45b158d00240c09
BLAKE2b-256 9ca498feed15114f885b2d54275c319d825328fdc20f39483888d934b9492cac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4218d177567439571339b750f8ed965a617f21f0f87fb0e066a774d3fd20c88f
MD5 3630e10740bc7076e6769cff94ae86b6
BLAKE2b-256 029d7f816f7b692e347d60985ff097542ee9cb3af328b6edb76a8293486079c2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0a1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 13.5 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.0a1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 adb5cdb92f7f6288eea41afaf2253a2168b5622d9143414a8afb1b926b53b65d
MD5 acf571e9e164f875e189ebb7336a0a7d
BLAKE2b-256 05a1283cd61d08d49fe52652aab8795a6b9df07f063a55d4013bc6bf54f0f834

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0a1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 15.0 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.0a1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1a9a8b80d6c27d64e92fe9207c9cfa0dedba331859df9cabf1624b4a0d946169
MD5 3fe5e853cce5c41396785b5a85bf12ab
BLAKE2b-256 5c4a23ebf3f8b1cd303637072152c8b022048b11a7f7dfebc6c50eb882c15beb

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0a1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f98fa96e21fd743cc88877d334da6aed4d3fd95cabec887ea0edaaded0448305
MD5 52cad853041ea7436484cb271f157849
BLAKE2b-256 d007b3dae76230abfc6aa3f729f62a69b6013c3ac73945ecc82b767b56a01074

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a6db8baa280f07b26160a2b4cbb7f121a7b18f9d931d4387cc3387b0a001b772
MD5 d1caed1ad83833287e69c0ee024da441
BLAKE2b-256 fa62c821a5c2bbad6cb96ea58985b54c3537607a291e9d133c0974f93438cac7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fed766acb63d7775fd82a86770f2766e72cca36206e37d30f5af5af99d9da6ee
MD5 d2b5de427857fc65c5958ea542513fd5
BLAKE2b-256 c61e943389a672e5fd5c535802b13bcad7b86492ddb87dbf8d8a06d3aa3bfcad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2af9b08e9e64ca90f783efed025d93bfa5b4fb0195b504db9ca3236f68836d5f
MD5 e05a11f0e31aa96eeb354d13f583cb40
BLAKE2b-256 de031288db25f5ee769e69f1912f36a879b7b7be3a405b6f1a4bad1bc6f461d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0a4ead1d2429b8ad288f290c1d53e00ae86585f23e6a57c55de3d3aa6365aa8f
MD5 c8b5f7992ad1da58377b33c29fb647b5
BLAKE2b-256 f6b860fe896d55aacc1ef2965d841dea86f9d662db62f29885692744dbcf975b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 abe8e835f1cf216581c2e2e530354f53e794aa4fa40403d00ee1ed79cfd700a1
MD5 ea005f773658b68d58216ddd9f14609b
BLAKE2b-256 4bdd0363babd7f3b693c39606617759d4918fa8cd36b165531f50f188dba25ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d99bb3ddcd86a936134ef25c7435b5db4ceb9afa86bd42dc9122113d4de863f3
MD5 607417266c3e778f706bb03cb4ccbe41
BLAKE2b-256 070eb63c52d3bbb23e7be6d627fa06a30a3333b1b52a4fa048199e34756edd59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2dc81969be4360c75b5c56f8dac0f850afb815081f4b3c0d77bff70acae333f9
MD5 b91aec7f811bf8d37afb95aebc0944dd
BLAKE2b-256 6d560a4a70beb066e8676289cc7ba20e8ea73d9bfd0b00c3422a6a321bb49b01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4910efefaf57273e51c5eafa8eaf6837fd140c701df687329dae52c598a1faf2
MD5 8077c751cdefd7012e5e8e5296a584f5
BLAKE2b-256 9cc97d13a925001efa77af1fe7a465124826a6e58bd233bb969244ef05b6a7f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-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.0a1-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.0a1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aa15110aef3f8b9519ec9eec213f8871c2c52e7dee427dc5393af92402fe9fd5
MD5 138817bdf3640c04daa72e90721aebb5
BLAKE2b-256 f99ba453c1731a12e2793a4602bd833cfaf4065ed7016916b7356f16af22c343

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 95ee902b5c65e59240163e33e30321019aad0173ba9b77fa0f2ede6e2fb6231f
MD5 aab2acf08326be89c3d1fc938659298a
BLAKE2b-256 c1452cf268a81d6a0c2f94254bb82099b6d8f8c811c3a32f67c36ccf714e1d93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5f06632b5e7ec4c943de6ce875fb8ebd4273024b80ebc20f6c05b165c42084b2
MD5 90ffd32592305c9946e41fc10144019f
BLAKE2b-256 bd7dce3c7c05bd2ffe64474f8d32107e354f59149bb65db1fba353d8236d1295

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5e32b2da5576e5340f31a874d7f4206a03d7741398b55b171e54089bd54c178a
MD5 d1460a58dcc7c66fafc1a3f687730ce9
BLAKE2b-256 8113b6da74afc5022f9d5a6e21e2d2b52501609d09b1eb485509265e908a1278

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ad3b8333a90ecd0cfbce1a9527fb8f79b5324fcc217cab550f44209aacb6e4dc
MD5 e82dd2c53f99880673a1f7b7cf6503a3
BLAKE2b-256 d2789199161cd2582aedd8395714a9ed5a3c242d9ecfb84ba0befb38489ce905

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 74c5691446a2f81e90d83f159cecc16ffa9e8e94502a6dd070f4d504727b2510
MD5 8e09ad0f1b92468399c1e8ca40b6cdde
BLAKE2b-256 266d8421561baa374405dcf2cb6f3c1f75c9142f78c1e778ae6c36dadf947588

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73744d94c446722195876058cfb91af8900c5bd86d383c2f7206e48c9a62555f
MD5 4ea753533dbbd8e444d9453047b6de23
BLAKE2b-256 99a4d183e03836e7d6b0e6017bdf9e6ae702fef760f70ddad1bc3b320e38cabc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b4f6283eda2dbdb77886921ab56900d7c1f87544278d1f89d1a2ca4db4480bb5
MD5 23059f893092ab1172a21d4b6ae48ab4
BLAKE2b-256 3db4c147c43e5371aaa8e736201b6ead051896a984c6faccef51c2bb2aab99e7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0a1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 13.5 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.0a1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 78c207aac3d86ab97df3af256045dafce8b12eb3e2488a0bc52d39908ee99294
MD5 46fadf2a9d561e8f859fdd79439cb5d6
BLAKE2b-256 c40a8206963f2c86b17d3f7537dc1912216bca58e972fa2c8371b819d6e37b3e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0a1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 15.0 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.0a1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d8c2038b27167b088d9760fba147779f2cda7cf7895355293d0bb89b954def71
MD5 8a3b9a071b1261b099758cb93ccb90e8
BLAKE2b-256 408a22aa82aabde46a2204721117cc48858735af1263245bdf78f3a84cd4e144

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0a1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 13.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xxtea-5.0.0a1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e539357eef7f170c597812531558c02494375b64d7848f9d044a39848ea7ce44
MD5 5d619276894ac4e38ccb8f20f5d5de25
BLAKE2b-256 e0cea784c50391039483767cd2d068747fff3b10aab7f4209ee94494fcb3626f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27a88e243441c5d8d3c86cd983832e4e9ae7999350c9c5852a69f53098040ed0
MD5 d7c06756dd461e45d181a4a9516f75c8
BLAKE2b-256 c19c0b956f7525d404bebb7eaf07b163b858e19124fe7b69a42c29d6f1ab25ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ff78ebfc3496b75998f04f9a214840dc7dff7a80fc1f101536fd1e1a2787bfb6
MD5 2e7fb2ae0238523e454bd17d40919523
BLAKE2b-256 b8b1f6b60418c1337c64b795a572484689cdc9511e20e47ba95097d826951e01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 bb2bbcd1aabc1001c8b697f89395c0f01e5c239c265795ea85eb89af7fc84e72
MD5 88e4700e9281afcb6784316aac811633
BLAKE2b-256 81362dde6aa759e624a8e3dcb58fb07d479bc2168a977679b36bb1196240c532

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 271c3b526592909c914971cac09b9778b1a44cc8704fff985d8942c3f8e29900
MD5 d396d9a681d33d680f0d04f982b56c91
BLAKE2b-256 96e46846965fa045951bcc036f6b45c1a41da00524e06adfdaf802f5b46e8f53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6fc5839d9139134e7b5191bc04d110677097bef05adf378af71320f1f706f4c2
MD5 b0c7064ca64a5dceefb41126715636f3
BLAKE2b-256 8751e9520fb56a8ce6ae35842f48c41f9934c8eddb74b4d56c89a12213f7aa4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c5948fae11da785681c8b37ad625f2771979735cd835c6f1b17f6824535ac382
MD5 556b9491b8eb504499d475ae876e9fc6
BLAKE2b-256 30ad534c523c39913bfcd819dbe73b28b5256c97e30394458b3758fba11ec7b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d57c09da05c2da95300ad1f8eb3975e140a61014ecbd95157aa8e68d7e2f3c23
MD5 8a4431a8e4ad33a51b290d34d8d172e9
BLAKE2b-256 c80ce9d3c9b8bd41d7cd7d86b84cac82d407243e02e111b9faab9d3f4dc1f96c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4cc9e8673d2d7fc91090d16315da29b1012f49018b4b68df913ce6e3e1787538
MD5 802ea6b1e4a53bae90c4facffcd18e67
BLAKE2b-256 10ba607df8316e8ec8585b3f98e2e9a35e04cf004c2d928d87d0a587ff4b4202

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a1-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.0a1-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.0a1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f7fa8410bdc4e47b09c91ed57826a8b6cf0c77755745c74098f3d757128c5d97
MD5 763c20334895492190b63ae6761b2e61
BLAKE2b-256 9aa8a5f6020e2ade22ea4d3a3cea15b0a972bb9d9ce95f85401c1ba92cb2ab4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 bdc4d55a3fbef292174475be66c11ac5cce4eb38e9ef0e3ae5da7e4c18e56bdd
MD5 4a7454a52e2dc99f0f6352b648d76319
BLAKE2b-256 abac115017cbf4820095d51cec59627317a2c1861b8277a298e8a0168b084fa5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 16a234ecbd19eb87d62ffd0a093d3214c0fb80984dee718c3612680dd39e539b
MD5 f28fe160343e57404c894260a996dde0
BLAKE2b-256 ebd4a90fc912daeff9b8f9128fd59170c95225426362df8c45b036cf90ead85a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b5d6cbbd048802595c18dd03e064b52858eec5e9dc9dab8ec5a7dc536e5a4250
MD5 64f9793624a29dc76de851ef13bfe306
BLAKE2b-256 8b9b3f8bc29b96680e2f1b7be533307be4f2c5fd1c351ca765782ff6f15a26c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c0c0584b6540a986c2de2c19610cd011a7be2921a368459ec8d28547c0e6671e
MD5 96114723d3f1fe48d2f7b56670173919
BLAKE2b-256 fd1dc2a3a3424feef288a2aa9bebf1aa9f68c654a698cf5219ff74dfcdba4e80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d5357e94bc2b15e5e2c015eb653bbaf6a1aed4b1977f6eeaee8e9bb03ca6c0f2
MD5 2fddc18bcc93b81bd6b2bbee1a083cad
BLAKE2b-256 cb237153bcbfacf654baf57cded10af6c90360cd89e9c18b95d20e51c2d4ccb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e0048f3d427d920ac5a4edc6e6f71e3401a1b8a484c1482ab03918f1edd278f
MD5 23b714d42d87f64d28ca4c762c25db9b
BLAKE2b-256 d71fedbc71fcd3117e60981b31f4554034d44d91556a0db89ced4faa7b9f55db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c3c6c168c3a209b79e852a7d4942d7c2f716b568abbfa8609b91e7944ec2ed35
MD5 ba1db3cd4540ae0823f1cd9328dad9dd
BLAKE2b-256 9e48c9a6434e267e674f85f5db08660bcb756b5bce107d56cddef0ff87eb043c

See more details on using hashes here.

Provenance

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