Skip to main content

xxtea is a simple block cipher

Project description

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

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

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

Installation

$ pip install xxtea -U

Usage

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

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

XXTEA Type

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

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

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

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

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

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

Padding

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

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

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

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

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

Rounds

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

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

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

Catching Exceptions

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

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

Project details


Download files

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

Source Distribution

xxtea-5.0.0a2.tar.gz (19.7 kB view details)

Uploaded Source

Built Distributions

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

xxtea-5.0.0a2-pp311-pypy311_pp73-win_amd64.whl (15.2 kB view details)

Uploaded PyPyWindows x86-64

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

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

xxtea-5.0.0a2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (15.4 kB view details)

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

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

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

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

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

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

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

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

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

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

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

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.0.0a2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (11.7 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

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

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

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

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

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

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

xxtea-5.0.0a2-pp39-pypy39_pp73-macosx_11_0_arm64.whl (12.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-5.0.0a2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (11.7 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded Windows x86-64graalpy312

xxtea-5.0.0a2-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (14.8 kB view details)

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

xxtea-5.0.0a2-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (13.9 kB view details)

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

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

Uploaded graalpy312macOS 11.0+ ARM64

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

Uploaded graalpy312macOS 10.13+ x86-64

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

Uploaded Windows x86-64graalpy311

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

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

xxtea-5.0.0a2-graalpy311-graalpy242_311_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (13.6 kB view details)

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

xxtea-5.0.0a2-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl (12.7 kB view details)

Uploaded graalpy311macOS 11.0+ ARM64

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

Uploaded graalpy311macOS 10.9+ x86-64

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

xxtea-5.0.0a2-cp314-cp314t-musllinux_1_2_x86_64.whl (49.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxtea-5.0.0a2-cp314-cp314t-musllinux_1_2_s390x.whl (55.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxtea-5.0.0a2-cp314-cp314t-musllinux_1_2_riscv64.whl (44.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxtea-5.0.0a2-cp314-cp314t-musllinux_1_2_ppc64le.whl (52.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxtea-5.0.0a2-cp314-cp314t-musllinux_1_2_i686.whl (48.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxtea-5.0.0a2-cp314-cp314t-musllinux_1_2_armv7l.whl (51.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxtea-5.0.0a2-cp314-cp314t-musllinux_1_2_aarch64.whl (49.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxtea-5.0.0a2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (44.6 kB view details)

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

xxtea-5.0.0a2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (50.4 kB view details)

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

xxtea-5.0.0a2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (59.5 kB view details)

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

xxtea-5.0.0a2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (54.6 kB view details)

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

xxtea-5.0.0a2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (49.9 kB view details)

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

xxtea-5.0.0a2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (51.1 kB view details)

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

xxtea-5.0.0a2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (48.6 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

xxtea-5.0.0a2-cp314-cp314-win32.whl (14.3 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxtea-5.0.0a2-cp314-cp314-musllinux_1_2_s390x.whl (50.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxtea-5.0.0a2-cp314-cp314-musllinux_1_2_riscv64.whl (40.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxtea-5.0.0a2-cp314-cp314-musllinux_1_2_ppc64le.whl (45.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxtea-5.0.0a2-cp314-cp314-musllinux_1_2_i686.whl (40.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xxtea-5.0.0a2-cp314-cp314-musllinux_1_2_armv7l.whl (43.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxtea-5.0.0a2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (41.3 kB view details)

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

xxtea-5.0.0a2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (43.9 kB view details)

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

xxtea-5.0.0a2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (54.6 kB view details)

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

xxtea-5.0.0a2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (47.6 kB view details)

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

xxtea-5.0.0a2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (46.0 kB view details)

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

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

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

xxtea-5.0.0a2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (40.0 kB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

xxtea-5.0.0a2-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (12.5 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxtea-5.0.0a2-cp314-cp314-android_24_x86_64.whl (13.3 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

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

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

xxtea-5.0.0a2-cp313-cp313-win_arm64.whl (13.7 kB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

xxtea-5.0.0a2-cp313-cp313-musllinux_1_2_x86_64.whl (42.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxtea-5.0.0a2-cp313-cp313-musllinux_1_2_riscv64.whl (40.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxtea-5.0.0a2-cp313-cp313-musllinux_1_2_ppc64le.whl (45.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxtea-5.0.0a2-cp313-cp313-musllinux_1_2_i686.whl (40.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxtea-5.0.0a2-cp313-cp313-musllinux_1_2_armv7l.whl (43.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxtea-5.0.0a2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (41.1 kB view details)

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

xxtea-5.0.0a2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (43.7 kB view details)

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

xxtea-5.0.0a2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (54.6 kB view details)

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

xxtea-5.0.0a2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (47.5 kB view details)

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

xxtea-5.0.0a2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (45.9 kB view details)

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

xxtea-5.0.0a2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (44.1 kB view details)

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

xxtea-5.0.0a2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (39.9 kB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

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

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxtea-5.0.0a2-cp313-cp313-android_21_x86_64.whl (13.3 kB view details)

Uploaded Android API level 21+ x86-64CPython 3.13

xxtea-5.0.0a2-cp313-cp313-android_21_arm64_v8a.whl (13.1 kB view details)

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

xxtea-5.0.0a2-cp312-cp312-win_arm64.whl (13.7 kB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

xxtea-5.0.0a2-cp312-cp312-musllinux_1_2_x86_64.whl (42.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxtea-5.0.0a2-cp312-cp312-musllinux_1_2_riscv64.whl (40.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxtea-5.0.0a2-cp312-cp312-musllinux_1_2_ppc64le.whl (45.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxtea-5.0.0a2-cp312-cp312-musllinux_1_2_i686.whl (40.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxtea-5.0.0a2-cp312-cp312-musllinux_1_2_armv7l.whl (43.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxtea-5.0.0a2-cp312-cp312-musllinux_1_2_aarch64.whl (42.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxtea-5.0.0a2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (41.1 kB view details)

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

xxtea-5.0.0a2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (43.6 kB view details)

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

xxtea-5.0.0a2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (54.5 kB view details)

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

xxtea-5.0.0a2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (47.4 kB view details)

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

xxtea-5.0.0a2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (46.1 kB view details)

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

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

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

xxtea-5.0.0a2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (39.7 kB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

xxtea-5.0.0a2-cp312-cp312-macosx_10_13_x86_64.whl (12.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

xxtea-5.0.0a2-cp311-cp311-win_amd64.whl (15.2 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

xxtea-5.0.0a2-cp311-cp311-musllinux_1_2_x86_64.whl (42.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxtea-5.0.0a2-cp311-cp311-musllinux_1_2_s390x.whl (50.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxtea-5.0.0a2-cp311-cp311-musllinux_1_2_riscv64.whl (40.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxtea-5.0.0a2-cp311-cp311-musllinux_1_2_ppc64le.whl (45.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxtea-5.0.0a2-cp311-cp311-musllinux_1_2_i686.whl (40.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxtea-5.0.0a2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (40.9 kB view details)

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

xxtea-5.0.0a2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (43.1 kB view details)

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

xxtea-5.0.0a2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (53.7 kB view details)

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

xxtea-5.0.0a2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (47.0 kB view details)

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

xxtea-5.0.0a2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (45.5 kB view details)

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

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

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

xxtea-5.0.0a2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (39.7 kB view details)

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

xxtea-5.0.0a2-cp311-cp311-macosx_11_0_arm64.whl (12.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xxtea-5.0.0a2-cp311-cp311-macosx_10_9_x86_64.whl (12.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

xxtea-5.0.0a2-cp310-cp310-musllinux_1_2_x86_64.whl (43.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxtea-5.0.0a2-cp310-cp310-musllinux_1_2_s390x.whl (51.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxtea-5.0.0a2-cp310-cp310-musllinux_1_2_riscv64.whl (41.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxtea-5.0.0a2-cp310-cp310-musllinux_1_2_ppc64le.whl (46.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxtea-5.0.0a2-cp310-cp310-musllinux_1_2_i686.whl (41.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxtea-5.0.0a2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (42.0 kB view details)

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

xxtea-5.0.0a2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (44.6 kB view details)

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

xxtea-5.0.0a2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (55.6 kB view details)

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

xxtea-5.0.0a2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (48.5 kB view details)

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

xxtea-5.0.0a2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (47.5 kB view details)

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

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

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

xxtea-5.0.0a2-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (40.9 kB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

xxtea-5.0.0a2-cp39-cp39-musllinux_1_2_x86_64.whl (43.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxtea-5.0.0a2-cp39-cp39-musllinux_1_2_s390x.whl (51.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxtea-5.0.0a2-cp39-cp39-musllinux_1_2_riscv64.whl (41.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxtea-5.0.0a2-cp39-cp39-musllinux_1_2_ppc64le.whl (46.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxtea-5.0.0a2-cp39-cp39-musllinux_1_2_i686.whl (41.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxtea-5.0.0a2-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (41.8 kB view details)

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

xxtea-5.0.0a2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (44.4 kB view details)

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

xxtea-5.0.0a2-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.0a2-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (48.3 kB view details)

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

xxtea-5.0.0a2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (47.3 kB view details)

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

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

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

xxtea-5.0.0a2-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (40.7 kB view details)

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: xxtea-5.0.0a2.tar.gz
  • Upload date:
  • Size: 19.7 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.0a2.tar.gz
Algorithm Hash digest
SHA256 3adc9ad226de1c4a991411d6aa7c823e3011432190bdc0cfe3a12cd7b3190978
MD5 0f13427ad6aab22e9f270fef791f7c0f
BLAKE2b-256 3f4f7fec758d6cc53d9ce115c7165462323b901e0e853293056090ab53cb03de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 84dc66df6cac0baef4431bde3871d54b2863b171ac2c4d7b53f18accc1f505c9
MD5 54826a250ac8884b80dded5927681835
BLAKE2b-256 0573bdd492aae1e35597b110e3b0960022ad8dc7c8d134fa707bdb8c1ef057aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a2-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.0a2-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.0a2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9044d9c93c38bcb240a61eb1962ac028083fb1155c69b9f6db082303acafaca8
MD5 0b80b83d05d4ab6ec3e8b68bb4961fb0
BLAKE2b-256 9fe98ae5ee4341d4e4fa11d4b8e9f309bce0a65d7c02b2c7ec3a94c37a7914ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1c501e0d88771bdf6b7a9ee9c82afecda8d1fcd4b7194d318dae0c7f0e32c70f
MD5 26054f13f042af5188fd0c9ba0bd932b
BLAKE2b-256 f6046481d3406b716444fb46cc39ee54912efa0c0b5e25ad4e055cf82c5274b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 562c0bbf49efa1eeda6dbaa848d38df95e74d5679b26ab8677ae134f8902aa89
MD5 d858b6008bfb02c15910d5333cb087f8
BLAKE2b-256 d799ac52c2177a5cae693f9f2e109caca6da4873bccf941c63eab3737f4262a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2835df84c686bd4fc2db7cbbb7854d1ae7c69b5f305265b9a5238a62525187e1
MD5 759d6a77514e09d5119f3f464a9d9b0e
BLAKE2b-256 d116d5550e58284e49f02099620acec9ccbf6d83183f3022e2960ca5d86ac004

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b31ded918adf5c798975bc9cff20673d69ec35b15c22e01d9936fc4762d20100
MD5 837e1ec037badb93719b21235e0bf06f
BLAKE2b-256 df3a5e8cec50459e40e7072ccbebb9875429d719ce5f384fe6cc1b4e73d438f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0c5c6666f7ee597232793c73361a76ca5500ef639a40ed72045e3677ea277db5
MD5 f50aa834b98a62b0c490f847830c8553
BLAKE2b-256 3329571e50565cd35a177f61e4443619bd367eaa8c48f5effd990eff44d82b70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6899aaa93f392430e1c469acce1960c845d9ec42752cf38306e9ea1191daefc7
MD5 54330438fc9a83b7bdaa0714ce22cd15
BLAKE2b-256 9b609a154e76f609010ce1d9c75f3e45b084a0ec504d6f96f8028063093047bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a2-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.0a2-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.0a2-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b2a4270a88409d6b3d90d5291a9c3facf85f734b4618d065db840f776dcfce76
MD5 d62cbd660a003777ca13b8bbe080c803
BLAKE2b-256 3c5620afcda933b33acb57e610a7c8f87b677bfc45c9def4eb2943b5c55cb9c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7c95250db4dab826483bb84942bbeacd73f2f86001966806cc870f59db60fe50
MD5 b38f373ee45ece10bd974db6c10366ca
BLAKE2b-256 a72605da1b4fad00062e2f2c0f26d09cf56c3c0c231661a3c3c1ebc69398ba38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33235341ad72df4a997a185e4f0f010b74ae95af7a983fb2a5a2a509a7c1f60b
MD5 308b217926a5a4f890b9389c9417befb
BLAKE2b-256 68f0f122cc45080753cd6d3512b28bb4f75cc4928ec11b539742ae9cdead6f8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c787ceaa25ce01b5f88113471d9b37e03464c8d989c122fb1858e1d15233ec9a
MD5 fe8e67e9a8ac3285c3287fe16dbdc81e
BLAKE2b-256 80bca95230a81ffcb419ec07d38e9f4934824a2dfbebed0897074d189df17615

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 67417f08a90423c81ed07eb333a501d976329ce4e0b23068d8996067a519f1b8
MD5 8a975f19e68f867c131727bca152f863
BLAKE2b-256 5c19ac802c85c6241cfb259e434fb84943942e5543d982af665c601f2f7b766e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b2276f17f3a1ddad0c196f7eb792a48fe142c56337267f86f02d56e7f79add33
MD5 113e5270f7a5d3ad1288fea7f2ad1fa8
BLAKE2b-256 6236eb2fc72e508381a0a1bc8b1d652f96dd70ecd42746a9af4ec3de1dfbf3e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a2-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.0a2-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.0a2-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 bfe947104528ebc6b5178284afbc1e3e7b063d860b52c0fdb9bb1b56f362e024
MD5 34fe3c552bacec184308b809d6e28f3e
BLAKE2b-256 d4203532e0cb3cb037c5cbf2fbe029f534ee475a080fdd19c31d649b7bd07b62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b96278d6875b9adfb7ab07f068c8b9f7b0313cf577fbc884f5db668918bf29e6
MD5 2fa92a1e20677a4e7008a23cadf771eb
BLAKE2b-256 ecfe041d53f15906ddb3207d92e543d89b85297869f1b70468dd4341edf8e698

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e80d82e6d9adb71483422b2af88e859300cb184eca44bf1cd1c74bc2884b6542
MD5 e11531431329d2047b401f475410532b
BLAKE2b-256 294076850c183da93b16e6387a6c49b4ae247d993f8336f9016c22c0fe8bb352

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 66020e1678dafba173bfd1264f15d1f71e0b64522671ba7a129d4f2be16ed4a0
MD5 4ff518dd3987f9ddf77b30e10616e233
BLAKE2b-256 72f854d821b2bca96ee89f287e63ea720af719a0dc136692461717174b3696ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 15287998ae2573c404294e75a5577b41825d3a0278f8663d556a20d0fcfcf1a4
MD5 344006e30f013dcf1934a6c5aeaaec1a
BLAKE2b-256 94cc00acf4147c15eecc8de6e0417e3460d09debc9b1b25192c439261219eb25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 94062c2ea03be712f6c0104ab72180e5c24e1f99179f01ad5884bd5ac4075910
MD5 1027f9ff1841b0c75e352c4b1a2568a0
BLAKE2b-256 8d3c6837100ea580084860f6f46d8e2266725f740364c19b3cc8ad4c6f99747d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a2-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.0a2-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.0a2-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 39a4b6143680ec98a3d9d45565e106334f649a1dddef7ddbc838990001757214
MD5 1ce6617991e953456f6de145db026a48
BLAKE2b-256 aebcd015f37b7694837416a07af515cc2ba809c4a941a3938948141aa6a9dd9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c0faa510729dcea1694a28286f39774e270dc3c47588d16a4d67adb5826c803
MD5 20470f6e9f6871d0f69f6e3d9a2d1fb2
BLAKE2b-256 50a33dae1f558dff728fc03e8b613c32101cc7d16cd3e844aa9f4f69c2863533

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c9cdd1ae81cc4d81f1dcd7767a7d30ab7a28db9f762a7ff2aea36eacb346a08f
MD5 3719c217f51c4ce6abc9e2e0db82620b
BLAKE2b-256 da66eaef4b418754e38680845ca995023e08b1e725df9938e31674d936804e00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-graalpy311-graalpy242_311_native-win_amd64.whl
Algorithm Hash digest
SHA256 7404b23be61595c2a62bdcf44acf39c48200a3f816b29551e02227f18d81869b
MD5 4bdec0efdfe0c99df3692db2faac4bb9
BLAKE2b-256 483361b5b8bad7297d74e669ceada41ef9c371db61c1309c9db298755d8c8e5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-graalpy311-graalpy242_311_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 87660374ea3c2b9df1148d124a55b86f5976df2f4561b27fa4dd92e36b641e9b
MD5 67e3d93e8e5ac7e97de596383197f45d
BLAKE2b-256 829ef15aa4758f55c0f0e28b617e9d440452593bedf0412697aca596c39bbaf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a2-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.0a2-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.0a2-graalpy311-graalpy242_311_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 60c1164f0d9141e76f99b5e6394a74effe5fa2cae951bec85ca865cb3878182c
MD5 ebb32ef9cdedd47daabfa42663119570
BLAKE2b-256 3b98e42147706e6f2aba7655fa60216c272cbe4ba2d03b0a30486da9061625ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5856ed292274088793bb5eca32a37911ed3d588c5d44415f56e1070a659253ec
MD5 822fb5617542f6d900cc56a20c634c2b
BLAKE2b-256 ed640d16c107769f999f41ae33d22efddcfeb277fa1c27442b62eecc3c953e6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0710daa186a63095bdc3f5320f333ad7642f01a78c72dd047e0da0f08846d6f5
MD5 8c87033fb0f287f5eb65f2b972f0b390
BLAKE2b-256 8ec9617ad05eaccca63a3d13becb9b4bc08c20001c30db6ed2e4de8de5f336cb

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 eab6c43584221bb6ea456a83cb4d5368777d25443cb18b6f82b8723a6d5dd857
MD5 04f6d865fc328af1c68d18edcaeb51ad
BLAKE2b-256 bff53a6d925d7baf3d191124640ee3e78551cca4b1a223bc787c061e067bb62d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 84b4acb9016ed17af7da2696fe256d567824cddc40d7848992396db4ac9fbeba
MD5 04439a462dcaa81ebd713927d163b68c
BLAKE2b-256 c5cd452089efb03e5caf9e3f6864c8a9be7f74e2b3d789ca079704822cefe8c9

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 a15e910fc6d2e3935f4cccdea8a7f009d7627bf73598805fcc5804c73ccfc4fb
MD5 a72b54fde6c7ce6f9269d79ea927fb83
BLAKE2b-256 b6ba2a88d5b27fabc928c6ac3701e5a213d1c5ec9415dc974b3a79e404cdac0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f14b8bdfa9ebe9b6d406cde1e46f4066b77ccb83f3a47aa05feafcd9427bd3f
MD5 eb7baf9e54ed3829ce9345a26b6fc486
BLAKE2b-256 a3b4fbfaf538cfe2bffc57542baf8208ffe3c65a5563c99535230f059a9e2ba1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9e7da57a68155c0ddc030db431a0f74daceb80648a788f8aebad2308e2e0b4cc
MD5 98f02561dea7a3409279447c4f9b0401
BLAKE2b-256 9bbae62c24a3b3cd12b946ba3df8f33a5a3991cabdf81322b6e7aeb9105aaaba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 dcf7a9bfd42acf49c2c4b296c17d950ca9d71b52c1064933390e0db559832b4d
MD5 1006ed2e24e85569a824c6cf1ee4202b
BLAKE2b-256 a3da832db9a1bd946fac4ada6998b0c505f6712c80496c16bda2a040a6475af6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 10b7ae6b32e4508baab41ff7d90c6be47b0bd7660a2d95766eb5c599991ba9ab
MD5 d55ad8e449490c667e0020cd3fad296e
BLAKE2b-256 cf56130b5e7dea1d324e02f2cc0b7ddccddf3ab04ca5f1b1b532b73b1cce208d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 506a0ca6bef810b97ecd16c5084645a3133d65a61b352ba7a8b04a72f0e4e789
MD5 43222d7e5fef726217c21b4501600aec
BLAKE2b-256 9d01caad3bab72c327ee6e9325f4011ed73b3b74b7fdfcb56e1fd9350a7d1c0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 93e2dca83095a07f53b54b29a22802cab6e0509024cd225f48d62b9a8f62d86b
MD5 93de1cf32f2a08274d518335775b1eb3
BLAKE2b-256 d1d7e67bf4a430babd66794a5ad6020ac3767cbf5fab816637e1d68af30ed997

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1cf34b2cd12cee64b54bb20a4faac18afb427ffe96c81e742696eec3f7ee4461
MD5 34f3c22d279f2ee2d978f4ca37fd392b
BLAKE2b-256 4a45a4064d8f2301398cb5935d0b0178cd499f3a601b52cdf7bff618094aa968

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b86c9361fc4579ec50a790467cff25db68d9c6f7211be1cd3b519eaa02d24e97
MD5 5f5e02466517bef3d51ab6baf955469a
BLAKE2b-256 b9fc8ed0531cbc837d0e71ccc7b3921f7d1545cdbac797c96c61732b93aa8fc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a2-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.0a2-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.0a2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 37d7e0a6bec7d923f04d7400c9655984c0c2bbb530f607aeb20f66c1fa0ae45b
MD5 818f9f409a887bace7b285348507a646
BLAKE2b-256 d1f4f473393065926c3e07bb03e240ce794161a43ceefb7afe3650ea9da4642c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 dc385e18a61f85ab66f50cfd2b5cc790517499ea12d7ea73ab1833f3c74ba307
MD5 485df797bfad9115dc87094b5af5b82e
BLAKE2b-256 04babaa7d49639e22f9f52c11f0f0bd46d6e5288a7f59da8bfb65b109a4152af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 12422d34632cbf381c1bdffacf557ed8c2da405bab81edb8827f1cef9c1f158e
MD5 5507f34bd7240273f0010ef206024610
BLAKE2b-256 0773fa0fbeba22a1216d6a57da18612872b642b9275741412ce92f1c718466d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ebe3cb83e63cd42778c402d76a97eb4204dff87c4b3d39d77ca2ee006c507e49
MD5 ccf9a33b86a716dda84a0a8b845dca24
BLAKE2b-256 d173568843d903fb32cc06eb43be5f7fe1c77a3cd75104392a49bc2d2520c039

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 61d8851ad67cc7f9ce9dbad6db642ecd77e9f5798a922cb68385d0f84ede2162
MD5 d351c963302baff5a6090a2f380f7b8c
BLAKE2b-256 d19651cf0afebcc20e7f1209702d17ec8e1f455e3425c165365ee5c3943faf55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 2beb7ba75275159718c1c6f3b3b223ad264b4d09a7ca1146fda4ce5c1b6eafa4
MD5 dae250c5cc92a23703ccfec88bdfaf87
BLAKE2b-256 b2335772aa147cc04ca96dd0ce6adfc7d21f3b71165cf963c21243f025fadb8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5385707dd8291404aa987157e7cb49629e5c23629b6745efe77ad6d8ee3c04ae
MD5 65f149eba18ca55090713ca336ab8067
BLAKE2b-256 2d14ba6e78f14552747724286cc7d3e4181543be83b5e3e99591a79c1b3365b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 614883f80798c5a052ce0ddd042a809648a6ba57bf54ff8754ccf71be0e8a2b9
MD5 33d97cb28da121fa501f634728875873
BLAKE2b-256 125e716e449f540debf9afe10edcf53fb39ca89d78787c519e0d5388f292c688

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 3d3dd1f1ef28a6abd698bd043ad2dc869ae26497f241dd7eb95d20be87fa9828
MD5 143383b13ca4095befa6cc354213eaff
BLAKE2b-256 fcd0eca53ca94a995dbce888c671011a891f484b3ff851f853ff78f1bb123bb8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0a2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 15.6 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.0a2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 45c7a268c71f1876d7b93ca0866111e4ff356d54d88fef3959e78490a280d9f2
MD5 1f0b21cf8448b6a6ec1c89b7b441fe2c
BLAKE2b-256 dd514557448cfb500f8deb4021e3b03ba04eb4f4530f42fb16a734b01d94d90b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0a2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 14.3 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.0a2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c5522f22dc57a8a95b618f8cb3141ac8c9582be3835d4bbee552e1291c750d69
MD5 02d4438a1826503a64fc3300851060e7
BLAKE2b-256 39ffd85dcd8944f81f2ecb391b3c45329fec377adb345985b430944e227aeb27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fee7cbc4a7bb92983c85ba59a6c61c87a8011e66ac6d098de24c4a1828459316
MD5 44732e4101be01c425a32c1d71c28e99
BLAKE2b-256 874b03060da2c07f3cca174738184bcbef7f771ba7151b1a1885f75e218b943d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 92b1d7b3829bd16a73c042182b2c345956f62a2827f99ec07ac480966fc91291
MD5 9e8adbd6366051c1f599683cbdac46df
BLAKE2b-256 011921de6bc517733e963dfd3fee374701ca844e3ed9205d5967110a6ca5a7cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1c22c978bcf580b1374cea197776ac289ca1f7e21ccc960915545dfde3b6505f
MD5 760f7cbd28538420bfc0dff77152be53
BLAKE2b-256 3f063eabbea651619ecaefdf0c4addb0a53f8344042fc2bc7146bc068d11cba8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b5c05fea9835f81850f5b2f84c105c4ba62641a4a07f4744aca1a3473d97d4c4
MD5 460e58acd6ebe45181c103abbb7481d9
BLAKE2b-256 1a899901a44bea756bf9e701d7d055061a5435e95d6a630f76bf29d57c8734df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 33e3e18a350bf58d39b70b147f8fb3a5c33c9e47e0e81a47a52a7ed73b7b798a
MD5 7d6547bfbb5c7a95e664b5de259da7a5
BLAKE2b-256 72aca68f2eb2f247bee6a045d04ced1222bb8bbd56822087d469cbd956232a8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1681c9e7786af9840730174520a9d73cde5c67d6479e61f0daadd7b235d5519d
MD5 774efb3aee74e20e2e637e0d1f8c2fb7
BLAKE2b-256 3f2b045e2f2c0b82064a506c3fa0430389e39fb53d70e4540edd0ffa6d3e23f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 96c529701eb804f469c79390d767e0d1eaca47409b4692f8f3b500005c976786
MD5 789b525d619852522e37b7d2c4b29a3a
BLAKE2b-256 d27854d48cedbac418065c9b707eaac74126608c8def6d7bab573478df444046

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2ce5e97d30d96aaed76964c1d5ca0e4ea17a6cbc91c013a527991f77e8190957
MD5 2cf74c8ccda12235b3f6d820b5e54b06
BLAKE2b-256 70a17f20887ae2a0c3a2e576d828da8ee679d4e0acba70bd8ec5591fbafe3ba6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a2-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.0a2-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.0a2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 81f3a15aedcab7e12951af4e7174c75d7f6003a7a4ebd88fe2db87240e2c4c69
MD5 bd7c5d50b389ef2631417b9f92d35699
BLAKE2b-256 01b1b73fe55f276992a59ec47017e5f66f35baf76f3310b7895568d04ac2fcf4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 ad4c2d8c741521774125994837cdede64ee35e99725154853f97c2940ed24a60
MD5 2b61abf679962341ec25b4d3bfdf997c
BLAKE2b-256 db3513a7fa8fbe120816b76056a6508176bd6c21718eb0b48f42c41fa8775fc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a773e8baa771665dd33b3f4e5cb7fda83b4a7875d387068dfbd447360b8ba2e4
MD5 a72f2c5ebe31f8b6ab74ba0d28d11ede
BLAKE2b-256 ea243d2b1b9f85482567d3ef9dd78d8ecc723b0c0d21d3ded7adb98db7e7bda2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b7c40e19f406c39747bdc53b0fb1997c22529eb66866b92028e7be2c08e7042f
MD5 34ec2a008248a3707cf36346b6ff4ad6
BLAKE2b-256 6b5bbc46bcd7317a8cda4e29ef9aebf0f9dbf4481d46cba88e6f954bba4fcfa1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c104724d9837594cfe008c092a493691ecbbbe094ac2daefcf987f752f3a8eb2
MD5 5eb8c2f84d754ceb6d804daa4f5cc581
BLAKE2b-256 c7779ad6f15b51ffa5da50580cb57a920c635dd08212d49a792653aed39dfb79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c02eda1bcf9a7217478674c2783a93611a2fe7a61087c484852874af8b9e10b7
MD5 24959a86d4792fe39c643aaeedcd5b5c
BLAKE2b-256 fd93281958e2301952078cab8e02f9b5186b7662cbaba8e36d5e04fa5e5d4677

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62edcc6ee7334a3c42c6d4eb8c844d7cb20675a8678ace0de4c9c75d5f308ae2
MD5 cfa58b2969cfe60584e0a7757ad5e554
BLAKE2b-256 655bb0d6c9f1e4ee40907b821f6dbea95bf2c256c04dc93e8ab047bb7bccd686

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8d8c3697a0023a6570cecaca96da24ee2c5bc21de3e9420d0f07328d3bdb1c15
MD5 2e1f3f2c4464cde356c266f9a9763655
BLAKE2b-256 7b93bded726e870eb017ff083534101829b6af56f876c241c18e5e8c5d810fa8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 f185d454fd9c120c296163e56802d6c45abfb2425a881b268d0ddd1b8a8df15c
MD5 efa64fa44d368a860f30232b83b686cf
BLAKE2b-256 a11c950f272d7d41dd1fae7baa72a8e08d50273fb5318462211c4fc641a5c695

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 594d35318a7d803d87032c11467d167d72a4bc8c4ca17e763b353d2f015e804b
MD5 0f0a88b9c47b2b06f485a0d36fec572e
BLAKE2b-256 76d5009925cf6b408c6a2392d50f745d41b9b8a098dcd99deb138f6e224fc786

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 edc7285c44144f2c1e2cf843f29cbbc4eb2b241b6b68152d48c2d5d5a617d878
MD5 b3d47ec64580940b128bc965af3a7dd7
BLAKE2b-256 54cae0131ca999b417d8bb1ee08939cb9ba4f12123cea1e46269532a1f8cacbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 e98d51bd5747e4bb1cc7c10353a579df62ecfe772ef9b811c61e43c94095c1f7
MD5 5812d98e87ec13782e0917af970f93fa
BLAKE2b-256 676349e6a5491fb627a2b3dc53275a98e2abbde76883fe147fbad3970f8b2102

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 a9f81fa1fb7c803435d2e30a637dc54e40a883fc779882e99a3ffa2f22d87cb8
MD5 4d5f0dff685b36247c484403edcba5c0
BLAKE2b-256 a86c1ebed51677fb783404cb51a29673331c96a83dd47433bfafc70b1802d390

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0a2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 13.7 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.0a2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c1ebe27db92b688d58493b177bb67908250e2764c10e431bf8f59603ebafccb5
MD5 25d72a75defb13eabc54bb610ca62996
BLAKE2b-256 de04ec6eeb6b21c5e8682ca7cdda5994673d51cdb7b435c4a7593c776e8e0fff

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0a2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 189eb5e0ab886ab72d3003ecb0e50d1d44d620e0cc80d3f89d85dd0f48d7f019
MD5 e9c89e0127348aa37d61edd977de237e
BLAKE2b-256 2800c115bc9f05cfc7b3dfa30feac826f8797c770eecd45e2e4c85911d38a73c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0a2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b4690b4f65ae563382dbdd582f328d187cbc05ceebb3062259be89bbf85e4c91
MD5 a65f06c25a534f8081be6e20b48164e8
BLAKE2b-256 dd28bbf19752e886f433d1298141d8b8a72ea917a99bf6b902fa838d749462c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fb77d752b42a8c5a8f207f77e5287c87b1932d62be8b3500febe8e2d813777cb
MD5 1d1aab9222c29121706020b42f0d7263
BLAKE2b-256 ef37ffeac47d7fd20e8920e5578f27b5929b215553d381b177d34090065a4d65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1967ee2b8865a2093c683fa8ab07c79f879d21444c43b898a118a7c68315b661
MD5 28213976cb414df909f2117b98c8de47
BLAKE2b-256 2e7cf540f7b8e2853b698c852e45c270bce427268d30995099f0b991267d3e98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f05513e1aaf6860d54a60e6ec92b6693fcfc284050ac239ad0240830ebbbdfea
MD5 1f52d53aeef614a04a955567da0ef74b
BLAKE2b-256 4f92d4f15267cfcd9ad9daca732f7cb2c49093b5ec16cb21bcb080fd5e687c76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6cf262eb59dd3e5872c740eba2828877c493c88104795added60bc3c6919e24f
MD5 e27e25e16fc6e375b780422f6aa5fa2b
BLAKE2b-256 511cc4a06b2bda330c81786fa3a21d014303970f6fa269e691e973a3078222a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 baaaff92c5a67fd67cd9056c374e1f530486f160e395b0e11fa3a0304fea4609
MD5 2edec608a1cad4397074b951e82e7504
BLAKE2b-256 133d62d9243650918bdb4f2ddf4645e3410eeddb3f442acef29509a7ab0840e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3ebdb635855496541f1cf7f2c3ceb5b8f14f121291c15aed77d7f52105da33f9
MD5 174e321aaf6180fddbe006499c9c5d65
BLAKE2b-256 3f9a7c49fb70f9d7aaec4c466499e3a090a1a1c6ed21a594d0c7bed1f8f2b97d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a09b5e79a8b37a1e4ddc1a0ff3bded26080f89017c401cf96432f83687df1976
MD5 d0e5ef6ff5f50933b7c88eb58613bb06
BLAKE2b-256 c59174bdfdc7cf55b4b5cf271c799f1ba9fbb6b811915761ac9b69f111c87c99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0b8ba8c272e8eb9a43c741ef5ce4aa1f6e1edf89ab9f9251516a3c97eff5f127
MD5 0d25703cd75e3051cabb4b491039226b
BLAKE2b-256 e080421cd5c5bfd6aba183175d9ef3319d5c9d1f064980661c1ae763bc95ed90

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a2-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.0a2-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.0a2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 73308fc24370b949d1099047f7a5fd6d92121818d5928e0640df65ef4fa046fd
MD5 eabb998c36ff18a51199757fcff489f3
BLAKE2b-256 c9a57de3f6ed7e62bdd5476effc51ce734f6a8cc501b8bf2d0281c7f3f5604a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 7fca74a2aca5f261d3eb63ab98dd948d66b252fbefe248b997149a2b5c482b2f
MD5 802c8eda130862c22c6ed6109181e629
BLAKE2b-256 2a71cc38ae9b03cce2b9604a322dc66964606f28aac96a618be0341560cc4a50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 aa890f3b8ad9493aca79a66dc0ae3d6d1d32519949de0b379c30a6e9dbb593b9
MD5 f9f751c45bc012c6c434d02646fbf23a
BLAKE2b-256 824b48ffef0b784ec73d536271cbf77e3dc2fd5497b0025c30bf08e9bd8c9d7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 acec62500cead1ec5155e10776968013e40687534282205ae34a414e25f7353c
MD5 b2bd8c352ad2a1ec5c3f13712f48f071
BLAKE2b-256 0b74de1803cd15293cec49682b6566ebff06c85c6dcca0aa02d8e99ccdaa6935

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9e027a240103aca3ccf9fff184cab7108b59860766fc39108d7ae7f0e8178d42
MD5 62a512c7c07d8ccaa74e6d993f70657b
BLAKE2b-256 c318a920a10df025580595ee0caaa12e5a6efff9c34bf2a1683d193eef9024b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 0ad010ebda4ecf25ca24033f339572177644cd1afa5c15bbf9af7d93f439a0c2
MD5 84e5542a62db04c58cf0438b6105ab40
BLAKE2b-256 1f2176717a0418ad6c54e6b7c8dec94303f9f3d27d3178140520718d4a09476d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f68402987e3bc7653f75ad5b43d32a2f955c188a2ee0b343a747843c358a918
MD5 2031d6bebfa599fd227e043de9216287
BLAKE2b-256 2830c806c42b8768993b7f6308bb002a15278297e0c1d37b6b8f518c46dbad18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c84cee364d781fbede8e23dc551c0d5b65b68161814717432130962eae18aaf9
MD5 d26ec8076c7acca76038c63511b09857
BLAKE2b-256 0c2be8d97ec1dc2ea82cc85f200bf8d70393a2f4c0fb3ee198fcf89012ee1655

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 6cc13a1bbb0b9de61bf4ac3f2ab46e250b82a16e0bd2f6f1e3a9dba45a7df073
MD5 050b76acae0f54ffc6bb3ea157fe9af5
BLAKE2b-256 08c38ace8335c1889e00b532c03cc1b4590b79723eee8457d1239ddf837a8fcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 5dc04e627709849a475e4b593e2dfca12483c96a95ebb6a4b6f733ad83325543
MD5 a4a414142f21f7168775b96232d9236c
BLAKE2b-256 bc651d4215f90c79da64ba6995889bbb96c100c903a80e0e971ab9e37b84551e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 4790b9c7952698e620a0082cd8e6747187de636d82de76c7e362b0a28de8c711
MD5 8bbc3f5b916d23ff5519f8ec551d4b1b
BLAKE2b-256 33bea80e68d8ee36ac4dd0d44da1bdd4aba7e0663f8d25f903eef057e09ff373

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 cd647909e7bb0ee1f8ec8fbb9e568d1e5ef591fedf0210f5ab599a52ff55079d
MD5 ec9f6b61f1a8e8d7bbc56236b66cc6d8
BLAKE2b-256 82740a3634906322515e73012a1ed277f96d0b27120f5ff33306fdb7a06a1c1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 0388adc4a24a1f255e46e8b7d0bab034c28debb3f5d506220111374c3663cb0e
MD5 aa5e28b01bfc43f2ccf47394bdff95e4
BLAKE2b-256 23e2badd2a84f6490c1fb59d51854e957de43622e1fd6b1f4d5ce770c08f81f5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0a2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 13.7 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.0a2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c0a60ec958401ac21ff1413c06e3c07188f7a9729749b6e8c84a57114c5e3ba9
MD5 1e5ccc4c63ced5b4970e572882b69346
BLAKE2b-256 678f5cd26a944ed1f02868190014ee072d3910571a6289e7ac672452214d1356

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0a2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9890b067900fc63c68a21cc459a66a9aa82d8ac725acf6ca0270e1843191dee0
MD5 94a10bbb5a46a9ae7f3e3af83b86949e
BLAKE2b-256 cb7578722d034c35ae1486720481583ef5ab7e9d5eefb8b33d0610bdc12cc553

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0a2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0f8341d04cc5e6e8c80b858093163506749442aa07ebb54f6d217a832bdb7cf2
MD5 1a205092ef1ff288104d72e9cdba46f3
BLAKE2b-256 5d2795145717aa8aadca45607724115f6d9d04adf9936245662e7b11ce152910

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 09319b1c479d1c2f58984cb9e0772beed8b2944b03c5896c0bb657976f6020e9
MD5 ab086f60e2f6b5e7b9e13f4a57e237c3
BLAKE2b-256 e40d0621062b86315fc3a381e2bdb6620f0c681e8de15c47a8016f3af559ccb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 00bcb821b40b5dcac87a8c8821092416ee19bdf52d9e54fb26dcd32a61927ead
MD5 b280028c3513b3809d4a770a8745502d
BLAKE2b-256 a058826e2e19a2fa8d05e1eea868c89b87a1d38328e097af833aae02cb3ea3e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8d6d1d8f58ae09ca8450b446a5de2c22768cac7dcaa38c526b37e26a02311dd1
MD5 0ac8760a50e4b9b0f5fb8e2dda947ec6
BLAKE2b-256 267e8859aba719591c8be95e9691ee7b358ebbf30d6fd0a15ded4e31c022f28a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 362d5858410b30c559a4a731745a9f14d3bdcdd58a3fa2c04df2ab9ec397803c
MD5 aa7726d621c92d7cb42831ed890cc5d3
BLAKE2b-256 27d465facbbf95c086a9ef4a8898facaa9b2ecca09556d3804440188184a2e91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6a88eda69014659c090f43096238d99eaaf48b99573ab7cc0a3a418d10005583
MD5 90942d0137edb8663583ceb751bd74c7
BLAKE2b-256 9dae65c675dbf755cb49f7d2df489ca234b5ae7841e41b607e2579322cd43c64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4bc2a467dec6edc4d53d7d508ee5110dba352cc07e1ba02c5c46220904adf1fc
MD5 465c7f5aabe65c83b0e34b1c0917f1bc
BLAKE2b-256 36410801fe25a7fdc162197e9edbb2d71e65620bd2394b8b123f1d848e931ab5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 292667f5dbdd967e05b603be6e6e1c7b538395d4d1eaa7abdc296435ee4d33b1
MD5 a6f40a6d084fedc2ad7443b425d8b026
BLAKE2b-256 b91456f0e841a5f55b2a3f41a4f7f12b794c55f425424fe9be878a3b421b5588

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c040fc9b8144a0b83db6dca4f91f18f13b09353281353fadcc334b56c6b0d1ff
MD5 d41b3ad6045077d35cd7a6667323fac5
BLAKE2b-256 3dcc88d1a7ab9c4a7b5098ee7a522399ad02c14656d5c644b611eae7695d2eff

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a2-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.0a2-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.0a2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3009b531b6c1d89aa9ede490ab857954b05d45c47d0b66147914d4b1b891b719
MD5 d821fad9b5941213892d4441c000449a
BLAKE2b-256 934277bedf3ab5d52bc053579d428c92b9ad6f0bea1d7eb13bbbda4a962b0d91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3be0fd98f09e8821a1bd006ae5fcae510d4e17de5d1e26f344a057414bcff052
MD5 e327fc051ef0ec4f55a75848a7e83013
BLAKE2b-256 cc49cb0b457c388e8fd51e141327986a914c3c115c9ce211e0542478ee989ced

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5456b935f69bc87ab54e98a75d0eda78ec81708854b009ea2901aa288d21987d
MD5 d8dfe098c4ccef544fa38cdf7f58f6e3
BLAKE2b-256 cbe5283a5fc63ce2662b4fce6b8a05ef933eece4290127702207cb48f2d48829

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 72efc7309ad983b074c7b59ebadb33b98d93853621cbf0449f7fb51e0a70f174
MD5 6511fe660f59758787d74280842f298c
BLAKE2b-256 1a390a95d425c601184cf70fa3292cb7d12520b4c6dc2a64f4fb553dff1fda42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5df8c5fc4994dc9190046d1428674cb98c7658b2992a07910eb4292650a88268
MD5 0e9cd300b9574e3dde6ef799f57841cb
BLAKE2b-256 c9773932c7a283b6bbf3e493958ba1cc17e7c9f4ff8e2fb29771090721474e5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d37ce7e9fcb505ea06c07020d360c010ebe2599207bf88939373bd2d526dedad
MD5 bc9bec5a4ead643086fd9ebeec250df2
BLAKE2b-256 0aa7d1273d746213b16bab103f2afc89163aad8f2ed11fd05f1e05189afa97ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06873da130ba61c47df8bfd18aeed3df8c2b7ab8f047eeac41902160d1c687e5
MD5 b1862e1fcc769b7508a1262d9a237618
BLAKE2b-256 c8aa73c9066a65b6a80add0f14ad4899ad03daeb25665671f02c81d79f5c489a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9f1de6c0766364e06b2d42e3292a39f901fe1e2584509e02daf459e4e5f74e5a
MD5 4554e2889f7888b894fbdc0586df273a
BLAKE2b-256 245c93838b6899272648ca7e68df0026340f83fa2db53fd0de5b029430fbc8c1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0a2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 a0b0bcd1bce3158eba2aa1b8c2f44035beead76a36b55e12c8f01fc3063f78c3
MD5 822794a6a26a950d7b6328b955fbac50
BLAKE2b-256 c886a34e0baeafa1a3df539d310e9c97171e0e32be81f40f11c9d56e1cc6feda

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0a2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 15.2 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.0a2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c67c03350d27f13d87b08b25d969d49b1b4eeb29deff7c5a784a3ae7c9e4e624
MD5 bfc7198fe300180482a3c72537de2b1a
BLAKE2b-256 ae4830fb34550b006164e04b418bbd95e00c7b2cf9eee668f42a2d5b74d92d06

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0a2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a28b7795e13ff0113924968c8c62e915e9f133161a5fbda8227f4f3de6fc99fa
MD5 11ed223ce65621357aeb3dbcba28179a
BLAKE2b-256 e6e52b0e9e374dd0e04de33e1d908280565c849ede40d4904e961b97fa9423ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 454ccc850bae358f3cf345cd7d355442f467c83ba8f5441c5e25c3ea4ecee22e
MD5 a8ed613464f3fa33b625c5e0dbc9631b
BLAKE2b-256 a994d91a8cafed126e08cf5536e2bc0f19930cafad0569b21e19572c928269db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3e5d2aa9978f498e339f3a056ac9bab23c83c79a38a715a48b4f4975d1ef278a
MD5 25eee34bdf4e4d0990affa72d8e57de8
BLAKE2b-256 44fadbad16b1c1277d0c76c321f10ae315bae3816caf83a15eba6d489bc6c9c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 cc8d3cadf0e018bc64a0502c4902d63f1110cf127fe9c110b05edab9ac4dfd7d
MD5 534d9f6a1a1ed39ada2998d195b6a12a
BLAKE2b-256 2abfe0f8693ed5d837e5bbe9adff256bd1913e8b5bfa7f1b62cd62c168934b45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4ea05a826bcbcc2b7a448c42933cc8b1c192bf6b35eb42448b3cb32ab5ba1ecb
MD5 dc7e7f22524210bd1e0f0496017885c7
BLAKE2b-256 16890da88ada65010074d9e0b4ee89c8d6808d4db0fbbee67b414ce649f9d26b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 baf4954f5705424f4c81da2484b80ef32cf86b0115be53c29da229340793ab03
MD5 829f4176e288e8107999ef10602579ae
BLAKE2b-256 57e5ce1afbc2bbe06c6cdca71097d1df9b661b269799049d58634d602a90c1d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e9493fc2e9fd79a6666173a359c3658fee6c8ab4b7ceaff160dbb24bf3e29a47
MD5 ea7df9b45f4b33776fd87e5a606c6529
BLAKE2b-256 9e9d6a9ce45d66b6ca7e2800fc59347fc9d880da55eb88860f7884310483e2de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e244e6ca59d1bb018b818cfe398ea6d8cdb8b89caa266a742ba003b2300e7ae
MD5 3343217e2673e6f3265278400712db61
BLAKE2b-256 14182d829e7566f1daf77866dbbefb852f5707a2fc1d9aa5cb8cbb15902ffad2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 99064306164a5200782a2d26a1a59f8ea7ec23981d3e716fdc5970cf49e08267
MD5 646463c078280da88009ee084ebb4a0a
BLAKE2b-256 f41b9332cd39974e806d459dd4326ddbccbbdfb7903bf479f7d7460d1b7b9af5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a2-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.0a2-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.0a2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7de185653d44aaa55e6f12ab6cdd8608100fc1a2bba4a5e2d2b6dcc62a496d75
MD5 f50fe9f6c8717c44a15724faac9003be
BLAKE2b-256 35b0e7adcb003f8ca84f6400c314c4926802a3c8ba6d8d91f6b13777c445e900

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 98a9388e5c7001b6e43eec72c8a9bb31989403895d8bdc7422142a7bb0ccb559
MD5 ac1fd8d6a9f8e04559a41458293efaf3
BLAKE2b-256 10b7b21512b9cc2056d187709bcef202700d0d827da2962d31120d615f0b8c7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1293406d7bc9de1a7b11a98616eccba6819484ada8fa10256e60871fb03540b4
MD5 97d20e0b639532dbb0c03e3e8c6118c0
BLAKE2b-256 cd806863e879e6791cc0fc857fc5b9178b7ffff9879831b3fa9b0599312beffc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4ee564e274cfb2f31fe20619b21744351100c328b32408a3fa57edfed066e6c2
MD5 5544953356a5b18f00089369c8669503
BLAKE2b-256 bc61e6b457d5d894a21687573c6cdcd18f34cb69652edd48d4b5d53dad4c0b1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 64a315311ad80fe18b96d2b5c6e81811acab5f9a7ccc801688ac3e126fee5b20
MD5 31e952e81a6a868a0677f5bc24dc4026
BLAKE2b-256 5a4092c5ab0ddd363315403a786247a19396a9ba133407ab0d9f7df7375d1782

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 76125b0183f261e55210a9ffed6a59400b45a620259cce71679c194cf36851ce
MD5 d8b4a40403437010379f84554ca9e691
BLAKE2b-256 d2122189a31bb6680ce6bfd3cf8ce54dda3a0f5b2cceba3b5ce3887f6f72770b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea1a4d7185a1d97775650baf04001fb95b43a067748a9c3845cc801cae753ced
MD5 14e9e677f9dc1fa77791103e9c21f6a8
BLAKE2b-256 627a9cefb61a2172260546c23de42a82874048eaef6c8aab286f65c93b08867f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2cff4a1be2e29d6a941ccdb1fe70ba615d9cc939a4584fb8615d7540c37ae9f3
MD5 2dcaeae9b9bc98365e47b429c30b2ea4
BLAKE2b-256 a10b0dc52921cacca89932b3d0e4257707aed196130eb6cfacd6eb572bfef87e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0a2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 3ca94ab8da4bee24e9d59d60fb5f411d1c700654456f98b0e0663a3a387fb66f
MD5 5e489ee216e4ba30fc21f22b163315ee
BLAKE2b-256 57e6c8cfa31872ebb791cf585e87ff345beb65882090e9ee66d6891105fbf750

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0a2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 025b6a38cfceef8106e5f386318ea82b34e07d48dbeb5b2f404e8bc9403a8851
MD5 7f300e2536b199bbec2cc408bb990a0e
BLAKE2b-256 9e760a4dcd03731d1ee838340d7a14f61dc3e97da9ffe9bc58507c91f17f909b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0a2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 155f1eff3a11a6e1e4f20e340cbd53988dce57d5d2f95cd1fff231e750c2b255
MD5 3fb89c1fc8693c293182ab79e12e2f1f
BLAKE2b-256 d7be2ed9319744f599b3426074ca14bd3c36db19f5f7442141202b05ca1d137b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9fe8ca54e04605583a98517250f8ef23df9892305b3cc4a6d723d5e273f4f0d2
MD5 4b7a31ca2cd326c06325605971cab425
BLAKE2b-256 97198ed40424e9daf53a759fddac210e236bb209292a7f9f49622b984afa4fac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5247ddeaba7556914ee69fa924489c0bcd6e0e4e95d36a1e4bb0fdda5e353d79
MD5 3a113146c84f561c290edef856ed4d88
BLAKE2b-256 0c77f312fc3a262cf79b8b0dee67a0496a9418c59f8e2305145661381a8c0125

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 940483d45601bf3f696431c7960b52884ed92c35e8106424e82a38d4e6ab7883
MD5 58dd2360b064c53c567d85326ef66e1e
BLAKE2b-256 9414b092126292da8662811658231e530c786e218a30b8a35e41ab92dda9c6fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e3d751e30f4f93e85c04b309fee426dcf6fbb64c09802ce6a466ca01c91aaac5
MD5 ab56f5cc90d5291f8b90034803b79447
BLAKE2b-256 dba6c4c9981fd531a4345d851705027c6569ac72a53c9a99b1f6b7c6e1dcf028

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 31bb4e3915f233e62eef3b1bec642f1bc8079f8fb7cf9eb389b1b8117095f0c7
MD5 3ca2aa0657508737cbd0a90e84e2e012
BLAKE2b-256 fcb7f49537507ca56161d016d55e8bb6d4c7166dd77a836bed8a0cabe9812aa6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5e5e030f903ad43b421ac1a84facf48f789cb4863bf8ae031e521d4ea9078d64
MD5 662799242e35727cb6cca6d86f49a001
BLAKE2b-256 8dbd77d1e1f12f20b52a4da9f6c5b5a306dfff5ff96834bc4a8ce92b411fee48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 834bbab40df8066815048c6b6491f87f40749b497e7a5bffcbbcda3490b5e453
MD5 89c7afa97993a4126747fae6c21bdf8b
BLAKE2b-256 da80353edb4fbc53f9a7cc80e6f9c1b81df1543ebf31c68fd157689e4d967563

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 15e091c283cf62e0167edfb2e75858c1bb4acbc5dfbc06d8939be9e4059154a8
MD5 623c1c1f925b690f5944ef75ee742614
BLAKE2b-256 681b0cf87b8af8cde756890a1d4b1c1bed42482c879960091aea70905d372da5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a2-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.0a2-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.0a2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a9dc13e4fc78342f6a644d812913c3cc892d24857ac6f9a5b8d6b8dbbfb068b2
MD5 43f7801a1b0fb5e7bb7d489f6f795095
BLAKE2b-256 18d8756209ad92b74a3ff499bbcbad45b29131d84ccde751977f8afd2958601e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 51d7214a384fcc2d468922aa10ca89756dc9fd94770704b4a51fdf3038c3db48
MD5 29bb39ed4ebf1c5efe930301db8a0eb3
BLAKE2b-256 a9534a2eb8df963eb9fe2c1b2cf18cf9258c485b0ba70193c900f12f2d5d31f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 038a51dd0545fa5b80f62c6ca021d35e6f5069d67e9a84075f875fda12f2d00e
MD5 2a5bf3f85a796019f5e6311b463eddc7
BLAKE2b-256 70597bc2f8675f21369bfb526ee538533231c72e5e5a02fd4f4b7eb710e98de1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8025b233908b633e6c942ae6d8c5d5dacd9f0ec91ed30473c2d229da524495a8
MD5 d91c35671908b9d5a91996e0023f3e29
BLAKE2b-256 e48affe6d11b4f418835f37ea3586f78d4bd9ae2764dbb651de21c032b874997

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 82c757bc753100a5ed3307d6c2543960fd27268f564415481037f007fb7d69d9
MD5 8f1ca5d29dd703894b4d2651c6fbff74
BLAKE2b-256 369d817c0e3eacb30b1cef133349f13e46e641b7449320854e026e961acacb27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 fb7fe830457ee02f93333d0147c2bed65f5da22c239eccfa3cc6ab21cf592851
MD5 3d9f56bc5b38fb34bc820d454d4fa198
BLAKE2b-256 5b77b32c0c8f589cca48f39a01d4a0df72a13b6a1cfe5b90eaa6cfdd66808dfa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16dbe189ebd7c0e75034f6a348c0561c2809dac68bbf0b5a47b1b8e11cd2d28b
MD5 fbdd9545e0d9906cccda02e6a8e53985
BLAKE2b-256 7b42b87895da6d1c8bde8fd6411562d17b7df13b28163b99a51929039d8197d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e41cb064ff51cd98fe4ee2cdfaad846f580b727e4a59a828f0c73f316f1b33b0
MD5 a4add2ccd8fa35b85b92b816a3a8997d
BLAKE2b-256 b388d0a56b932a5b78b49f1e1043475273c18d6d46ae0a75e6a88b031c8c9a1a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0a2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 2fbf883ada847e02c0a27d0ecf8d14429c16fc5ab2c23ce7c094cb7934746346
MD5 79ab6eed72706cc2d6804de1f9476453
BLAKE2b-256 6695a311a9cad5536a3bf800559f750497eac4779d02a54e252953882c89682f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0a2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ef919ae65163c5059b65f312109877d72862a77d0ca559dd5c35204931262e79
MD5 b4f420a2b251d19cba796cdea8957edf
BLAKE2b-256 30f6ab41d9a0a58fc3985b02b181f71fb34ba3bc0e7a52a585f7cf858fbc78d8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0a2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e7ea38a9c41154e09a1712cb5ff981e29d39068739368302fe9ac48e34b10b2b
MD5 d28b65f386338e872080dd407d76dfcb
BLAKE2b-256 ae5feb524cef380d11bf13296472f3410bea7254d7079dba2b6210764a6a07ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b8192c76d7ada54fd41a463e78bd70f1302bf918418de5414d6d85bc1c07a3e
MD5 425e5ff26c3992360f2e08cdea1536da
BLAKE2b-256 520a10e7a782eb6b878c9cf7e674e40a86dd83ace1b154b443555f6205cde24b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 147fee5ca84b1345d88b716c422aa17efc612057327326d7a53d931eac335b8b
MD5 05ac1aa95e2b5a773e827ac6a47b7664
BLAKE2b-256 d590933a101833e36dc15f7d4e700db6101c9549c3f8c851f94c30e1f3389cb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 440da520a41f686b631d75ce7e6a99f525c5daadc5df3a7358817ffd253bb99d
MD5 b4a37c55af8c5bdd861f8d604d859b31
BLAKE2b-256 6ce0f942f4b37f7f9f0a2930c0eda8d9bfb1701e42a770c53d9109dce5fdf441

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 dd6cf6ab7faad843b80ab33c43451e6f7abe5f34fbbde78ea94e96a3ac495a35
MD5 3d998302a5ab68b985039ac5ef752b5b
BLAKE2b-256 dba4a4713cc15c85193e86ca8817356864730ada813a410dfd3b029d4de63856

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4e095bd83970a0e3d0c7f61e7ed347d3e8f50b6909953412c7d870e015394513
MD5 2eb87a3d85c0cb24e44bd62f2ce51336
BLAKE2b-256 67b9674a171eb881cc0b14736301cd9cb33a3b51e327cacc14e9ceedeed04d9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4a54388868d2830f86edc4a4de551395d66b724160dda3f27c5fd8eb0ef49dfa
MD5 dfe8e33ce7c6e3a2460c48a28d243518
BLAKE2b-256 c848ec6803e64dda85ec31dc6d239599ea960f6dcd030e22cfea5a29852dcaba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aaf2a6f24c7812c6e0cbea4dea1af6a277ea7b67833d687e1270accf126bfd80
MD5 f4e70487274969f2d782f005f112cfbf
BLAKE2b-256 8dedc2c2aef4ba2fd6dae13decc85cfd82747ada84e965fee548c75464fd700b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 cfa6425548e2280327d0c8fc4db4b895700689c934f7c78c5ab682347ef4c314
MD5 8dd11204a1ba0a8c6ab4f7df4bbbcf0b
BLAKE2b-256 8137393e2056f6f71d8f5c5369d29c23bdb77f30a8509789cc2f40cfcd911c40

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0a2-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.0a2-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.0a2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2d915b0e7705f7ea2fc8b0189a75fc7a7c6b7d1a39215325f275ede6f2772d76
MD5 ddf2e7a56472c9221d953cffc046c22c
BLAKE2b-256 fc7dfa0d32e1a6fc4e9b39bb3aa1cda3b356151071efe611de4219975726769a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1d3c4057c18e910366ec8f1424d26fae833da2a61a700115e0b180e47cabb3dd
MD5 b95922b104b7937f44919f959b05f7d1
BLAKE2b-256 099772a255672e1cca5185b91ae681edfa34bba5b6bdd9fa89e7f2ff1f33bcc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 bfd8855372965dee913f9a1f8dd206fd815b5a8ca60d2c6c38369fb7eea9cf02
MD5 cb2f053db803b4e1d0f0c436ba64b2f4
BLAKE2b-256 2c78d212921a550b2e8e790a84392f2e472d41cfe9a5320e2752711f70894968

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 15c90c0935e2b520e5eb7d4eeeefb318af9f7f813a311bb780e5756d9ae40fe4
MD5 66d2ea1b6bfc20919e9f1a34a51a2d9f
BLAKE2b-256 c431ebdd8bd6c443ecc3103628b8b9baf543c0fdf3ef9045bf76d7b293f2e191

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7c0ccbeb46232f36efa9b58f1c8b36e7ed6d52c04b1876bc9791a1d65e86c4e0
MD5 ef4dc0b451616383fa8f5588b5ba580f
BLAKE2b-256 94d66f0e48fdfcf752c402d2cbb622e59bf10d8ca0b56fe6178516ad1414691e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 09aae89279d8db8c86d9693d512d0077c307203902fad24cab13c6c78130888d
MD5 f722ffec8f495d33ac021c3f0cdd6db7
BLAKE2b-256 5b6e563a231db95325890161f4d2c566dcc40038ee5be2ee3db235f1d3429354

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 258f52cdb39cbde179312b301d2e1d62f5138ad0eeb24d2cb673afe14a6cd343
MD5 91c0398f33059fcfa3adb461eeeaadd0
BLAKE2b-256 e43d0426b7509bba0f1d87aaafe4b998225ca72a1dd8bfb01ab12091f98f206b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0a2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 47c7a74853ec34853125d06650808bb319a297033daa011aad97a4f19b34c663
MD5 18714f5ab81f646050b47b4298dcc132
BLAKE2b-256 e1e6fcb625b738386232ca992cd7ec7b3ef926378cbf25018f8cb98f55ecf9d6

See more details on using hashes here.

Provenance

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