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.0.tar.gz (19.8 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.0-pp311-pypy311_pp73-win_amd64.whl (15.2 kB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

xxtea-5.0.0-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.0-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.0-pp310-pypy310_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.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (12.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

xxtea-5.0.0-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.0-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.0-pp39-pypy39_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.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (12.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded Windows x86-64graalpy312

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

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

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

Uploaded graalpy312macOS 11.0+ ARM64

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

Uploaded graalpy312macOS 10.13+ x86-64

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

Uploaded Windows x86-64graalpy311

xxtea-5.0.0-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.0-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.0-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl (12.6 kB view details)

Uploaded graalpy311macOS 11.0+ ARM64

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

Uploaded graalpy311macOS 10.9+ x86-64

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

xxtea-5.0.0-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.0-cp314-cp314t-musllinux_1_2_s390x.whl (55.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxtea-5.0.0-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.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (50.3 kB view details)

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

xxtea-5.0.0-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.0-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.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (49.8 kB view details)

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

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

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxtea-5.0.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (43.8 kB view details)

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

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

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

xxtea-5.0.0-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.0-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.0-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.0-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.0-cp314-cp314-macosx_11_0_arm64.whl (12.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

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

Uploaded Android API level 24+ x86-64CPython 3.14

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

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxtea-5.0.0-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.0-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.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (54.5 kB view details)

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

xxtea-5.0.0-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.0-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.0-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.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (39.8 kB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

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

Uploaded Android API level 21+ x86-64CPython 3.13

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

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

xxtea-5.0.0-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.0-cp311-cp311-musllinux_1_2_s390x.whl (50.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

xxtea-5.0.0-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.0-cp310-cp310-musllinux_1_2_s390x.whl (51.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxtea-5.0.0-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.0-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.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (55.5 kB view details)

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

xxtea-5.0.0-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.0-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.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (13.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

xxtea-5.0.0-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.0-cp39-cp39-musllinux_1_2_s390x.whl (51.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxtea-5.0.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-cp39-cp39-macosx_11_0_arm64.whl (13.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xxtea-5.0.0-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.0.tar.gz.

File metadata

  • Download URL: xxtea-5.0.0.tar.gz
  • Upload date:
  • Size: 19.8 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.0.tar.gz
Algorithm Hash digest
SHA256 5bc93126e03ed6a754aa4107a63928e57d6e9a443c97f954c16d2966a11419fb
MD5 4830bce69d71bbd48dee2f7bc6261787
BLAKE2b-256 07689d0660600b59b7dc262d60aee4bbb66e8d03e1b824ac68c080802af572aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b40fdc9d3123941bcacb8ac994b9d78804e929545870709f6968b8bb3e9f0a11
MD5 a4471077a0001113a9253dd501fbb029
BLAKE2b-256 945f01185df78c39d0195ad2a6e3b3de734ae2ba94e8572b21ccb0f8e86b5e0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0-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.0-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.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0ec19511d4c5d58a283592b5c6ee61a71bae8e0bd80da8f9ce0ca24137be1a75
MD5 65f86cbc044cd8f06d32af82224a36f3
BLAKE2b-256 f698ba4ebb19de449c439629b419ed3173fded28c651476030424b70a06913dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e3b4c7f627530f7c71d22ff5a3c8e2a152af4154210de251e50d9a3a68eb1d8d
MD5 46efec39a5ce8b1d08f57296caff9c61
BLAKE2b-256 816d514111830b9ec1a8b180de141f7d2dacc6493de7aea3ca7fac2735a5c0ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 bca0ec32980afa03cddc6d9b39362213ccd9b88b9df2389ec4cadc589916f7cf
MD5 6246dd97d49a325389275acc7f0d90d4
BLAKE2b-256 094a56773fe98087c4ec628979ee1cf844e701f5c096b63d5b23955c4d818bd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2c9bcfd4de32cb0a7e42cb457efc9b525826ad599c67660ea9b78df6f81e941
MD5 c0f1de199c2c76d624bcbcf81031227a
BLAKE2b-256 664599a3d7819d2a105ff7a366d2d41617e1699f6f5e967fcc4532f53c0f5b15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5152491734ec9d74d7eb2bfc08ea703be0c6a63f7feed4121a93817d72592dd3
MD5 059b7ccd364dce8195162beb813743df
BLAKE2b-256 86f910ecbbedc14d61cbcff7527c9419fd1d594fbd00ff05b7debd1a707a164e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8340f6b8804c6d483338e13a13a5030142ba271a1c433e454e70876387efc67c
MD5 7b7d28a90aef39e53c4d987bc7e2a381
BLAKE2b-256 0da9562961a8903009bc7ef99bd20865c05e0134b8a90b16f84df8ab988e5848

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b9f74a72e9ac51878b36a0dcdaa0c1fe68cc6eec42692daa08eca5cb7988227c
MD5 5d378105ffb084983ef5bc184f740ce8
BLAKE2b-256 aae92b6e9b4075ab36938acace2a5fe69bc2ee9fdd9ec8edd939ecf650edfee4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0-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.0-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.0-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 61733fdf0526277116c932b1d0116a4b6a7f9c9b568055373282922f5c18deab
MD5 2c2b0eb5dc27ddc942953d9d90806f15
BLAKE2b-256 524eff23de579e2b3e3fd9f445f539afb66a33a2440b14fd6c12235d289eb182

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ebf2c2282d79c1d892006c320c2f037e84094c693a14cabab787a659240f81a4
MD5 40e7d97687db62ab3c2368b13d89f9e3
BLAKE2b-256 1ff9bdafc1294c169687be4c842c0559794cd8299ccd8763a0063cf29d3f30f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66042800bd8b40f8ee2b0f0528f8aba5c702267fb179b19faa9ece2164fe4322
MD5 dc818f941f324a8844dc65a5c8319b39
BLAKE2b-256 507bfc04d631a97f01830573e4580c119b90ce292c749b89d70e963d61469bc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1f44f93520ea712a58e7045230fd7faed27f47e3c9e6a3260ae51ef8be6913ed
MD5 a65de981e7b3cf5cf8f2236cc5f2e594
BLAKE2b-256 7fd39dfeee54d76bdb81c9f0fc763e6009716abab3caf34083dfd4d3ec281be4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 44889021e189ca7c3191c6314ac5032df0ae806bff4ff798dabcce88fbf9e71c
MD5 9fe3bea005ec2959a51587b1ebfa0adb
BLAKE2b-256 c3575ffa096b07e94e7f2955d842e9aeaf78f8fe5af65c94c2921df3e43de804

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fd6a505ff312641f3d5f38840fdfcafc9a90ca5ec9d073f7afa686cf6ce1be2e
MD5 fa884ce68db98c3c4a8093601d80466a
BLAKE2b-256 3812bf2303fff1ebf1edbe43d3f75a44bd92192da58c2221632bf349ea699d06

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0-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.0-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.0-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a8ecfa7a0da4b35297d7a6ca7c6134110cf508d82cfa50b33c9b745688d7fe1c
MD5 60e18a09c86d4365412d1f4b7e716f3d
BLAKE2b-256 576706ae69310256766ab33b4bc4a99b3f7f5f02f82d5afb73c059c9c1bb4856

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 84527acb2a7c4743b19825ee4e9e06e4377f1c9d028a217260617b70e3d16d17
MD5 d691e658152aff6488375dc7bf7a8fa1
BLAKE2b-256 1bc7363854717cc9ef6c009c9261def07414a81729c5e6f483e58003b3b2840a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6f20c27d9e109064bcac39fe9d9d4cb2be96f98b0a2f0a6abe1dd6c9044ac3b
MD5 b0fa96e3f6edc4085063248d3312f64a
BLAKE2b-256 03330f7538cdcc8204b5fc814233350ae43da58f5ae696515dd901cb0d9741cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 97e9b3ecbe9cf10c20232f5a5f349555709cc66676fedb8fcf256d432db8964f
MD5 9e317f7b3427e70fbcd1f7cdf0531575
BLAKE2b-256 cd31da80b8c98a30072463a87997e929bace50c2172952df8116cbedaf0c9d35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 9d66bba86569495d6733c2826a77b6a2a8decc49e254bc556fdced3b07c11354
MD5 2414b488d141063eda736e07adf2bd28
BLAKE2b-256 533b243b926c2080f7aa40060dd0f8d919535370312780737cd6898e1aa4b1a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0506c26ef2ec6540bdc8e9df24598e0649400ac3318aafc9efe0938f72102534
MD5 575b73f7b6f83e93cc053a21eaa8213d
BLAKE2b-256 a90be77b6758da8354ade2c8a064a335061cbe27da4593d0bfb8db101c868e37

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0-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.0-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.0-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 78efbd53e9e41b4399052984e4c10f331ac3fcb8fbae26396e920831678f579e
MD5 0465b3081fa5df91c63ab3c02c997ec9
BLAKE2b-256 6c66691b5f5064a126d4578104c77864eedbc0f7dea8bebf6bc7e8361d1bb214

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bcc3c2ea46622b721de53ec18bfed735f85918417b1f10e1a209ecc04890d840
MD5 cdaae43073485e1cd935e0586aebaed1
BLAKE2b-256 a3bfbe7ebb0c1b9bc2f0cb065e51e67b26f1a84a5c22f5dd73dab1a7a54d2ca2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2244c86edc37534c9922a381310c863f2ec7229f7171c1694feb28d0ea50f13a
MD5 7e3d270e514182a9c52cadf942a23a68
BLAKE2b-256 1bcecb88650492cb560498b2601ac9eed4b08c9eb756949ac5e0279df760c65e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-graalpy311-graalpy242_311_native-win_amd64.whl
Algorithm Hash digest
SHA256 4ac33641408b0c57cbec039c20b1af62b14967c3197b89a74286f9969654c553
MD5 9036b7f660c2cc08db85e6002b13350d
BLAKE2b-256 8e846f6406ac822d3966dc7e44931d18c8763b7f039160d2c0a592ce999230f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-graalpy311-graalpy242_311_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 33e06a996608332990d85f46bda6f9c3ad0f35001c9ee6461de8433209bc93df
MD5 cc4803f188cf8af01f4e60543caefbdd
BLAKE2b-256 6827689957f0b87528f3a18d0a7e6d173453be8ddf589a35983206f3fd212e09

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0-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.0-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.0-graalpy311-graalpy242_311_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e6c18f718234ab165106e2711013f387328ca985b669011e1e9f80e01590d7f1
MD5 55b7799dcda4f459a1d5a173dd532f94
BLAKE2b-256 6d67cffba6c6d36177fe92788e7c774383872aa8d0fbdecc0b9df00ec7e712ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49cfda6b0ad756a4616f07c6389adcf825815a75ac7caf66b2bd8dcaf85a9a00
MD5 9d6e120523bea2c91113349bec57cd53
BLAKE2b-256 4f8fac099fb68f3177a4b4990e97a39b5c6d01969d3181e96d5229a0edb3e2dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0ca02fd497383945339f84bf01f11a9edb9fa45834f36fd15c711bedc9c5c41b
MD5 e48988915fa260897089c9f218b80f86
BLAKE2b-256 5c9ce2acb578190fc116b8ccdb8cab3639076ba6ad8a67ebcbb39c94be73bfa5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0-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.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 5c6e18980d1bdf48f23c61d44d1947d53417f08d04a7f636657285813460624e
MD5 a67bfeba00401c0401220e6863971cdf
BLAKE2b-256 42efbf9b6cb3903bca2afa67e407ac8247f9de02db5a9c14302f2b25fd83eeb0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0-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.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 bd9741a7c64b5513e78a46f90a26fcfb288125f9bb7e76a1ede57cf1a1f5f483
MD5 555b74f14295d811694ab781a4477eae
BLAKE2b-256 f9e1975d1fed8d33420a6e2d689f64b61818dbe07cd451d3a68e77811e770870

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0-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.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 d274f565aebf15a15ddcc1058c7d7dad6f29a9c121f3a4cb9297f65aaaafa79c
MD5 ccc1761abc0710e84e389ec7bac3f6ee
BLAKE2b-256 37704439f8872ca51f68d04faa8d202950913f7a870539ec1668c180eadf18a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9bfa52ebd0fe707cd83cdd043eb7681ba9f3bec9a6db5ea9992ccb6c4945368d
MD5 ca45e4567cb72cb7d1dd116c6009066f
BLAKE2b-256 3aaf81406b018a5b65cedece4e73b56fb2544834264da284d1eae054e8b4476b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3ca6d7bca3f38ff18d6ff17ff4bcc88a3b7ad3c057e69995f8e7a4e01cf2ba9e
MD5 0d4cf6fd6ba083dc9af3ac5bd5a4d8fd
BLAKE2b-256 8a31cd1dc092a8cfaa0d912c85639cce80145ee3792344ace48be5ac54ab94ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 05bfe2478623b61a34b52569c1d82db1145b20fa69f3e4506d7029ba52339a46
MD5 990793df083887fa3b9b56c28d0eb16e
BLAKE2b-256 2bb8ff5ee389cb765e827d9136f140b66b840365a7b32a451e6b537204fa8b52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8b0c09eb35e8f3a84b9d471250e75456630a168e0820e0ee25eeeea6aae56672
MD5 b5bd119e159c43fb24b1f3606ff3196b
BLAKE2b-256 a232f10179bad88b94fe1413e2de56593a2e44241f9c1083fc60d59f97d3d13d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ed6bec3c63f1e9116ab5ca7abb9beba2a509a40a82f34e308e566a080cb72c77
MD5 3c2d3cc4e2f3a13ddba5be998aa3af1c
BLAKE2b-256 7bb43c3ecc3e27cddf02e74cc618c92412b4cfc548e04ce7fcc8db368be74b14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eb8276d7c30a3a94a7bc0b1834a5bb121f3b49a6ccff717328039efa6f1075b7
MD5 99efb19b3a80ba0ba177d1f092ed2cd9
BLAKE2b-256 e006862a6224d809c264389ef0c21f34d582b9cbec34d837284c30cc9f23680d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 415dc6405978c5a6f77827d4a2006f2dd1817553795d5913b8d5fdbb2449b20a
MD5 8f680c2ec7e779946ea6186939df2e3b
BLAKE2b-256 69d80ff6b876fa18965d9294422b274930cf655b3a5be9755cab6f61dba82795

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 92d4671a3829faec9542a2d3e7e3b5cce05c2ad538f50dbfd7c195f6b84c9faa
MD5 7c5cc07bab64e76feeca5aaa3f0787d4
BLAKE2b-256 f965bad7d0cb900b3a460d71f61104042914d24d622d930142c0a9d76f894aa6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0-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.0-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.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d1e610e1330651d2c76a6876c6cb158097372e93783bf1bfb0fbf3a7f6ccbb21
MD5 221698dc61ed0515385cc3db24ea2eb2
BLAKE2b-256 74e5df903345db0bdbea18aab30bfdb023491c92e38b65d07569cda026d3a84c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c145f05e876549789463e55c66c0ae00158d3c8d24cd05e113fec8e38ce80bd4
MD5 0ceae20e863300dd6863de7ea46da86b
BLAKE2b-256 b506143aed9f84b3fb9f43c83f67e70afa60705c394abdd8e4143a662a1a7258

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2aee50cd4e4e15c7134c49043e2713b1539033832c8129541067ab2143545a24
MD5 4d98a7427fc72a72f92b0fe7b97b21db
BLAKE2b-256 2b25ea7e32b2e3f06888c3abca71457d35a7db2f7f25674d6af5d53b8e14a8a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5347222d80c8c3f6618af046dedb30316dedcdf940cb4bef7c70a0049a46bb42
MD5 8424e4fbc64ee6c205c8cee88dd95d04
BLAKE2b-256 3ebd526c41a7c5a3d8448f70f7844913ab4112b177d235f60344a1ce56c21513

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 99a2b1c536dc634ab81c66c370850834531bc576050fe2ad14a51cc8f6a4856e
MD5 8c92586d7225dab233e93b4e7df77e84
BLAKE2b-256 f954d4aee2677116d85039773466441545876ddbe93ad8e1759cb352de9fb102

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9f9fed2be5175952dbb5e969fc4c464360eabc0cf1fd5ca20b1152f567ffb789
MD5 4cb822a764db782936ce4f3ac260a56f
BLAKE2b-256 5ee82f30c3feff723c3bb44c9283a72c058f2a07e0629ef28362dc075f6b98d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d35853c8ff72da46ee35005eb34b1fad52ebfc58bf1388e4eaac5dd28bb3c1d3
MD5 f7f577cd848c0ea0a7383bed9ae4494e
BLAKE2b-256 2ac7afd4c509b7ade9a38aa78395f5fe99bd8c631f11f5b434c3083f69a06a43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 48f2de9d59de6e526af3fd06c2808e87f8498425e43b623ea2ad4bdef928eedf
MD5 54425c00a182b36955bf267dfe8b48f7
BLAKE2b-256 d006d244b6fbb014c7b59b6eb5b6cad050ec975ef799a6ccae033280c0ff8aec

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0-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.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 3229e67a3898190cc1517b29cf0a6b4aec87e1a840715a8dd7b114c47c8b8742
MD5 e4975b354a0432733abe695536d6d21b
BLAKE2b-256 6ed513579c71459b468f337126e81f32268b5a2a4b3eaf214a54c10b1144fefe

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9a49bb36078f5b4e1190badc9bdfe6ff990672fbb72ae32bbf5742d12072d6d7
MD5 29541cdc125f7b8aec2f38f9eb06b967
BLAKE2b-256 776ab42323be5358e85a14d4a109b73ecdde4bea1c2324cdf66eced7601c2a37

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 48cb87e8fa76f26e4486857e7116074f8125a4b44f812dde14819654ad59c6b1
MD5 3937d15a72c534749da825d747776132
BLAKE2b-256 7fef06a03987c8e814e908c9d377315c177d2d8cc845ff8fa931030ce9a2fe00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02041adaa1256373c8c65b6e0d1770f70dddaac0ad29a168ce06c193f8477acd
MD5 95925d450fb29b2b924c20d4358aabe1
BLAKE2b-256 294dc2ac653ea8d840f330687551004a4977db865617d8af9d7681bfa2a6de17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ebb320dae297dd019305fc2956f7c977a2c2ca30ceb876097235caa4ffd74014
MD5 f2a0929f25db6d9795924ec78e8b4f49
BLAKE2b-256 61c63be983586ee593f5917ccb81541fce8c3cc31a1e4de8d013ed76da3501c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 79e5595dd4f2bc3cf2a06e1c0a231263dfd0777d68022955401ca5a5e8235163
MD5 5ef02a66cb149df3fab1cbb3c0aec761
BLAKE2b-256 3b3cfef38ef110c4ea46820e81cef395519f0496fbc64201a5bff425154d7885

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5a0b3871c814a9f2638bd72e048fbf1d854fae001c6d5383ec0d310ef2533b4e
MD5 435a698687ad19352b8eaacc02addf13
BLAKE2b-256 ae8e75d5677b2612a1f8e7332cab5ded443344cbcaea904a9cc9e8c92d6320fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 17ad99787fc4f5ffadbf847239421a173efc301f38c590374c577434ff4206a3
MD5 0610f4c08f90481e71e78c31b78e262b
BLAKE2b-256 e27740f55b969db8151fb162bb8eac8e4497000a5628327e03e46f5540c140a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1af9b8212c19114fea5c9c60f03eacd08da1afd82162f90f2c9409570449c2ad
MD5 d29ff2a197aa0753b59393873d001dbf
BLAKE2b-256 2283cf8bd85923f0609c51a095255c1c6d41068883c83783cd2625f3ea62ca07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff1b543dc79e20f0c768022f641a77fb7fb17ec8b20931c818325750202d8397
MD5 945ff89200d6b5d7a96191fc841f65a4
BLAKE2b-256 6470aaa646f8d3ee778da4e06e07f0b775be9139629a7faa1986e6296c13d69c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7e50e4487ce4fe9987499fe9bc88c39597daa7e1ce0c1d7bd51bc0ec101dac49
MD5 7ce222ae90eca75f6e68cc09ed6d4078
BLAKE2b-256 461e0c303c51f34ebc69e31af06bedadb8e7d35f0b035f5e7dee4b79f37fb87e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0-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.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0da7c79d93876806375b7840f16d8b4712d4c492f7549b3481166b3463d3a518
MD5 60ad4fd6388e39029bbaaea8f63c7977
BLAKE2b-256 c871edc4f91d9f3e89cdea341969bff7c0b318f9a85ab3aa8788e13809dcd6a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0f49d6daaa9d22051948f3f7093b1a70b40a1b22379f85cb36f93a3169e77043
MD5 8f4e51617d232f452ab492cb76f8f4db
BLAKE2b-256 ce19906e36ad5728d93c904de9ac7e48c90d69f8d9b151e3674ebfb7d89aa8f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 57fb3e5e58e2707c9936d043b678280fb8f1c20a359c24b73a8a8ab4601610f4
MD5 8cbb6fb3d17d2afb34826afb3fbccd31
BLAKE2b-256 38dea63066f34894c74ac841f9c83dd21d7ad3ad6d4a68c598d7360683741512

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 84d76978dd05c0283e150d2d07962980dbd20303a705a13a36e4e3d676c3e914
MD5 db6e1e4f25ec1ec269955d508c6f33cf
BLAKE2b-256 8a799c43b92874bc7b6e100a168d99cb56b67819ccfcfb89c3020e47c1e8837a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5997f606bdf6c7daa21b562453199c4075953d17c8655cdecba5ff254bc2b28b
MD5 9a14e41325f0d281abff200ba613a10d
BLAKE2b-256 9800094c5b104bf6958dcef057ba9a87707b10e6865502d73e21d9bd8d3fab73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f3e9691a5f09b87a24fee180ef3f6a3250e7145f04af6b7c40a2623ddc865d38
MD5 f1e83b96d9aa632a8ffbfa49bcddde23
BLAKE2b-256 d0a57ed853633f0ba0f51baae9e04acc8584954e08ccf42468e76625a4f9ab95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83212c868cd88decde39467579282464853942e36764031f9507ee81e803ac9a
MD5 c93167a9f54ecdc39b5dab6c91cf4c9d
BLAKE2b-256 7c761e4ced8038904aada6716ec729ddffbce509c12784c6b3f659cd8206e544

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 28bbfade1f8e4bd2d8af82eb32085e4a2f46f3c65a6a113938e33a4b55bbc39e
MD5 f2835c86c9787933328156948ee8e424
BLAKE2b-256 17af2b9ff72fa4d9d4e7e7e69a7608cc95ddc12f936f44ee1d7c167a7eb87e14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 f06e56e96f636278a1e545389510db8216e7e5e3e77080697c29e347088d1870
MD5 8b7e3497992243dea1bebd295bbec588
BLAKE2b-256 2528d046e35b39c6fee49b74cfc522c70b3e6439964091ef32c9deb2220ae3c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 7b69a5a88742242791da7a91ee25cf26bd67dade852619b42f0cb04676eea854
MD5 31a78b01e1d8dd5881fdd6bb8b765ae2
BLAKE2b-256 fa4826b7fce203504cdd10d3227f18ea145230b5cbf70e184157f34191040ef5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 bb809de665964de58002dba8b913ef3db3de4c2dbc5d5dea12e592e5261065f3
MD5 63ba6185f11b0035e793553952db07df
BLAKE2b-256 255bf4ec02052ad48e7a21b1de94c1fe31df9afc9b10729197b9bf065187bb69

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 1317dec2350e5abc4b9e355bddb2fd43ce8f516cfff0e182eaacc8e3728ae39c
MD5 473ee8028264e7be755c62b9597e3f52
BLAKE2b-256 c64bce049d0aab250ed87a4ce3bd2173d918a26bda9d4fe6144cdd340358e7c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 11ef288d144c5f527c34a648de4486233ccfd031a6815a439453cb0fe71a3720
MD5 3f67fa96e674ffcf8330af721135400c
BLAKE2b-256 acf3662ea5180b32348b6e400f2be8696dca8da6037dd06553e3a8b7ce24083d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ce753ddb3b8b67007b39f975499102d5725c58babff14da09c7e7ea0babd80b0
MD5 7eead0c58c36d348a50379eeec240451
BLAKE2b-256 47896c7afed9746327c26ec1199c826a0106771475f0fc29b5606ecfb865015f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0-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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 269d21c3083865ef15366ea1270fe93864b4b3eefa0894fb510ddf82d508fd4a
MD5 2188dec471ada9b00ab5c30298d27971
BLAKE2b-256 a6680a67f899a1d971c146591633a8d0edd1d3b4b565e0349b2e76c7bcc84875

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0-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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a5469c7c2cd47bc618fe2b967ed93bfbf0bb0ca0ff75e5eb398d8dc5a968beba
MD5 a83dbda608f52130c01a29c4e3aaf5cc
BLAKE2b-256 e4d53209f19fbccf37af99bd5a7fa4ab4de3862d298a58da567627f8154728ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 526ec75a6740d1f97702144879131a5cb742aed673f5ec54cd76e7ed8954df12
MD5 069b9de8c9c56d19adcffa0b2ed727b4
BLAKE2b-256 f61f2a3be5386c534e830e8fe37c241ab1a1ac84fdeadcd8c6f541f86ba4a2bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 27b3f6eeb18252182fa5c632d78591050e11451f8aaa349706c4f098e09ebea5
MD5 3803297cdec0ed204742952bb159fd5e
BLAKE2b-256 c82475ac287ca68208b7aba7437dd00741c16b131d76f60d8830a2505fef87cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 61a93dfb70ec4b44b576a4d6053052cb3b14071be48f895281d2608a6c480475
MD5 1988142f92ec4b520f7c0eb88eb48a4f
BLAKE2b-256 c013ec6b23f69fcee56bf108685f0cb27f7fa8598c84019e734763267ed494aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0e804a23920a8d187edb5f6acdf5c9504971cfb8bfa217df260a6b5ce4283ed8
MD5 281dc92b73d61af925814f97f21bd616
BLAKE2b-256 8a991dd38bbe3bf035fa0c0623ff3568694f1440b7cdb094be90baa434eded95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a4da7bd2d6b71204683bfd6e8057900f43e82a8506ddb2d57f05b0dbb977184e
MD5 00354d61cfb263901b3141240ca18f1c
BLAKE2b-256 b340e9c7b3382419976ca96456dea32516f3a3a1a53c30e5cd850f62aa14c9a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 07427144ecb2663fe49631c368036277f5e48bc20b7161332da8a4fa0c943015
MD5 6ba56a99c6fc74324817e3e6200ed126
BLAKE2b-256 503f0793f274448f2f407663e6f3f54ec8ad506ed918859110c1b168fd56c11b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 662e37bd23fbeeae92d6a8990070bbc559b348610f773142589f8dea04b0d7ed
MD5 a56ddbff4b61710fa811f465c469b31f
BLAKE2b-256 377f45cae9656da13f1f5c619807babfb3f67dda50feb968610d09ac4fdeaa12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4da04455b41d8b6a3f1d75e4bb89bee53caf4d2ab339014c5a9655b547a5de74
MD5 e3d9829bf0526954f0778a793ca01850
BLAKE2b-256 82503a9682e8367141ce906ea67c3f5c9b6d9dd2d2820aa99b9137bcd0c718f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0-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.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0467f462e29cb1e7f5d02008d5deec56eef5206f446271a24e924bde21280732
MD5 6c7b8b266beb080349d13819e4a23d8a
BLAKE2b-256 499bcd417c93ac13a2a0caf7ca543ccdd9b170b8e33959c87b5b9c8520d24a64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6170174556fd4b4c028965424b052e2384d1d4e6629f3114cc1b5f9f241063d0
MD5 82b0ef63fe69f872a9154eaba8f145be
BLAKE2b-256 210aaed15ffd0b50ec465d6e30c5138a387b20a96dffeffd11c499c3d4b09d7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7dac7c979d21ebde156a83c72a2b2b32213cb0a4c7630e134df311bd79fcb541
MD5 afc0ed3214de8ca3c7861fe05461eb9f
BLAKE2b-256 90d344e0a16895f7bd02b1c7daf76c9ca5b30e415b14aff3643b874de479999d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 25b95e9f9bd3ef5e21b9eeb0ab5afde04f1ebdf33924dacf651e2cd0c87fc0c5
MD5 4f3c8840ae5f8febb9e1a929c4a286e8
BLAKE2b-256 2206004e60fdc68dcf9aedce986a8b4b760cca798adfe1a72a9f9c06924fc3ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3276c7412cdb81a104c558016f06bf79eff1a4c2999b5c3cb1bac2517accd272
MD5 ce030cc0c266493c77a8271a4c8a22e0
BLAKE2b-256 a80135e39afcf1173b445bdaf7a42d962389dda7c98d7437ede9f167e28cc90c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b6a2f9f35b791b85c464485cce50d7c2464061b53e2f805d6424996a3f1bd571
MD5 2ca49010007dc8543ebe0ff6919ac6ae
BLAKE2b-256 eb69a5a66c01f6af6668b2d5b9d24341e514465b12104d6cdf2ede6f2c4ace2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 811f524afe297608b3ac829193a57427cce19695e7fced8e94e1e19be2ccc7a8
MD5 17bbd0622dd5a5a4c03722986d3d5938
BLAKE2b-256 3cc51b1cd41e90d2acf20606a190eadd8c0f5a24493a7af14303173fa5bdf75d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 15d782063c9740a0d5e9beb2363966f19dfc3f05a62a97bcfdafb3304317b60f
MD5 e8c76b0399d02dd28e30461e2b3c1cca
BLAKE2b-256 4cf718755186b6121f860e731dedf438c2a8be3c281c086bb5be618b5c249767

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 3d99a2536aa3f0065d0f853f0f08850a42ce9cbe6b70d3e8a0cc50e90232d615
MD5 927071b27d5678622f7ff389b3246ce2
BLAKE2b-256 e093b5c5ec07811454030519d5407b5c3b580dfd977ea24afa3742a41b8e7582

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 0a88eb6764c8024800e0eeaa21a69624d0e9c92e5d7853803db4b661d87449a3
MD5 304f4e47053ea5bd8a4aa990c202ea40
BLAKE2b-256 3c3c69bdb5ba6f60afd0886a251e9403f8a521526282252b76306ab36ed226fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 3667f3651daa63b4822a02a02390c409e7a6777365050ac2aabc2c2ac129c466
MD5 be345ef86ef384129cfa73e51e775242
BLAKE2b-256 2c9b17455d1d32c497db53472331e299109303ace7146d250e278b15b949c12a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0-cp313-cp313-android_21_x86_64.whl
  • Upload date:
  • Size: 13.3 kB
  • Tags: Android API level 21+ x86-64, CPython 3.13
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xxtea-5.0.0-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 cade4f369e29dd1be18ab1e48f5a0379acf186f33097938e0b675f7aa0b78dfc
MD5 c1cd6b1adf5ab70410f45eee0cc98cd4
BLAKE2b-256 f82aad938df5f35514fb14c0c966dfe9df69fbc2b14f9d455b8cec1d73ecf4f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 089b8d292765e7fad9ea100e3cb2dac1a9c2965c2f5da9d96d56673415092210
MD5 62dbbd7d48ae7e0a4ae21c7f427b1af0
BLAKE2b-256 65759b5d45a63c945e1e2746ee020110d8d194d4a901ac327bb83cbaa47e0c7d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 28b2a3c54b27814c45dcf630e8f8fbcaa8043187a4f03320c3acd1951b323251
MD5 590574e21286144113f725f7f0946202
BLAKE2b-256 07eb8ef7646379c64c1b741065cd210a183316cddc3ec6e0b940675daeb88d3c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d1fd054aceae784f58fe692d19ede36f6ecac34dcea82353c7dd823c356a56c9
MD5 9df1febca04091652271cc4f6889083b
BLAKE2b-256 709229f1845cbfff670e8fd94d87ac8e4b7884bf4aef6a5c2fb883e0203ed584

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0-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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fc4fb5bbe3aa392002fa214aeca13f17ee59014903c8f7a8b80e5641e29ff8ad
MD5 589cf75342ca1d0123ade27d8ab3a567
BLAKE2b-256 afe62c1f823f5a762d9add178d6b1b4ca8a46c5ea4090ee9d47b14fea45c17bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16683c6fa1ce1129931893ed242c25b467205b32df2b7027fb5f1edad883a1c0
MD5 73ac6e2913e9a353a8ae7de71ef7c00b
BLAKE2b-256 55b40e83abbc814dc5683fd516294aa870797437326ca88b97a790e21983b6b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 99030c3b9949294edd6d0faf82154027c00c476e053e845391cbc859d985d323
MD5 91b51d11fd0826d61cd5fe8a8fe937cf
BLAKE2b-256 0b3b17b9b48d07718b1a043c7e0325599ec4f3677ba7d03d201d783c2aa4c968

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 eab5ea63afac107cadcd0eda684d69840725b6aafa72e1d04fa6b9226aa3266d
MD5 408d48dad048d171081490205c338a35
BLAKE2b-256 865c18a16826b151c6c3c7726e8b45e837a512fdb573ed620ce595dc5e2fc5bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 cae2310661f1e04727418ef37ba996a9e89733c9175b9bb866771ee8ea727520
MD5 78e9cc6275d4be4808a23c460f15e815
BLAKE2b-256 d7f084a5e75c5b0db74411dad86b59c01a67e18c607bb2fa4e068a44f67876d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 05db72d04585734c05e0676d4ebe650b019b838cc50bbf494a9ab0548a95a0ee
MD5 28d74ba937f77c9189f73b3126392025
BLAKE2b-256 e3957f06f684b04517ba9da1dc6c6cdddc8d27311c1b456cbae3b5ad20f254a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6612da34abd8a1cf519977e23b6af21f84654ffc6a591b80915c729f69f9e7fa
MD5 3cb2aafac8da7573000ef12b64b77056
BLAKE2b-256 cc7dfa20c7f1c97fa99736eec2212e1d87399a20c18c188132dab5552693e0bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7ca9ea45d203b8c6cb1be23a850e1b8a1d70f2975fdedfc9d9582e7a56a40c0a
MD5 8d4f5967ab5bb4909feb794ade9354c7
BLAKE2b-256 0704b077f56ee3856563d822d953764f3b003eee76a68fd1d8ac78f0927c32ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5bde1a109a8a339d215e287b6bfa7e8dd51d1a6ed300a95cc5ca58bed5d4d50f
MD5 fbda114c0483727aeef7f563675e27cf
BLAKE2b-256 a88eecc6f82c6e1cb44a6da89254a4fb2ab859691bb910c3b13fba3f96c1cedd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0-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.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3d519090f951cd1a6ffc1f80f85db2598f7b896684c289cc333ac54ede885a89
MD5 50ed817a23006f6b224a942d9a16f4a4
BLAKE2b-256 cc1c5da8506ad01be88cb25bfefbd07a9e7fb9176b8856a56450dcc65933f44e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c86f356f5c5c5b5a4dddfa9f9a2636d8fcf7d239a230fe8013b078e35c06019b
MD5 e84c90cb025fcb71fa88a2356b00ae6d
BLAKE2b-256 0689a9985cb34ff7b5a6dec01059c717ef372e1540a7e075785dbcd3d7529ece

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3fbaa4d48823a5d253d2f0442aa3212d5506e94492b52e7009c7d897fe240b01
MD5 3f3c9ee2f25ee063fdc763e9e7761b1e
BLAKE2b-256 39b855bd20780180847daece7d90ad44327157ef3fbaff609b4ec1316d3b4355

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a9977580e489fb66af06d14d4e11b15ebfb0b7623a12dd51b92351a0b306aefb
MD5 12d58a920d9422952be12726b4f249d8
BLAKE2b-256 b6a7010c8482e2e5432f1b7d91b36e2afebae342bc5219fa7aeeb5e0008e8892

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 88a7af2ef1ff2b9c3285c8a5d77d85277bfe2b4270fead3ffecbeb569584a05d
MD5 5c96abf6bbb8f557f7f42f8a20cb1a4d
BLAKE2b-256 1d893e48fd6da1e6676e3dbdb4077efdfaae2f9c17c4a71092bdba36a04fd737

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 13941ce01832451d78f56543a966bac55f9e8d2c4f9441f87f07ec748a1c517b
MD5 15fbc2d0c1ac644988d35b3b2ac16621
BLAKE2b-256 217b7c0e4ce8d444a309b6ff528e5a8be1a4f134785055f6c4b489f0d6f67b18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0f294d113151c96526ca1b2326efa32d8802d7212ca05a894143048a4041019
MD5 93d36d063144009289c381f1d9c3da43
BLAKE2b-256 b4573ab7eedb8b4f393fc453e946e94542af6da25a7fbf4d3702e017bb8f0054

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7cd9ebe3f1af3118dad4576ae4f366609f2ee1685b69f357ea30520596afb339
MD5 03c5fb00cff559a60023c43e883748f2
BLAKE2b-256 7d233cab5d8b8143bb62e34222d45675426fe1c42d022120ff46b2dfb5dc95cc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0-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.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 6b2ecae9b5f7ab80ab30956b2a006b8b49f13b8e227a82ae4812ef6f4c7dc888
MD5 2c98a516e7292f67b7c4295221ee4ba2
BLAKE2b-256 c61d3f760e80e33abde7bcf0c8c74761ecdba90cc03b51ecfe27d05c04d06f6c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 02878a65c890015f5b8f2a7f929973b1bd0c34dcffd77c7e9e41282a75e9ca92
MD5 e40fa8c4c27b353ffc3491607450dbdb
BLAKE2b-256 7832d8c6e83fd078b157919d70bb0eab0a43c2ed5b3ca7fff79ac66502d545ed

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0-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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fd7a351284c941eeb8db6dd0acd83fc2e710c88ed92594a7beb43a41944cef05
MD5 4529146abf582fe4a8745b297d117822
BLAKE2b-256 e8d9753f703dbce1584ff318ea3b81af57f5d58cb1bce760a90cb5cf17399831

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fee44190b002cee1fa9bebe3db3e9974846900560a7093e18f7c1f371f832b9d
MD5 460b995a9a7a20f58b9af8100775e31d
BLAKE2b-256 fc9064ae1ef828f02c515de5399cf024f02d4be62b052c7093c3b4e5b75f2d23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9b1220909c7aa04d5d64bb6e54d7c6905af7841448da47da5eea9058a98cdafe
MD5 6575f385e67ff336e40b8293e8891342
BLAKE2b-256 c11b548232d5c5d05d7d58e56cecff63df16730bd72b85eb5b1558b1ca65a237

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 37bd53543162cc5b8d2f66b7f90d4196bdfa0885588e55da226cdeee86a6d3e8
MD5 23a51ca47422a8ffe583dfd27903cdab
BLAKE2b-256 27f2118a4c29c1714cf0adeaa664c9fc18856d4e6157a595cd1ad828f1f191cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 14b16d2be327dcd2ac0813065a3009f7b96abb0cca3497a39700cfca8d36b96c
MD5 f8a2bdfcf5c1ccdacc7a590e6bd82f0c
BLAKE2b-256 d332e8ba557ab8430898bba0af8df3c2ca06cf3cd3a0d88846936c0484a00031

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2238c9eb59a56ffd0af4929f9c60f85a74ef907a1f1bae89f893ac829915e891
MD5 adbd749302d1819be6f3a1873ceaa0f5
BLAKE2b-256 1bb6965b9b10a61d5afb3dab35a51b2ffee03bc032fb2198c009f64f95ecbaea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4ac24e184ce3c5879dfcd47a5fb457e8c419df26d0a92bf44096ad851b38bb89
MD5 0befcd758891c7e4d9f36237f4e86182
BLAKE2b-256 933c50734e2428d69f81f1313b60ad66dd4b073638abfd6962b52aa64f6f974a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a2d99485c2ff76cdb79d731668ee29e17d680b25cee23936a72bf1c8eab8212
MD5 5d5f0883d474e956919480192c1739dd
BLAKE2b-256 cc546627a7739c7e1f692b5b5222d3fa1b245d0027d047f2f0aabdb17fb4926c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4a9c9e4e046405b98847267f6ba8bc50cd4e802c604e107b2b3417f2bc4636d7
MD5 fe7e4d3163084368e09d9df33dcd265a
BLAKE2b-256 64bb1a6d7b3143f6b917535c24b38add52c8c9dfc2a4b3d5d17b517e95e03f94

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0-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.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b11d6b8119e1f4413e07f24741b6d1ad78a93012d968afabd15448b9912712ac
MD5 316266eabf35356f27860923383324e1
BLAKE2b-256 b569432aa20f5d3e56be939cdb2e4fcff80e84da5f07fbff94bd5cc190f9aabb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 decaa0361a8a1507c52f3811ec128a3fa2433b65b1a578e8af97bb5bdb9de044
MD5 497cdb1d5548deee385e6bb98912c44c
BLAKE2b-256 d1e5351cfd49025a33a34322e259d4d786a75b3e97dc4730fc82ee66d7e0b57d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4d2d4898e2489010032f86823f4e84ad1fe3b1e00f50bebdf5038f12de0a13e2
MD5 e4439f5bb4da0712d8974135919478da
BLAKE2b-256 cbac5b4de5009464a0e2246e4c4063481af3097e9db387dafa95464e9dc470f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1ca5a6f199ff05f36d440d1f3910ae4b2327a0ac0c222f2a4e2e1f0778b437a3
MD5 03fb0f51a0ae0e81d44c9a6d3dbd67ef
BLAKE2b-256 e2cadc7a4005a3adbc6e3a5b048096057120632ab1ceab95fe2b5ab2a9200576

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 39f2a1309d2a440a9a8d723fce22f4f5816da5c6b0d524ed349f58082e1ec67d
MD5 6aab9c373c88d5aab0f11f848428c6c8
BLAKE2b-256 bc49db6bae98b39f91759ef331fd43650e03bfc465444687709271581825ed30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 11cb4e54f2f4f57a8bc681161ee45c6fe86ec921047b2bc9b4338608a7f96bf2
MD5 433c8219c345163cdd0ee71fc1e7a469
BLAKE2b-256 0c04d05bbe64f5cf1e3af1f3147eb283c07c2917e4502fb3b7cdb7bb4c3d3529

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 438cf3b1a0e4e9f967f3b5df91c92bd67ce1489f8da9caea28f5ce5b6bc1c970
MD5 1c150c15067f7577e5dc9327fd6a72f8
BLAKE2b-256 c49c228fc3674a1b0ec78a663d7c0c29f35ada53eb075ad20086001ede8db4ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e6677bd9efccbc5654f7a07f762a7d808308d947455f10b773eaabc15c19b3e8
MD5 efea65d6b33cf147033f9ba57974bc6d
BLAKE2b-256 ac7982d095651337c51fdc41257f085d2c61cfabeaf4280af3dab64ef305add0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0-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.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 940310899dfec05582fca3cbaf27beac8cb06ae818d21db299edc9d80a8d94bb
MD5 02aed47e96685fd6ff8a7f6195c8f568
BLAKE2b-256 6bbf751af7259a946b209b71f8b4de29219e017d80aaff2bcef1ca32e365616b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9728c1adc5e7b649bfdf713ab04918e1cdeaf2d1e422f7908d399d2d9c410952
MD5 20dc8b2b6ab0e316d8a710094d84b73e
BLAKE2b-256 0ffe7f6a8263fc25747fd1e9eccc6b8a4cb14b99fe116128b1fe4528d498a1d4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b54b227cfbbbcd0face5b680a6abdf276054eb96651d3b4e0f68c001440495a6
MD5 4bc74a61892aaac606b7c399e174f927
BLAKE2b-256 aff75d7a2689d236e0e76279e1450c1ff3a3c93e5f4fb8535f09f875c88accce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 86b43728ce24c5d34b8eefffc399e031fe9471ed0a2a87655f0a61534cddc8c0
MD5 3edba3513b89d268f3a1388f19474c19
BLAKE2b-256 32e0135184c42cd4750d91e3c3a375b0be504d3a5c39c499858da8d0ca1a1605

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f979370bb2d6c8399e5db8a67eac0f01c767115d74224ee6f56007fd9953f4b1
MD5 5f607eb02e069563b6aa0f13e6b3a913
BLAKE2b-256 dce9a55c7cf58c1389db3165dfeb74ab828bce18985d1078f54e2669b97244f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 592244542b1064b5b2f60c1e3aa37917f290431d3ec564748c73bf2f790c5de4
MD5 80700c43b898ef132154b5f9f251289c
BLAKE2b-256 8bd121aa33d9ba508e2d5f77fb45d4dd1e19e32e597c01ddb6bde970049631ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 dfe34f245db64b225149ff185d2fd8775eff4d85ffe2f45c722b6fd0e6192d5c
MD5 c7687caf0555ff4923b8ea33651cadf8
BLAKE2b-256 874ad94e17b8d00e47c541f4eea7500e5bb419f81906428e4e7755c6192d72f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ae5c568bc85011e9a25432b40eeea4945d281ae8bd44a5e634bc863cf64c5fee
MD5 43bb474f936808d85140f0dd5dc54544
BLAKE2b-256 fa3ffb64175da1baf599346e405411971d370495f2c80561d059a86f2bebe1fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 47e701eda0e569543b7585f38565072a04c3f1524fc2e5219481a53c9809647c
MD5 3288105b6312624191a68236aa9165dc
BLAKE2b-256 c3a9624b4c6a0dff48f5208acd9cdd23ad59e7a048931842affc414b848e57b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 54f1843d4fe8f1a055a00c781de7d4258a9a0cf49d152c777c004bff815da581
MD5 4c308d8f3950d3f5f1343f7495b28344
BLAKE2b-256 5fc415d804d717094a423aff57dad678e40e7259bd694e94ee578e9f40d829e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 eb6d304634f63f797ae658fd2275c264e55e4b89b705ec5589d61cf906f62b7c
MD5 5ba4ba4b11acbcef829c8c5c4a225f80
BLAKE2b-256 b879ef24902e7e0d037c8fef008ae26a1bdc16def9e562b183e42882776cd16e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0-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.0-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.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c8ba3dc87ab3e3c492c96d6433f86af07a6d14f970eeae32038474e667029434
MD5 e476e8a90ce4bf8f29f4a7269e3babe9
BLAKE2b-256 e431e5c08776550e3f1aaa65fa3b82b87f0011aab48a030ac551ad36c68aa19d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6367e52c0ffb6b6d904c977ea12f76ef9525e9a30443a82ce20e418efb2f946f
MD5 6a5ab00f36d0e0f94ad1851ce2105b44
BLAKE2b-256 1600b209b7c03e59c37219b59594e10e574c0fcfe2f981d2b6e7326db559776f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a5f82be7fae53a7d5b66272950beaad7492a4db8da0dbc1be446e2c577c0440e
MD5 90bbd0397a9e2b6c96c878ffbc1c0805
BLAKE2b-256 47ce1b9b2aa205c7b389fabc379cac1b110d793e12dcc099ba5882d7e531960c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 fe0f36429e8ef9fd484f38ae479228bf99ffbcab7510dff32e9bc8dba74aeb78
MD5 71f8effaf8a53692c72b696f16e91b83
BLAKE2b-256 804cb502af1e21312daee099a289a0dd703e19df88af69c23935ca23936200fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6044ea9528493e42879320da7db5dacc10feac3b4843fd95a68c12b91a4890f0
MD5 35fe11a6177a4411c0debd97fb1d556e
BLAKE2b-256 b4345853c2c8a683b2a39ac9e4c75d26d93f2de9027d6150acbe214e60ae64d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 83dd1601412898eec2e0c9e500966d45cacc0298cb1565a6b31760f6afb215e6
MD5 329fd50cbb6e010d1dae5ed49515d478
BLAKE2b-256 e35513e01324796a6d465cbbab86442f97954c250adde08581bad93de96710da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc6d2078f95ea1784f55e1a0ec5c3b876b1622ee3c91bc633998f35e1627634e
MD5 97aeeb6a0c493ac911032534bdf7911f
BLAKE2b-256 01778efb957c25e58a080f52b9c790336a65eb5b0c202ce64bfabe2b3addb16f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cb8a01a321cf649fc322656c29bf18571185cb0792f761612d7e5da0d2efba7d
MD5 e9f8b265ed350f2d2ed33490242b36de
BLAKE2b-256 9696c2008d2299508f1b6edc7384129ec45d6079ac04d95600cd7884df56e5ca

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0-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.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 6a76103a73372ffb92897c41920c5747c2d5e2467bd6257996305bbf56210119
MD5 ea81ef34b69526ebe3669db02e022d51
BLAKE2b-256 537b759b1f28ad33557632716ff07e061979a72e3d71f3d5740a7b1a7ba24845

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0-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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 79ebcf91a4e29d8dd341a827c9bb60aa1367f208acc748de81a90217832feb1a
MD5 5b4249bfa6a852b1daa20b57a42927e8
BLAKE2b-256 3e578c7ec0e35c68e809953711609852715928c34cc42a383b6bba371db58de6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 66ecc7bbbef6b80ae3b65fab28b5c98680b9ba975ac113540117978a827e26dc
MD5 3c54a3d46ad5999df63ff5cb29afee34
BLAKE2b-256 f8f56e94727ab2b698c16a3b799b85579bd45ef84d7b1d2c7c4fa817bf1de31e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3997fe497634accae7603a7a31341025e37868abdf724f0bf50b3a5f2677271f
MD5 4819f123d274d0dd8b5ec59c9d4e8736
BLAKE2b-256 e0e651cc022afac03ec1e8bf927e7c5a32b9a40659ee696a8fc48ccda2ae348a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ff5cff8cbe4ba39acc55c2b397f6d32c85254b322de251eb6a376698d315048b
MD5 1bd8e0978ae209d1031d7ae01d992bbb
BLAKE2b-256 1e9bd28abc12668176352529226c8f237d8a082f8c984833b70909ea5fe2c490

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8edf53dc83f86e97f956823164aa7f57316a6b35479c1df250082b1abfe6ee75
MD5 e0fcfb7a24d44a848460731d80300431
BLAKE2b-256 0da1a12030a390f2bcf5866265b2b06ba9d3bd8e2a89c75e201b7913f9712c3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 011ac67f40ecc9b6cfc12a3fee90c969c4c7dee96a5151264f9a93f228a0f5cb
MD5 522bcefdcb1ef47d76bdbace094f4c7c
BLAKE2b-256 5b117715c658604cc0746dcdf7209ee09ce2ac19271b3ca80082b616c7c1b6e2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-5.0.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 692ae8945f84a44fdb808d553d3dfdc764c70dbe83ffaf4a3738fac2783f77de
MD5 366676b2fa2dd398c63351de4625f324
BLAKE2b-256 a15045f34bf39c338331559ae72d7c45e2e15024086457547fd89cd629bb2df2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e576007e26151af662db29a8f23cfe657e4a389915528768aee79e2d3bb1e559
MD5 e77119b754c924cb37dad3c68988d4f3
BLAKE2b-256 ad11e208a9a088072ef8a2fd1eaf3f6a62a0e29efd80f7d106df6d4a7c9df167

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d562bd456149f146bcd2438e998ba471dbaec162b08e7d9a9d67d7be79ce3cc8
MD5 0f34a8ba34cf5ab383c618b936ec1c91
BLAKE2b-256 26f8f53a75e72d5947d29d0a8310b584ff5cea0eea04a5f0406f099346d93134

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 036569bdde7c98e9113a2b92754970be129211dcd84e4554f517c171f002edb4
MD5 3ba4e1ba13089f4984d0171edcdc0837
BLAKE2b-256 328f81bc0c57b7a04e9f693d85f4054ead817c90d16d9f3c731e72421c537371

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-5.0.0-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.0-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.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d22bf48207b6f544c9ffea9affdc8e22811ce7ed876c19ce83d4f3732dfd26ac
MD5 0e8ef948e0196090801af16272d3a4d6
BLAKE2b-256 3409efaa03e22623c2795c73ceef4575744442caab77f88630bbf31fb063bc2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 58ec59b7da5e39632b3393ba49c6fd317dddc850d4631693503390f375ce7ba4
MD5 eb5066d87b459b4d71a5a54039849b4d
BLAKE2b-256 f536f8231ef26b026268f83e0ac94a747833c9f3b4e7dd7be8bb06eb70317917

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e1086937647a3ff747b5472fb9d1f835cf0fedbced1e41afcf063d29159658d4
MD5 2a7790d93cb0645c49ea575c558ce3fa
BLAKE2b-256 e33a08dc5e87b6d4f5120afc3f5715f0bb9540dbf4b0db34b128532ac2d67f42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 03165c20e6faa95069c47e3abe805b5e7e85a399a889b1658645d2ef64c7c3c5
MD5 c6a8c8dce59c2fc3f88a28c28969a01e
BLAKE2b-256 b59bfd4dac01e9a760d915f88f13ff17799ae8136fe598d59ea9a38aed21a915

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e94f87a6e857e2348aee52261beadf1e5ed1765cca7bcc146f7191f735866d8c
MD5 ff1bae029cd7ba3f148d21b8be65ccac
BLAKE2b-256 8689676ce6622dfe4f7c7d2e1f0d2259b6262dd44d146405a45b5a78695b3d75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 dec5c37015f96c482ff191bf68a293b6413ea3455c9476b47bc1fca9f674069d
MD5 8ec06a6b6d0fbc9cd633bed07cae5af9
BLAKE2b-256 2ac9febc3ca7ac3c6b4440bc55bb6baa2c80d6f897dbc788d397a0bff77b028c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-5.0.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 13.0 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xxtea-5.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2759317880e44f1d6a2de1605a1a01929227bd307926bb7ce61b785f2d65115a
MD5 4eeb3f3f2fbc57b4659b1fce1361f22c
BLAKE2b-256 478c2a05b2f75026a4a4422a9d634630c54baf81e3ae33e46ac438c9ac332423

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-5.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 14821362d29d778ae6218bb0efb34bb5a934d62b61dbdb3ac65270195cd4907f
MD5 d77ea7e929c0eb3d78d08f6f4a38f1e4
BLAKE2b-256 675a658b3cfb21f8e59678fcd9a585bf31287d9ab9712744663d38edd82a1252

See more details on using hashes here.

Provenance

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