Skip to main content

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

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

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

Installation

$ pip install xxtea -U

Usage

This module provides four functions: encrypt(), decrypt(), encrypt_hex(), and decrypt_hex().

>>> 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

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

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

Padding

Padding is enabled by default, in this case you can encode any bytes of any length.

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

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

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

Rounds

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

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

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

Catching Exceptions

When calling decrypt() and decrypt_hex(), it is possible that a ValueError or a TypeError is raised:

>>> from __future__ import print_function
>>> 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

Download files

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

Source Distribution

xxtea-4.0.4.tar.gz (15.1 kB view details)

Uploaded Source

Built Distributions

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

xxtea-4.0.4-pp311-pypy311_pp73-win_amd64.whl (13.5 kB view details)

Uploaded PyPyWindows x86-64

xxtea-4.0.4-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (11.9 kB view details)

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

xxtea-4.0.4-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (12.9 kB view details)

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

xxtea-4.0.4-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (12.1 kB view details)

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

xxtea-4.0.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl (10.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-4.0.4-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (10.2 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-4.0.4-pp310-pypy310_pp73-win_amd64.whl (13.6 kB view details)

Uploaded PyPyWindows x86-64

xxtea-4.0.4-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (12.0 kB view details)

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

xxtea-4.0.4-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (13.0 kB view details)

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

xxtea-4.0.4-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (12.2 kB view details)

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

xxtea-4.0.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl (10.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-4.0.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (10.3 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-4.0.4-pp39-pypy39_pp73-win_amd64.whl (13.6 kB view details)

Uploaded PyPyWindows x86-64

xxtea-4.0.4-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (12.0 kB view details)

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

xxtea-4.0.4-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (13.0 kB view details)

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

xxtea-4.0.4-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (12.2 kB view details)

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

xxtea-4.0.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl (10.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-4.0.4-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (10.3 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-4.0.4-graalpy312-graalpy250_312_native-win_amd64.whl (13.7 kB view details)

Uploaded Windows x86-64graalpy312

xxtea-4.0.4-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (13.0 kB view details)

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

xxtea-4.0.4-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (12.0 kB view details)

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

xxtea-4.0.4-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (11.4 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

xxtea-4.0.4-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl (10.6 kB view details)

Uploaded graalpy312macOS 10.13+ x86-64

xxtea-4.0.4-graalpy311-graalpy242_311_native-win_amd64.whl (13.4 kB view details)

Uploaded Windows x86-64graalpy311

xxtea-4.0.4-graalpy311-graalpy242_311_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (12.6 kB view details)

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

xxtea-4.0.4-graalpy311-graalpy242_311_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (11.7 kB view details)

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

xxtea-4.0.4-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl (11.0 kB view details)

Uploaded graalpy311macOS 11.0+ ARM64

xxtea-4.0.4-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl (10.2 kB view details)

Uploaded graalpy311macOS 10.9+ x86-64

xxtea-4.0.4-cp314-cp314t-win_arm64.whl (12.6 kB view details)

Uploaded CPython 3.14tWindows ARM64

xxtea-4.0.4-cp314-cp314t-win_amd64.whl (14.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

xxtea-4.0.4-cp314-cp314t-win32.whl (12.9 kB view details)

Uploaded CPython 3.14tWindows x86

xxtea-4.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl (36.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxtea-4.0.4-cp314-cp314t-musllinux_1_2_s390x.whl (36.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxtea-4.0.4-cp314-cp314t-musllinux_1_2_riscv64.whl (34.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxtea-4.0.4-cp314-cp314t-musllinux_1_2_ppc64le.whl (39.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxtea-4.0.4-cp314-cp314t-musllinux_1_2_i686.whl (36.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxtea-4.0.4-cp314-cp314t-musllinux_1_2_armv7l.whl (36.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxtea-4.0.4-cp314-cp314t-musllinux_1_2_aarch64.whl (35.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxtea-4.0.4-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (34.9 kB view details)

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

xxtea-4.0.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (37.0 kB view details)

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

xxtea-4.0.4-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (40.9 kB view details)

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

xxtea-4.0.4-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (41.1 kB view details)

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

xxtea-4.0.4-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (40.0 kB view details)

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

xxtea-4.0.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (37.1 kB view details)

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

xxtea-4.0.4-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (35.6 kB view details)

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

xxtea-4.0.4-cp314-cp314t-macosx_11_0_arm64.whl (10.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xxtea-4.0.4-cp314-cp314t-macosx_10_15_x86_64.whl (10.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

xxtea-4.0.4-cp314-cp314-win_arm64.whl (12.4 kB view details)

Uploaded CPython 3.14Windows ARM64

xxtea-4.0.4-cp314-cp314-win_amd64.whl (13.8 kB view details)

Uploaded CPython 3.14Windows x86-64

xxtea-4.0.4-cp314-cp314-win32.whl (12.6 kB view details)

Uploaded CPython 3.14Windows x86

xxtea-4.0.4-cp314-cp314-musllinux_1_2_x86_64.whl (34.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxtea-4.0.4-cp314-cp314-musllinux_1_2_s390x.whl (34.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxtea-4.0.4-cp314-cp314-musllinux_1_2_riscv64.whl (32.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxtea-4.0.4-cp314-cp314-musllinux_1_2_ppc64le.whl (37.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxtea-4.0.4-cp314-cp314-musllinux_1_2_i686.whl (34.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xxtea-4.0.4-cp314-cp314-musllinux_1_2_armv7l.whl (34.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxtea-4.0.4-cp314-cp314-musllinux_1_2_aarch64.whl (33.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxtea-4.0.4-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (32.5 kB view details)

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

xxtea-4.0.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (34.7 kB view details)

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

xxtea-4.0.4-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (38.2 kB view details)

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

xxtea-4.0.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (38.3 kB view details)

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

xxtea-4.0.4-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (37.3 kB view details)

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

xxtea-4.0.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (34.9 kB view details)

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

xxtea-4.0.4-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (33.3 kB view details)

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

xxtea-4.0.4-cp314-cp314-macosx_11_0_arm64.whl (10.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xxtea-4.0.4-cp314-cp314-macosx_10_15_x86_64.whl (10.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

xxtea-4.0.4-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (10.4 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

xxtea-4.0.4-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (10.5 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

xxtea-4.0.4-cp314-cp314-ios_13_0_arm64_iphoneos.whl (10.3 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxtea-4.0.4-cp314-cp314-android_24_x86_64.whl (11.3 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

xxtea-4.0.4-cp314-cp314-android_24_arm64_v8a.whl (11.3 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

xxtea-4.0.4-cp313-cp313t-win_arm64.whl (12.3 kB view details)

Uploaded CPython 3.13tWindows ARM64

xxtea-4.0.4-cp313-cp313t-win_amd64.whl (13.7 kB view details)

Uploaded CPython 3.13tWindows x86-64

xxtea-4.0.4-cp313-cp313t-win32.whl (12.5 kB view details)

Uploaded CPython 3.13tWindows x86

xxtea-4.0.4-cp313-cp313t-musllinux_1_2_x86_64.whl (36.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

xxtea-4.0.4-cp313-cp313t-musllinux_1_2_s390x.whl (36.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

xxtea-4.0.4-cp313-cp313t-musllinux_1_2_riscv64.whl (34.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

xxtea-4.0.4-cp313-cp313t-musllinux_1_2_ppc64le.whl (39.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

xxtea-4.0.4-cp313-cp313t-musllinux_1_2_i686.whl (36.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

xxtea-4.0.4-cp313-cp313t-musllinux_1_2_armv7l.whl (36.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

xxtea-4.0.4-cp313-cp313t-musllinux_1_2_aarch64.whl (35.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

xxtea-4.0.4-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (34.8 kB view details)

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

xxtea-4.0.4-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (36.9 kB view details)

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

xxtea-4.0.4-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (40.8 kB view details)

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

xxtea-4.0.4-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (41.0 kB view details)

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

xxtea-4.0.4-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (39.8 kB view details)

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

xxtea-4.0.4-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (36.9 kB view details)

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

xxtea-4.0.4-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (35.5 kB view details)

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

xxtea-4.0.4-cp313-cp313t-macosx_11_0_arm64.whl (10.8 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

xxtea-4.0.4-cp313-cp313t-macosx_10_13_x86_64.whl (10.9 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

xxtea-4.0.4-cp313-cp313-win_arm64.whl (12.1 kB view details)

Uploaded CPython 3.13Windows ARM64

xxtea-4.0.4-cp313-cp313-win_amd64.whl (13.4 kB view details)

Uploaded CPython 3.13Windows x86-64

xxtea-4.0.4-cp313-cp313-win32.whl (12.3 kB view details)

Uploaded CPython 3.13Windows x86

xxtea-4.0.4-cp313-cp313-musllinux_1_2_x86_64.whl (34.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxtea-4.0.4-cp313-cp313-musllinux_1_2_s390x.whl (34.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxtea-4.0.4-cp313-cp313-musllinux_1_2_riscv64.whl (32.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxtea-4.0.4-cp313-cp313-musllinux_1_2_ppc64le.whl (36.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxtea-4.0.4-cp313-cp313-musllinux_1_2_i686.whl (33.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxtea-4.0.4-cp313-cp313-musllinux_1_2_armv7l.whl (34.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxtea-4.0.4-cp313-cp313-musllinux_1_2_aarch64.whl (33.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxtea-4.0.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (32.4 kB view details)

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

xxtea-4.0.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (34.6 kB view details)

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

xxtea-4.0.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (38.2 kB view details)

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

xxtea-4.0.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (38.1 kB view details)

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

xxtea-4.0.4-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (37.1 kB view details)

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

xxtea-4.0.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (34.7 kB view details)

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

xxtea-4.0.4-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (33.1 kB view details)

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

xxtea-4.0.4-cp313-cp313-macosx_11_0_arm64.whl (10.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xxtea-4.0.4-cp313-cp313-macosx_10_13_x86_64.whl (10.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

xxtea-4.0.4-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (10.4 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

xxtea-4.0.4-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (10.5 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

xxtea-4.0.4-cp313-cp313-ios_13_0_arm64_iphoneos.whl (10.3 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxtea-4.0.4-cp313-cp313-android_21_x86_64.whl (11.4 kB view details)

Uploaded Android API level 21+ x86-64CPython 3.13

xxtea-4.0.4-cp313-cp313-android_21_arm64_v8a.whl (11.3 kB view details)

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

xxtea-4.0.4-cp312-cp312-win_arm64.whl (12.1 kB view details)

Uploaded CPython 3.12Windows ARM64

xxtea-4.0.4-cp312-cp312-win_amd64.whl (13.4 kB view details)

Uploaded CPython 3.12Windows x86-64

xxtea-4.0.4-cp312-cp312-win32.whl (12.3 kB view details)

Uploaded CPython 3.12Windows x86

xxtea-4.0.4-cp312-cp312-musllinux_1_2_x86_64.whl (34.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xxtea-4.0.4-cp312-cp312-musllinux_1_2_s390x.whl (34.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxtea-4.0.4-cp312-cp312-musllinux_1_2_riscv64.whl (32.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxtea-4.0.4-cp312-cp312-musllinux_1_2_ppc64le.whl (36.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxtea-4.0.4-cp312-cp312-musllinux_1_2_i686.whl (33.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxtea-4.0.4-cp312-cp312-musllinux_1_2_armv7l.whl (34.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxtea-4.0.4-cp312-cp312-musllinux_1_2_aarch64.whl (33.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxtea-4.0.4-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (32.3 kB view details)

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

xxtea-4.0.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (34.5 kB view details)

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

xxtea-4.0.4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (38.1 kB view details)

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

xxtea-4.0.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (38.0 kB view details)

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

xxtea-4.0.4-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (37.3 kB view details)

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

xxtea-4.0.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (34.6 kB view details)

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

xxtea-4.0.4-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (33.0 kB view details)

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

xxtea-4.0.4-cp312-cp312-macosx_11_0_arm64.whl (10.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xxtea-4.0.4-cp312-cp312-macosx_10_13_x86_64.whl (10.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

xxtea-4.0.4-cp311-cp311-win_arm64.whl (12.1 kB view details)

Uploaded CPython 3.11Windows ARM64

xxtea-4.0.4-cp311-cp311-win_amd64.whl (13.4 kB view details)

Uploaded CPython 3.11Windows x86-64

xxtea-4.0.4-cp311-cp311-win32.whl (12.3 kB view details)

Uploaded CPython 3.11Windows x86

xxtea-4.0.4-cp311-cp311-musllinux_1_2_x86_64.whl (33.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxtea-4.0.4-cp311-cp311-musllinux_1_2_s390x.whl (33.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxtea-4.0.4-cp311-cp311-musllinux_1_2_riscv64.whl (31.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxtea-4.0.4-cp311-cp311-musllinux_1_2_ppc64le.whl (36.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxtea-4.0.4-cp311-cp311-musllinux_1_2_i686.whl (33.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxtea-4.0.4-cp311-cp311-musllinux_1_2_armv7l.whl (33.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxtea-4.0.4-cp311-cp311-musllinux_1_2_aarch64.whl (33.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxtea-4.0.4-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (32.0 kB view details)

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

xxtea-4.0.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (33.9 kB view details)

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

xxtea-4.0.4-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (37.9 kB view details)

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

xxtea-4.0.4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (37.6 kB view details)

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

xxtea-4.0.4-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (37.2 kB view details)

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

xxtea-4.0.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (34.1 kB view details)

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

xxtea-4.0.4-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (32.9 kB view details)

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

xxtea-4.0.4-cp311-cp311-macosx_11_0_arm64.whl (10.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xxtea-4.0.4-cp311-cp311-macosx_10_9_x86_64.whl (10.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

xxtea-4.0.4-cp310-cp310-win_arm64.whl (12.2 kB view details)

Uploaded CPython 3.10Windows ARM64

xxtea-4.0.4-cp310-cp310-win_amd64.whl (13.6 kB view details)

Uploaded CPython 3.10Windows x86-64

xxtea-4.0.4-cp310-cp310-win32.whl (12.4 kB view details)

Uploaded CPython 3.10Windows x86

xxtea-4.0.4-cp310-cp310-musllinux_1_2_x86_64.whl (34.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxtea-4.0.4-cp310-cp310-musllinux_1_2_s390x.whl (34.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxtea-4.0.4-cp310-cp310-musllinux_1_2_riscv64.whl (32.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxtea-4.0.4-cp310-cp310-musllinux_1_2_ppc64le.whl (37.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxtea-4.0.4-cp310-cp310-musllinux_1_2_i686.whl (34.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xxtea-4.0.4-cp310-cp310-musllinux_1_2_armv7l.whl (34.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxtea-4.0.4-cp310-cp310-musllinux_1_2_aarch64.whl (33.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxtea-4.0.4-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (32.6 kB view details)

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

xxtea-4.0.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (34.7 kB view details)

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

xxtea-4.0.4-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (38.9 kB view details)

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

xxtea-4.0.4-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (38.5 kB view details)

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

xxtea-4.0.4-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (38.0 kB view details)

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

xxtea-4.0.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (34.9 kB view details)

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

xxtea-4.0.4-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (33.5 kB view details)

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

xxtea-4.0.4-cp310-cp310-macosx_11_0_arm64.whl (10.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xxtea-4.0.4-cp310-cp310-macosx_10_9_x86_64.whl (10.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

xxtea-4.0.4-cp39-cp39-win_arm64.whl (12.2 kB view details)

Uploaded CPython 3.9Windows ARM64

xxtea-4.0.4-cp39-cp39-win_amd64.whl (13.6 kB view details)

Uploaded CPython 3.9Windows x86-64

xxtea-4.0.4-cp39-cp39-win32.whl (12.4 kB view details)

Uploaded CPython 3.9Windows x86

xxtea-4.0.4-cp39-cp39-musllinux_1_2_x86_64.whl (34.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxtea-4.0.4-cp39-cp39-musllinux_1_2_s390x.whl (34.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxtea-4.0.4-cp39-cp39-musllinux_1_2_riscv64.whl (32.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxtea-4.0.4-cp39-cp39-musllinux_1_2_ppc64le.whl (37.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxtea-4.0.4-cp39-cp39-musllinux_1_2_i686.whl (34.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxtea-4.0.4-cp39-cp39-musllinux_1_2_armv7l.whl (34.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxtea-4.0.4-cp39-cp39-musllinux_1_2_aarch64.whl (33.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxtea-4.0.4-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (32.4 kB view details)

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

xxtea-4.0.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (34.5 kB view details)

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

xxtea-4.0.4-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (38.7 kB view details)

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

xxtea-4.0.4-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (38.3 kB view details)

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

xxtea-4.0.4-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (37.8 kB view details)

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

xxtea-4.0.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (34.7 kB view details)

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

xxtea-4.0.4-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (33.3 kB view details)

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

xxtea-4.0.4-cp39-cp39-macosx_11_0_arm64.whl (10.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xxtea-4.0.4-cp39-cp39-macosx_10_9_x86_64.whl (10.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for xxtea-4.0.4.tar.gz
Algorithm Hash digest
SHA256 e67ef44eabb7dd425b36a87cf331a71961de61fe2ed0565189040f2859b5973b
MD5 995c59147f87b9f6e9b89ff3b1a5a408
BLAKE2b-256 2806712a1041823c701d1d98ceae0bab995424e8c940f1d2439f9658b0ff203d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2f7d9d0e143f4d061f310632ff07687d44f7fe7bffdea1c8f425856d964c97df
MD5 a1d98a0e54deeded8603865b888ccd35
BLAKE2b-256 e4d35bc26d631df06d27d796387dcb0b0239d0640b26ff56f50d16a92271b111

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.4-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-4.0.4-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.4-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2c160c324a5e450f03c9d26ba5f40d95ed2eb14fb169aeabbd6e75dad7bb9037
MD5 91d0edd8e197e0ad16ea146d93eb3de2
BLAKE2b-256 d94a49eb0187415f5bbe7182b24148a6a217abdacb5f31b5da17297291e16fde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6a17c17449ddc6660b91fdb2190cd7c3a09cb157b1f7496513d4884aef0ae87f
MD5 98c3fb5827620ffdbe01dc1805b20bdd
BLAKE2b-256 7ae46f19d0764c1645356091cac9256f1eaf8d4121fb2cc4192bc15aefdff98a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 fbe92a6b604f89cc300f5d8cc775797d3c3641e870f4dfffde54a3b6b1058d5c
MD5 152477684e939b73a0809670905a3fd5
BLAKE2b-256 5c3a08335351fc8a34fc263b47c691f751072fe2bd3cc65ddd722e2019b38b13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c537cd4830556d10cb24eaaef24c063db024fd45e55e946bfa4da3d25a34efd8
MD5 2ae3caf1c78f79ed8c12aa4ade0fcfa2
BLAKE2b-256 4bc4ad56f2a86c0809e6dcf146af2dfe46546ac9712386831553e2443571ba35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0171b85dd214d81fdf5b0d1f0e658f5c20184db0c14ec614a72670cdc0945fc9
MD5 645f77b1862f3e61268334aca73af983
BLAKE2b-256 36ea9dcc6d39df00d2676cafdd95d122eef6ff61159597764e2078a20070472a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f34904d9fb625d87f8f270221eb6e636ab97550fdae13ea5a05bc4818143acf0
MD5 0a2b9a04f429aa7facd48965d9677e6d
BLAKE2b-256 5c99f6c227271fa7dc855fa83fd0a8ecb6311c39b93caf39727f2199ffc04b19

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.4-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-4.0.4-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.4-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2b0a295ed4104a8240195f68a29b41078db082a03390e312846304198a9642fc
MD5 6e9f59a00db381f40d06adc2fd1213e7
BLAKE2b-256 87dfaf7b92ca076112345c24bb3b7c13e851d52c0b5fb8d93ed8622d3904fd80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8f9086d14236b19fce477f02d94b2595c15daa7223c542ec3c750663c7cc10b2
MD5 36e11c61f9d74c31d504b59bcda7aa3d
BLAKE2b-256 ad2efe99e43a9339fbc01eeb96f9781d63ce8c7eab74b13c9e25ce6f07c6c3c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 74bc9928af1d186cd3fad16ee0892a28d963a998c13b1d1bab7cb27a4c55e738
MD5 c64fb0475d977c4f49a5c03970d8f81d
BLAKE2b-256 4d0ad5910a1266d9b9f578ba28a454c4c6405454bdd6338fd4e737be818914f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 760e57c16623b54a19dd108fa12fd462024479ee04e76ae80388d0390cb3f9e4
MD5 7a28548df3f75c61268bb2779bdf2f4c
BLAKE2b-256 1f9db0be56454751c9d78d2e1a0aeeee65bf3ad5c6c631f3b89ca5d81ee0a290

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e4310ef2e54c65ba9ef04b764f238dc4921fecd3cdec73a61877b43522508938
MD5 73ace2be8cffde93ae01efc70cd27fdf
BLAKE2b-256 e7d41c124a1f30c3033e27c84a5a74bece08f868f056b21ba8c30e420cf429fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e599aba44f6a064c688ed2c5911374e9a6720e1d8d75270fdd4396e8155c0279
MD5 706d8410025a236100930ce561aa561a
BLAKE2b-256 f52db051466c018117ab1931cc29c27996cda83130bb5b1eda8ef1b734404d5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.4-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-4.0.4-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.4-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1168c5841bfbcb7cca069b7c1614e78c2c09ba6283d75d58dbf277eb4947c24f
MD5 b58c50e1c2850f2a1c5875c1c084bee7
BLAKE2b-256 67177f00aeec853055831a867448e9e2addeeca8c0bf1432bd90e81e68de4866

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bd78aef2260a136a9991ff9a411e4bc9ca84ef183a64ccbc83ad583fe1d19514
MD5 79a6417f1ecff1f0d84b65098e028e74
BLAKE2b-256 1d93bbdb9f4da361b9d2add084fc867df5fc46da875de62b7ddb919cddb8ab9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 1e231208f975d45665db0ead5b179968a7e7c1493a128f77e10ffc8c9094be79
MD5 73b89e93cd399fc5133aecb0431b75a9
BLAKE2b-256 1054af8e80aa25a017f69a344c56532b7ec41dbaac5faa77fcc9d2e24a0dbbd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36cdcdb1fa51724c3fe11986ace4d440550586afc757dd3a59c526fa01b78bb3
MD5 45a284997b2be877e6d543c9e8611705
BLAKE2b-256 734e6e9600a7451ab41338e032399edc2b57e458ea354f3427a8910af6ada9f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cdfec77fbfe1bcf331b025f1bf1ea47b3ab3b506805925cebe8ce3816d0f0c33
MD5 2841f0205e741ca6067e06b26020e6a4
BLAKE2b-256 2a935dbc26e94c47adce89b6ca8e0042b1d8777eb20f84303a8aee56c86406f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 67380105f4907ed1de7b366c543db6c7b5f9e03802d3d8eaaad9fe5b606298b9
MD5 4fdc7c498d3425f8fd4f23560ab08c4c
BLAKE2b-256 6ada4a80d29d1427bd88ffec571478644008fee19dd99083cfbd62ba8f3de22f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1265b28b0bdf7094c98ab117def0e67c3a524fd1082d3a1bb51a0000ac3f5339
MD5 19f37d9d6033956ac771a78197b8735d
BLAKE2b-256 09fe0b229b64a304f460d00529734373f4d35064b08df975209ed290c4e0e0c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.4-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-4.0.4-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-4.0.4-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 9d957627320d68a9bc33d5027ff8d8bb33f79cb7c1bc967bafb99b13f71f6cb7
MD5 b6603586f7bfcbc6f7ba643c820dc9c9
BLAKE2b-256 0b514cd9afcc85d6ca54f047e1863824745624e4ca7176d081bbd4c037eebc99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c308538c3928e36b763f9475506e09e99999a76385e37bc963e950d90dfbd923
MD5 6aced9267bd60e15e1889c4a5c0206d7
BLAKE2b-256 dc75a3fb45d3afb76da2036b921db6215240f492bdd54f61d82633a24e41c62f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f80e8fb979be3833d14e682a0c9cdac9261fdf2f832f4ecfb1554c9ca48b0495
MD5 e1ee51e1fbdff8f082e81a5794959d54
BLAKE2b-256 80272e59698a4fdcf8f59d2abbae7ecf7f236c9e6ca66bfe18b6f222ed0d9ac0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-graalpy311-graalpy242_311_native-win_amd64.whl
Algorithm Hash digest
SHA256 6cc1517efe7d44cd9f37e16d72edf7938fd5b44b2593ac243730e5f50e999cc0
MD5 1cca0077f102d50ea106f0f2bcd18ccc
BLAKE2b-256 89d4087f24516918e6121a66e6568058cd7b7817bd98fd044950404d78daa057

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-graalpy311-graalpy242_311_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a8cb6d66731ef89429e0989c229167b01cea33c33566313171abfbff448f2ac1
MD5 425f9536f73c676ecda29dca5b17cb80
BLAKE2b-256 354d2beb40dfd12a14d7c6ab7f0b48129659e02d25bffe7e1718c91af3894a20

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.4-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-4.0.4-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-4.0.4-graalpy311-graalpy242_311_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f2b529784799c65c29195f2e4eeb66fc18f2069e6550f365e007bdf6a719628c
MD5 81c0fc08162400ec0aa46720b9bb7f45
BLAKE2b-256 680a5b5405e776cc7a85c995fdbabbaf541f0e454d35a60542c3c5d57058d405

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3f0d38f9ca3467d10f0ccfb7f5364064e7f92d9bc6eb1d280ae3e8b7b157276
MD5 cdfccdbb6550d2556fbaf03057555c3d
BLAKE2b-256 81bf5f4c523cc57b5b50fe896943401cf670712fbb43f10eaab5b73ac787380c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 acab1b4713a94758b7a23f2ad0aeb63539841cb49ea3fd5f2b87c680ee65f40a
MD5 598bc80895d2d50af70dd0c676e1ce84
BLAKE2b-256 abaea94f93d1657eaacfce6023b57c2cc2129f4da948646eaa7a646872b3cd01

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.4-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 641d039063034bd495c31a7bb9afcab5846fc69647282e4930c3bba1b46ef0f7
MD5 e64000b72386186aea996eb2e4fcd360
BLAKE2b-256 10788691425534c7d53331f1438a8c0ecc0f4a500344438d61b413932b30699b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8872bead8e9533aeaf59278b8eeee450d77bf6fa068922f0c95c6eab2e0f3bca
MD5 a44b419e818516378328a9e31988e0fd
BLAKE2b-256 a9a6056a8a53741604dadcf1eaeef90c23ca23d2df0ad27375d3daa7919f9c39

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 181a01ad1bc66fa623b9888c1ad34ff01a3fee5258e8cc9fb52655db201fc4b9
MD5 2391df569f6647f434c0515e17845be3
BLAKE2b-256 69ee7754eba75e6122d006e0e4893e2a779b5d1a2c593c639b283bbc10d4b3e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 daed72b6fdf5e6d6d400a3ff15931a3ccb49d5704ea5a45bacabc997cdefa5dd
MD5 e9f0cfb1e78caf0c4f88948919e16aa2
BLAKE2b-256 3968b6987ea4a9cc82915940b0c411c00a9fcc784e5b1262937060f2a0ce3e01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d09ed7a5e9c892278401d7fb76f395cbd0d414fd6306facebfaac4059dea5eb1
MD5 bee85205585a251fd2693cd7df5f27d3
BLAKE2b-256 114ceb7ea6c32e75f1c913ef401572ae72c9034a56ce23d5454196f712582328

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4f894c16f8d50b778ad11034f6b773dc9408ecef8ae918c5a4c096038a543171
MD5 30729afe2884d4053dbd8af0fb4e8fbc
BLAKE2b-256 3877dd63a07e72bc9bbbab352c8263fe7079be05d6baf0f7cf2ae1675a86275c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a2e1a17b7026f6add115574426373609b0914dbb52565a9f8a3100ef847d9a43
MD5 b5fad89b008dc46c788bcc706d0a2d5a
BLAKE2b-256 c14bda901cb255945dfb36fe514db14a482ffad0d746a95dd384ce3ef62912a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 262e85466e33784be4617a96e85b56ed7217cda1b7feedebc0408261446f9481
MD5 c9f453346a729bec6b1b254c60c5911b
BLAKE2b-256 67fb567159f15213e17ed9ec0fe71df7a93dbd385653d3d089a6634b3a583adc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9b643989f8f3d75849452ee9527448467b8adc7bd22fcc726e51465721234d5f
MD5 cabbce1b03b33faceff80cdd908254f9
BLAKE2b-256 8a659b9145394a629998bad99535a0c9b48e673a511991fe199c6827721acf38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24c719cb1840a0507abc665c173fca811141a181687cb08903740778b90ceb6e
MD5 eab9070f8ccc53d88158243f4dd77b66
BLAKE2b-256 81dfa7ee697d202a8eca5caeaa563ecd1ca9676d7dd91e25f7493c1ec37186d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 41edcaa33a0056d9d08154a1eefc8d9eb7621cca6137fae61d79c6ba91aa96c9
MD5 b0174e57a597f82ba83a33fb28574c3c
BLAKE2b-256 77eb5bd011e9f4ce47140873f4b06f8b57750a4fb6bf785b1c5454d7d0b96a01

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.4-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-4.0.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dfe11f008c66fd8f9f67297406b7997f7dc8c86ac6e126290b8c42d797c78bbb
MD5 e107daa82d066d5c4a455b77dc700034
BLAKE2b-256 bc814c9d38cecf92be9c68fcc60436e3e3394a78c3de103da5ee367c9977930e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 bee66d6455858fb485023297454065f27cf7330e0757362c7c287d9e1408e319
MD5 bc4d064558954e17f06720d8bfa626b4
BLAKE2b-256 4eb33357ee21eef1de41e706386fffc94f9f7af203ef233cd8b311cfcba285e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7e2a138fb9b1337d8bb03a4f7ead585b6669ecf0af971c45c3b1d14059d174c7
MD5 b39364fb6382ef0780783fc4aae2b213
BLAKE2b-256 c82c9d5a28dbfaa03c254302b9185c7d27ab8a5c6528d4358ef15624d32fc428

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1aaa9c888a9fad2d242ea777c19d16f875514c247c85f4e74a262d1286252c9c
MD5 072d2efbf7eea7d86849a300e9f76c55
BLAKE2b-256 5e5583af38b1c636ed1f2f4f68e8dee54556b0d9eb79d36e35dd8697d1eed503

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 519cb558859499234d46fdb208b5eeb09ad74ac4a3a296acc2f6195a5f1e4605
MD5 e5c1ca6b3e59560dd84ea539b871b528
BLAKE2b-256 9b084b8b11d33b6e540acdcdaf131c711a7313bf0e3a677f064c1155e643405b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4b162144431415aff19021b070421546204e83aa1533b3b51412781329254554
MD5 53a0f26eab02481e389881765a8e961d
BLAKE2b-256 c70ca0d6fa6a11940875fe21c46efbeae4cb24ba885fda8537373d632464e248

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09f9e669facde1cdee05b0b08738865968c2d942feae9a7bf756749e1e278d3a
MD5 632cacfd574785391f61b0adf0d90e2c
BLAKE2b-256 1de2f0871ce6c599675d21bea8d034789e052f05770e48889897fb7ca4fc4f22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 43e09d0435aa63c130c1158d7b1aeea8e5957b9279916d7c4e523d683f0d2e14
MD5 a01db1cf69ee845932fd098fd6b509c3
BLAKE2b-256 d88d63814c54c439c6941ce2b4c5e2680315315879e491773c3c1ea682879e12

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 7e1c2cbb4f39f7447e02334f6130df1317408152f1c3edd8bb49e670af27b0f4
MD5 8a925139f1af88c53937ead28a0c37db
BLAKE2b-256 9b350846a6325b51db32d98310f4b4d7e8941a4dd54cfb738b2dab29c8939380

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 87b67979c0e8d250952832a0ab3629488c09bd3fc7c998dd1b81d935c939f23e
MD5 551ddc73b609593526037ac7906868f6
BLAKE2b-256 29a7a1896b22ab67c84b353dce970d5e230a047b8650757f765f5a90d6e4a5ce

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 03c8b64880ce3884271bf28b95ae9be9bb71b26de2076ded0662c2b5836a887b
MD5 75b81f1d27a2b30c9c99381929ae8ca0
BLAKE2b-256 2b988e9ac5ab4aadde4bc5781151e84a29536d088d792b0ad237c7240b57fc1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4dffe471ac45b7f98fbd32d1836f23cebe43fc578b8456253b450b3c0d127b31
MD5 7fd40513ca212aac52987d44583368e6
BLAKE2b-256 9d6deeb74c2615423c268c437ffc236ba7bf6cf3b300ad0cb9f531620f45fcfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b463bcdad8a42283936727991a4e9b06fe7f682fd15c4a1106e0144ec227c7b7
MD5 ce8ca6614e692d753d0b1938c67f7038
BLAKE2b-256 6e8433de1b0c40709d708dc80d06d03a6dbfc64145c32ffff36923bc21bef6d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e9b2bcfffa2855b2cf775098c1f271735260dfb6f64bfb36f64ef41fbaed6729
MD5 efb5f7a5653f6bcc93f2204bd3fe1a8d
BLAKE2b-256 8685cb9a580686beb6a8606f807916472e743ee6e6f9f73f9081ee9f0ef10f0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0bf1cea29aa2b92ad20d266348e941bb6ad1e2a0ff6db5074a8fec28e241a9d1
MD5 3bb079253826f3289ee7a7a915a56c2f
BLAKE2b-256 4d8c598d06e5542d170d5b6902d02d30152ee44c0f838bac63efc29aed3d690a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4f06e9a9be01c67cb709a5c78035fd8eb04ace50306e13f88cad93837a2e5df6
MD5 363b95ff943d552d03ea50b319db99b1
BLAKE2b-256 657a2f8e7a0447b4193c9860e1f03b12d856d61d525025a5f20b7610e6fab9b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 edad4377d486dc7251397a72695119faa547c81ee972ee2f094a9035c2f32384
MD5 d8930ad8ced8ef952c2f8715c7790d9b
BLAKE2b-256 ee1256a9c85f25c5fe4477419ad42396b6c13446af016472d15013ca3c77af88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a4c13af9409bc0b05ea2b31f8864ea0f8086ca096b86faf90ce00fd356a6b2a6
MD5 f1a5403abc4b024aafedbefbd6089f79
BLAKE2b-256 3d5f21e5dc52f8deb6651f49e9594067d1bf6d4c15493fe69a89c21f309007d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 492bf567dd70495df8361e81b9e137921435aa7cc8e1f0f2dbfd896a0c408a36
MD5 1f219c78857a4b47b01b37cd477149ef
BLAKE2b-256 ce0a6a1cb5d01de03047237f151cd50d8344a6591e19ff8a157ffba5bde42d37

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.4-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-4.0.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 97c1bf07782af542d909f3c9b91e10a1f01f9fd533e7f383eb83b8c2f4be9b8a
MD5 15c0e8c097af29a9e7d5fe66f0210311
BLAKE2b-256 8cbac7e8a4b51b2c23e3da0c35bb095c39f050051c6d6b569aa99680688a3d69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4d34f8d7d6eaf66c633ff019efb0a3e546a388f8e6156573d85e333fa280dbcf
MD5 be3cfde8ba2c70330e18ce869f010e50
BLAKE2b-256 70c3227019bb09c750272c27eef22aa90b5e036c0e6f5076327a78b72b3b5082

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c6f27ae99967fc7f2310da647cbf2fca4020a6f49ca9e0a395564a12e7604158
MD5 8a998c40d20d636d6970de2819296ba8
BLAKE2b-256 5a7baf6298c9da248e9e4db9b9dba8cd86779f17997924189be6c0089a18a212

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7d9d859a8aa20226abadf91fd80d100fb2060294be7a9ef6818e890a29622c73
MD5 69040b75e93ed36b196189d6dd34d2c0
BLAKE2b-256 f34c644b82c457c089da011d1dd8ccddf4d05f05e307c6b6cf66350e744f0e23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1c62e963cfcd3aa34350c2dcdcd051afee67ebdaea573a3486cb147b8dcab9cf
MD5 770f793fde449621700a9378ffe6fb15
BLAKE2b-256 0308018cb1412f2fddc46aa08ea4ec91c963f78eb89ef80cc3552d53352a7e00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4d4f7fb08033cc445e49daa1f6dc928d1200ba50c7c6349bddc0186137a65de4
MD5 c5c3c0414698c3c0c137408981dfcb77
BLAKE2b-256 bc8373bed67610141e5533c1b4015c8397b31b855d8a4dcad956cd9f0ab092dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe2256f450011cd2ae72927e6b0339ab43b165710ae8b587a5abe449756b3539
MD5 d140b90389cfafb94de2de5d284b5d91
BLAKE2b-256 f4d5d59c2d19384ebc9e3ddb0fd02ca0101919ed3fe7660a044e0fe29b423a20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 30d4c6da9a1a862303bb2ea90b421e4ad0a92f3ae964ab9a8ff02d5a5be56af2
MD5 be5c6b98d3918df11447900b88d5859a
BLAKE2b-256 54c313128684882943de7164c105e2977b06f5dbeea5d8851210fa410ec331cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 aed133cb90b986420619b642a55ba7467c65362b09d88e448b605044b62ba951
MD5 d0a59bdc06ab5354262369b1d091dc9b
BLAKE2b-256 f4b9a4f1e58aa27edbb6bd955b261d147539f792183c3f90f20618e0e2e4f885

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 680a5bb278e544b70265c3ed0b56b0d212e7ce66e773c56c98438770cf76a476
MD5 b4718f7d4ea91e1dc9730e083d61dd0c
BLAKE2b-256 5324312787b99d2539d03f0b2ae8287953164cbb7c8e2bbdfe5f8715646122ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 e9873e2cae0d8b024937aa4d45dc9331a60194d633152fe0b66bb2598c226db4
MD5 48fe9a58d6071f2b158a046b221ab179
BLAKE2b-256 7b5fe0e42ee142f5e2ac65a7ec2e5b484f6d213a905058106f8ec97643b6705b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.4-cp314-cp314-android_24_x86_64.whl
  • Upload date:
  • Size: 11.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.13

File hashes

Hashes for xxtea-4.0.4-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 4abc204425fca75fdd46f50eee2a8d229d9f8f9a593dcaaaa080e3e45a9d9880
MD5 9784f8e7f3cf6fa437c266ef86c2ca45
BLAKE2b-256 01849f52745220d93dab6b237fbae4b70aa3e643e13299ad5dd1b1022c7ad432

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 d072eee075005b5fec1d51b03827aee8d711a6fa372b32a551b60ae3488eb931
MD5 85d48059b11b2fcb821c94d8f9796c1c
BLAKE2b-256 a7c1e049cfce7828d19aeb4cd1dbd8a83fcaa90da6b4fad6eae1e6d2ffbabbb4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.4-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 e943d03eeb73ac32410768eb4f55f7e80ce3de7fafdcaef239ae7d75a0ca8c72
MD5 180598eaf74da4a7d2936e4c3c799652
BLAKE2b-256 6495f17f2ff038c21246ff8d0e0bf4e4ade38eb67c0c86580a2536f58c7bcb46

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.4-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: xxtea-4.0.4-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 13.7 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-4.0.4-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 8cc741f45173f45e14edb3339a5c77af38e8581d14f114a03b5710cbfc22d725
MD5 da55642dfe7140e2ec4625963360e038
BLAKE2b-256 96c153aa43cf2215920a51d9003ca3f69f229cbe1e8ba3fa9eaab2247b9a5163

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.4-cp313-cp313t-win32.whl.

File metadata

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

File hashes

Hashes for xxtea-4.0.4-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 45b7f6cdb824b61d7c4039469e52a72bd85c68870e0e7ed27158bb1e40d916bb
MD5 408d746ff3318584cc86ec7485d2c2e2
BLAKE2b-256 1014e549690b4a3935ae3816bb725d0cea672242c2171e5ce2f170bd37d96813

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.4-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d17eaa85f372ff06fa784582014b2570c0589aaba550545c487afd3e009ff61
MD5 6b367a2e377e5cd4be2aba6bc9318803
BLAKE2b-256 a8dc09d01835f706fee18faf7058f89ba9fcedb1265389dbdf3b5cb2dc4b25b0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.4-cp313-cp313t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e7f1e1020c42b9feff4547dd214fd5c492379f63ae870b643e5eb8bf39a81e78
MD5 093af86322a6afe0f2c38c2e3308cc75
BLAKE2b-256 0123839d278f8442f7926e9bbc4382730eaa822ba2e457b3dcee8a3d64ad59b2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.4-cp313-cp313t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 07b65923e15da81fd17042e32919397e03a047cf4f70ec5c7cdc8a9eb683ea5b
MD5 05186530372b5bfe3124d5e989967744
BLAKE2b-256 d1649527d464146e79c7f0c417d277eaa279efd60e554d4a0aacf46f9b24ae11

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.4-cp313-cp313t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 48410d270fd084d154a7c0f170e1ddc40e66a9511c8bc91350489eb25357a909
MD5 e8e58b2cb1dbed7c3bffccba27de951b
BLAKE2b-256 0f47be4892da3170b688c234bf260f11a1264082309fc47edcb90308e374bca8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.4-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f234fe759016e81473de6aad70671abaa6b8eb6a282725c7e2e9f3e683b3be63
MD5 06e3f39d993d66b5944f202e02264334
BLAKE2b-256 6da4a031257825278f637bea8bb08679591478b227466fbf5ad74c2a4a268bb7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.4-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 18b76e65c30fc267f28d54fb79d032361bb07c0b05e808800ef8cae65e4f5888
MD5 c0d93142b76e82f55df933cea5ff6bae
BLAKE2b-256 7179ac8211c9a83db18ff7d2e72d3a623d252607093627d9100fcfe054abee87

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.4-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 788d2252520f18c21970334d34c1fbf327a7dfcfa0ee511888d3dbf5d86b9d00
MD5 12d4783aedb546333b8e607174b43629
BLAKE2b-256 f71fb5461acefaca355d3a9afca034a6852c1df7eb6721b9bfb801007e56e67b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.4-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7a1d88f9ad99b233cf4d3d5cbc602033d36a543ee3d43fd5b33dda3f3ff903fc
MD5 48f8be1902e7fd3f0626499abe76ec60
BLAKE2b-256 e5e8dbad675d78beb07053ef22fc8be75320f85b09e88e5c51068df4ec3b4124

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 370568fa150337ac2fdc2a535bfb4a1b5602850033e9df33f383477717734819
MD5 6489af87688dee8e0fbe1ea1ac4d13be
BLAKE2b-256 e39a805f233375b9debd2cc0f3938c87aa26afca7bf7ae62d12f9fa604ea683f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 7f59f832a5e2606e4b2bfbd126d880fdfb5220f93b7d450f7be4cd520f1f0d60
MD5 5ae6c996021543728cb955f86d1b7ae6
BLAKE2b-256 4f23ea8fcaba0831096b73ca5bebd65aefa58c47e6e0a38a9c76293866061b55

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c432c76ff01badefa786bb6293ab3dca442bf2478fec76551b0fd25840ef2169
MD5 5de61fa173942f39fc4a250392a1a23a
BLAKE2b-256 34c0445a433661e1bfc153cd3d94927140025c4a19bbca2186d50ed9d6c80786

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 01d34c2a399040377e0aacd360a5fdbeb6dde391d7c174c7f3e77843f772e022
MD5 f47eac2dc3102880dd287c15991c6351
BLAKE2b-256 3fe287cb9cccca9f280957af9082c5100f115b6d2531bda7c306796b29d6248e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9378a34d5012ad9d690a1511f6c9e3f5d6021e4766491dd951c0d0bc9701f3da
MD5 be5c3ca0e194d3a06b94518a09178748
BLAKE2b-256 8055fe923f16aeb4ff60746161d61537c19ebd6d94cb16cde21b3f9126f329e5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 05a92b6bc921af0e3f5e4be379acfb8492b28534d4df3bef5fbca314d0688508
MD5 88db91440b1e7ffbbff85616c24c88d0
BLAKE2b-256 799bbdf9b1b38be6a3161013bfd4a5ab31d781409f9fa53d221ec082cc13590d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.4-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a890e0a479455e25a210e3da2f9932d85c40d64912454ae24054e27e64b2e193
MD5 917c68043e780fc1502785dc4ea13576
BLAKE2b-256 61209700620534aabbe5c3cd505d2520fe1669f24c4ed0a56f8f1ec581a093e0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.4-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d02250daaa4c7924be1bc95a3c38a68aaadcb72ed0ad9bb3cdc8935cb4c93b0f
MD5 3d1aab9d4992c52f261052669a6e6350
BLAKE2b-256 4932077b6a802a79cd8a3e67518c1f92d76abd78f17a8107a23fce0a83587bdc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-4.0.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 923b57e64f55cfd4231122d948ca02f591b3e18136541b636cb66fc131a10b03
MD5 b069f2cc49b4105d4dc7d0c515bafeeb
BLAKE2b-256 79d879088ccdacd65d4029117408977ab594446fa0e5fbbe8d0e18e31b68cedf

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8556429268596776ba3942cd941ebd1d3081ab1b3d2c35942af3228a8bde8737
MD5 59ce29aa9624d36ed75e3665c441d776
BLAKE2b-256 77534d1c1d3bdc2df95a820449a4940d6bf637dcda6642750f81c8dccf919275

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0b53d53e61ae6f9a74d9591ecc51dbcacab909cf3362ab04cc0b7233e15a8252
MD5 54c10c586da8de02cdefd46f2308cef6
BLAKE2b-256 a110a6c5aab0935283ec993a62b50d3a411eea7344197ca2316365afaf99b365

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b84634b72a4c9ade25cd4f711416d42ebcb06c02579c5e481cf69929e770fe6
MD5 c828b414695856b1f4075b63ec70e4c0
BLAKE2b-256 be00c4a53ffb782dab2e44f398ce0285cd424f2e6a27b867db3e95b54d8addf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 94aa9d2b539211db79a6a34a1eb00ff6328c3477affe98572f24e553bd7f7243
MD5 f3d56d4a4a708dab9f0c186b628fb548
BLAKE2b-256 bff2ca01cafce595f19be6a24afaa7ffb17c8227fb6e88a01b494e6fe61d82de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 69bc97b0dc25dae8906a510b75547c4ce6a5ffaf48ca59100920e8fa0f11fa33
MD5 9c0c495a9a8c74d2fcb7ec5169350428
BLAKE2b-256 a73cdf2c28f173aeec3c4a37e17243faf6855132095a26a57df912960d7ab2f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5f5256a33897d83f4d8e323d07b0c914c3d288a3a085ceca2d4cb7241c5d5160
MD5 2ca04b5536226e6d0b0d0c028ef72ad6
BLAKE2b-256 529289b5911aa22d1988450a98071b6125565703ffd041f537e0c3ba3eec0bf9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 63ec2ee548b6332f370d4713053cb84bfd9c1ee929e9c66ea1e35952f3ef0d5a
MD5 4b7a8443cd943ffdf3c22dcbaabc28ea
BLAKE2b-256 ebd86bc1de4f2990f6bf9133b5343560ee1abac75156db3e4e42883e54eeb3a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 788cb5ccbac246fb904d474b335a4c2332554c1a6115c2328064c2d9dc1924d3
MD5 d4c4ae8d9cf366396171e0f5c9e6eb7a
BLAKE2b-256 fb4bed255da77526fbd4dc368bc330825d14fd7769e8f33782d71712b7be8b33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f1118cf05ce04f2a196d214e3f122590bb151a55e800f98732054e13dc4fdeb
MD5 8ca73e0bcf4ba9ac7ceead115bcf21f9
BLAKE2b-256 1667ad1507a8b1659ec5608312ae9a6de4af8af67951cab898104ae8b34a048d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f4c68f3b42ddec416733cf3ee06a953e3667e9feb20d02b519f9fc7a8a4ed837
MD5 56804eac5e36784183e2bb6ebbec6208
BLAKE2b-256 6bf833d0a884bc7f5d332f02b2766f84dd33e763bc760dbfd8bcc8ebfd2cc657

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1ca2727b2dd6a778ad15cf221f6ee81161f9fe25565669292a2379db1adcf8d5
MD5 90263d0cc9fc8b1ff1e62c7347c1c379
BLAKE2b-256 317531ef6cec2fd9d94a9cf1242c175778791b6459dafbb6a6a86143781dbbf8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5ac6aa01fcbae3592e91b9eceb675f2ee1d824e29c4e6c70f53d042d64ce13ad
MD5 2b7729f8a2d94d433459e1cff4a9145c
BLAKE2b-256 57de5164e8d23d6b765bfce88973bfbd81886ad3b0ffdef4e6c2e7ff9813728e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7b14e75cd68a050b6e93ee5ec4b4c5acef8031c60d5bb4f80a039d573ae50809
MD5 d9455878f159f2f0c631668b5f57c748
BLAKE2b-256 c53c11e75ac138cc7b785fd5039cd06a18779526bec543c85ca254368bbb7b12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d677b4582416258a2d8c05bb2193211beb32e2f8d82480d455f316dd996f0563
MD5 048d26a2fc3b717fae6261ef6fa5e344
BLAKE2b-256 125a498043d87861ba6573ea064151fdc85caf252045360141f77c1ecbb94b0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 683b55f7d6fb236d74cba7db0cc2c034c2c43516c809a5a5f496bd4918a57e64
MD5 71a5ebb46565cb249b52c586aa0536cc
BLAKE2b-256 e6a500557aebeaa80bbd0dd1f2283825c8b80647c5513428b473fa3d3799e8c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 44fc99deaeb227e1f13e978e7d9612a89e72c05997777db7b0c7566a0a270b4a
MD5 3bad2900156704f71ede531f0ef27852
BLAKE2b-256 b4b2206ef587f362571cd89ec76f43f6b5ee037d5e01920a61a42b7909daa797

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47e9f38b3328e71f96676cf4f3a5fc5219bde4b5aaf9a053448ed46aa914d939
MD5 809f4c818ae1981092608b5d51a0f1bc
BLAKE2b-256 86f8a559c42530ebe5290a96ed5d96ef0b37cbc9c78ad08f9c8b8653ea647930

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 139c1ccab123c741a58d8484b0fe1cb48fd2b872e13a03233b7e9807b64f6939
MD5 2e51108732d6956f8761dc3ce6a8c961
BLAKE2b-256 76ff44daf1f295b2474c805597df74511656e2dc867574f36017e2d18820954c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 b0a0a1b230b6f8d88ab2469434c9977f519538c8078557ea59e9da600a403ca3
MD5 72505d44eb6e937e7d97bd60c2c79f94
BLAKE2b-256 7bd36085ab1c867dc3ab33e92fe904dc404bc655606ac67eb10551d0de4ce06a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 58ef550c4630401865c667aead53d077ab06405a813a98d71ab05e75e13d59ed
MD5 b6c386427c776c3de5581629932d9806
BLAKE2b-256 5ee8be99bf4bdb2bfc909b124d6b5749fdd8e6184b27bb9da53d296afbccfd04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 9f3ccbdd96dee161fdd41ed1b0eb631bb6418e6ffa3f0ac46b0d53b241b28f59
MD5 52c7ed8cf3880ac1d48b67e421227710
BLAKE2b-256 2120c4fd793599222efb67c83b543f3790b743ce361e80ddc5e92b625a199627

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.4-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 c73205f8dd53d0e1bb7e93ed811f273a47f8b282119f6ce7491a5668d738bc63
MD5 554337a55b8a576ac593d82e84d55842
BLAKE2b-256 891c4f1da87ef0871b7d98baba7a462b09d1759f65744518bb13f42f6739efd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 cc4193a048da7bf763f22399e0da5de93a203a90878b2af90ddbec6b7e944279
MD5 58c1a8c23ebfe3d40062844760cdf35e
BLAKE2b-256 bebbb5e82e9eb76974df0ab3e534411933f3edeb777bd61eb777f1e88cf1c493

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 12ae458c5ffee7b3d5b24a41cabf7e680a53e7aac2f4ba2e202a26107d625c97
MD5 b427aad80ec87253b7a1166707c47a50
BLAKE2b-256 1cb8b7ab179cc11ca39052e8d726641b37dd64ad64d6a3b95198c93e7d024529

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 90284e92c769f3f8a0d73688f9a5851bf1463910407f466cca79d134e7b3e356
MD5 a29ae81f948c5556acc42984507e04cf
BLAKE2b-256 fcc30c28f7dc2a5fd084406fd1d65993aae1ff4c860900fee3083dba99dd7d95

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b561e2504db5be202dfe3d3139d8a658f6923ef5b9be559d5a27e38d70249bc1
MD5 d2bf7cbd3073eae45e046a8e94b9e0a8
BLAKE2b-256 0016b650a097a711866d5ed408f993eff037707951da2ed794908fd04d609baa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ec212698dce7f00c5cfdc8556165557cb206b37792cb68236a17788776297a8
MD5 2d66fd0ca2ab25c4d427471b269c318d
BLAKE2b-256 5b42c8e59626f0b88d067728930937bbf2a71e59af636bb15e304817ae9b79af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 72b7e03d402b7f4dd5d130330d54e9a01c16494bf60a9a0972f8569723fee509
MD5 86400ba46e65c1288147e008364dfbb2
BLAKE2b-256 3dee26347219ac57cb806395cd01fa052435a3d03aa95f230708dccf1c801fb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6bf4efe28b262132dc35d37cac724e938d468df731dfbfe36584e15a2537c82f
MD5 666d865e9ecb2b631ce183e2616ecd4b
BLAKE2b-256 410961c6bd575a013c73574796f46dd510fd3de5561ffa9394fd5f6268423025

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 cb51be844899836a93ec40e45df97fd11d6937b2bd1e75338afacd9c1fa7ab7e
MD5 7785ceed23f22101baccac2bd8f3aa74
BLAKE2b-256 9ed077bb8d73be240351847f52e795e9abf4e1ffb9e4fa83bedea2308c0afc9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cedfaa11551537517c950f5e6ee235dd603f54710dd5d672dbbcc782836172de
MD5 7ba0634ca1970d170082c36599536d5e
BLAKE2b-256 e092106d792cf7c9ce02faff387777475f8569e4f240824ac51fb9facf098153

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aa5c33ae86072e39a3323716c1e8986807a502126e9661709c299be3a0ddf4cd
MD5 de7d432e34656e487c7d8182e9d413d5
BLAKE2b-256 75fe2e08235a48ffbb79c8fb9fd8df4238c2f83ef9654f5afc1a5743c062f4b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 26d4196d15e76b72a72fd372ce4fca75e2434665c6fb25b6a5555beee048c109
MD5 0940460726e9699312c4d2f733c9cc85
BLAKE2b-256 71092b341abcf6ade8f006e7fae76bea55c415ee30da5ed89e61cb8050cfcb1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5714a6cd7ac5e3da3d8db3fee15e23b56e0f999091542a0fb729f2430ced117b
MD5 99a010bdb49bb37f535722f78e5637c7
BLAKE2b-256 f800431c92ca842bba675d0b9feb675fba43fc9e2dcab61a27a11af36187fbc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.4-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-4.0.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b40ffa94ea359b14225d919959ca89ee71249e22e1fbf5cfb19bce3aa3c0b40c
MD5 7b998c75a1d4de24eb9da6df983f2387
BLAKE2b-256 a0a3e5dc5fa0951ca2eed4d71b6d3950c3a2b66c5d709485863353aa12c4c0b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3f11484d89988648562c5b5f4e4b9c7f46aada6e4dc0e9df15a24c090d88053f
MD5 8c68baac7b19908afc7b3ae694c1d593
BLAKE2b-256 e8796a158059bed4feb884ec8a988886e72547b3d88a1278d7afecea469d0c6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7146cfd7679e52b1fdf768162b4ee2a9c2cba28ee0573d5794d391d2cd8e16b1
MD5 b472c0b9b62f3289dab0e5d8f1422670
BLAKE2b-256 55ea3783e1929f2b134a048c6f3834367203e4a7aeca0ad67ea5149ff177ce34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6e1c1fbb32a6fcb11e60db87398d3aa8757895a76e94dd844417a3a55829f177
MD5 4c6384afe0a8ea3136c8080693206f62
BLAKE2b-256 c9e7a9ac351f9851d2cfe78d31aadce9e66ed843bbcad9c4c97691ecb18841c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fb39ea3e14f40e9220823d7611268f6c9d2bf6d0b2d24503c6f28d81b43368fc
MD5 19d4b126ef67d9b4f72d8ca55a13d77a
BLAKE2b-256 3156125fee0c9301e66c36f30705f3a6bd221a42858e5a2a92a91e02b021fd31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 0dd5c8ff79826594b2957a6b4f8132e3604973a42476158d54ffcf9825091ee7
MD5 d84f8ad692a00110934fec3173b88503
BLAKE2b-256 1bc2868e723085a528e3b199cbf44e3675236189db8768d78d2104d2a71345d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7af1f112b5392b5b3f4b220998b6b96c5f3fcd2b8d4a61d3f1039571440203b
MD5 80ea219a61504ebb94c0f3588d0ea7e8
BLAKE2b-256 d8997b0708a59cdf0e97010e6f51c243f947c9ce360fec3ec765ace176424482

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 57f6e88e280c550a2b4f757e105283f1f1e9402aa66aedf2cde8f14749c2b6d4
MD5 adfc9ed24e41fc2eed4c58f78ef360b3
BLAKE2b-256 9ff7d7f49039b7a32078168014736e7b68218214194cc523f2bbe97d978d91aa

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 aa1024c0451fb1928c60564356850c6523b6e738a42742712a7ad1e7a8dd12d9
MD5 434073db45e8b8ba02756e50df250b6f
BLAKE2b-256 25884e93d957427ed357fbae02f73ed1ea28616257b71c8d3867c7b5e5b1b8fe

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ccc826898b479a2c2d4f25856f082a1ea91b8e161870323efd9949dffa772577
MD5 db1cae5cdfaed2da011e284d3d060026
BLAKE2b-256 2a77cc0bbe5c699c84ac12742aad98e5d6d25d576c84d9b0dd612423b6c129ee

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 558f13515ce0b210bdd106098446807b88bdb2e89e1ff344dab02074e6db12f4
MD5 6e67c9ab97d2e991614aa32e17f3594e
BLAKE2b-256 7fbee58aba51af190a9df9ac1c16d7cc28f4ff3284699404c304f6f725bb13e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4fc3d1a81668124b98322024cf856fe949e34ee96f606e2e552ed019fd45454c
MD5 bfa89fca082de5dc68e3da95bd403784
BLAKE2b-256 1c1e68640637fa8ddb3d8527cb0a9019320f1da7adfac01f010f4e0093c68033

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 de35ae390ec5a35c41b7e82d4818384e411d65c5783bff8973829feea6c30377
MD5 b61eb4c7c278a55d20c9fe3ba3b45093
BLAKE2b-256 63816075c7e08629aed64fc4e8423d1f9ecfdbb82c88f71a197427d8a65212ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4058e9889f512e4226eea628d05f5bf36cdbd3210f23446d1378f860e2baef61
MD5 e6121e71b5bf027fc21fcb2f09f84a8a
BLAKE2b-256 2973294ca4bab66d5640e3e0f580a0e8a78076cc9f24a14c52686b1d8a47fb50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9eec5114de1842f536266fa62b28ab3e8547b3f371121826160b9e6d5fe9a0a3
MD5 ff15350a6fba50adacb916b35a08b854
BLAKE2b-256 ac0fb444aa023b42ff9b6ca5d1d0524296409cbdbe31c8b092d4738bbf0eac5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2e435ebe9332a60269ba13ba02bb2020907ba603826649f312ac2b4749207f52
MD5 2040da8d1a6a5fe034bbcdda76814d74
BLAKE2b-256 87e1f61f7c226cd9af8e861abe0bafe145a2044d6a12dd0b0ff373412c83e1f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ad09b46ea9a561e61d61fe22202afb83f5f76421900230321dbfcfeff536efad
MD5 8108715998d9ec25baae85832b5a8ac8
BLAKE2b-256 3e6d97bcada400253506dae7a26b8cff027859c458c07d7a308ec471126a0d6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ba742044412b27e37f420c9ebaf588ee32ad9fd96f95863e85aea24ca769e274
MD5 996caf77c2612b0e4dd971b5ca65e055
BLAKE2b-256 f3053b809600311331fe2e5fdbc538e39c808e95da101e103fd82c23e8c9165c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a2c4194b90ee8278a160b8cc3f506925459be5a3977a47add890def4a642223a
MD5 e540d5c328e9081347f336d939e823a6
BLAKE2b-256 9baaa2c1194f7f9c055e05cb9222ce619a97128c2c2d4c249156023f3a0721f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.4-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-4.0.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 45aa35421a73e1271967c40a0fd1ca2e6af6431e4644bdaf98abd9b33670d0bc
MD5 61365b538c947e2b6df3146a2cc2dd8a
BLAKE2b-256 da7abb432dff46073177f0779905b9b63a164efa482e2a8f98a65eddfd65e51e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5dfeacdceb92ae6059bece12d69696ee948d53ba38e9678b8a63afbe558ffe80
MD5 27d20a35d710100e8755ab9c1e08e671
BLAKE2b-256 832e8e837765e6add6b971b3f30481bf238468ca4995e4882c50d696e24221b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 38a3d5641dc04f03374fec69fea385dacf842a6fc92d4b3a34ecbadad0fa0f5b
MD5 5521bcc07a7af890300610acfb184d43
BLAKE2b-256 cf554e87c41c044bdc5074c4f5c1b672e3662bbe480e04884fd2d3a121b4896a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 dfd0e7244a8c38c6aa90f632a564bd98ee9db20f71edb7b5340052dff71bf6aa
MD5 381e62e9eb009ff8ceed0be23b10f6aa
BLAKE2b-256 70dc38a9d76cbcfc398ac342cacac89c8faac1f724d962f618aac731ba18af18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e4dd1cb3feef0216a6d03afaf638d2c1735d95dae2eca3f20166c0202273f223
MD5 c1bf87f30d91093b2b57d6b9228bc8f4
BLAKE2b-256 19b768c4fb61064387a23108a47f1f57c1f61925b43044e505e5c21613960533

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 39531aa9e4b8bb5ee5734203d78eb53efc85aa81847ac77706b5162cdec8a9e9
MD5 de9e0a32477c1d1a7fd60f378026316b
BLAKE2b-256 48854cd25bc1ddcba32d6f6e1485cb1c69ed1f7ead4a02500799af886583f708

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16aff37f0f328c3e3384198d9cfa820c2fa5e8e2988b529c8ad12093703aff69
MD5 731a21488d99c2c324fc2ff3fee9e144
BLAKE2b-256 fd0b6c59222c28a526a8588149df754c823942cfe1641c68d18414c58f324f76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c6a165a2cb2c2118aa6b344bf17dfe253364f46ec2e5c08760305d6199e88ba3
MD5 c9a68a917050326f2e5b41f22eeacbe1
BLAKE2b-256 77a29c3da73f22d8252679135dca24a86cc9a2c9290be8bd64e55a4d84f93832

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 da68f940658cd301e620744a98e38d1e77014961dba04d1706de778998900d98
MD5 6e12a1813ab34548247deba7f7f280df
BLAKE2b-256 9462272440c24c00d0afb8ff7e6bd5eeb4b818ee0a1665dcba9a55da62c8e863

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 942a63e4f18b0f3f4cc9833296f0aa1b29eef745ca4d155908f6811979a39875
MD5 c9a02a4364b87f98ffd0d1015a993882
BLAKE2b-256 e6fe44d86df8f3ac8c5326d936309348b3ec38dc727191cb6bf678aad233b5ec

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9fdeaf7017c886118a7563f4c63ea1057fac10dca437df06660dea904a275472
MD5 ffd5f721a53a937db11636867549a9b1
BLAKE2b-256 15ddc76eb612ed1f451e3a086266fc696fe4166b89f362dbc15442cc3bcb8294

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e9ef8f9110786843dc97b461d073185a9e6a793c5d4f99d4f37ff544ae1ff04
MD5 e8de7b91abb4691d8a941684a7513f82
BLAKE2b-256 ce5de918c40444d08caddd1c56c7227a15b6c986e10564c826b1fa1b293efd03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 28fd40efb798003141758e1a9b9b60580c50b5a73d33c89c9c8b79e21c40f261
MD5 bb3eff30749187e7128c949440a3c213
BLAKE2b-256 d764a98578c253cfce41a7a9e9698ed98f679498ce776cfa82fc13440a953deb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 803333b88b3d62194b92db42609fbd55082b79e3bdfbf24589f9b917ee2ae205
MD5 698942e31b5463020345fd4613bea606
BLAKE2b-256 07e1d19f0ed43bf553245685eeb198e14b9daec31cc61c5ca17d7bb14ff05a8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7f0e303881cd476bd93cc53762148f920565e10d37a505a4e903a7e9477e1333
MD5 4de25ee495b671579a4c6a36366bc760
BLAKE2b-256 4d00ccad98fa3e107548b0ca49951519db8f04fd7b861e7f9b6f7390fa090882

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 653b2c78de285387f8e86063e8540fdec2b1deb6c2bdae685888d869b7402364
MD5 cf5956e3beaf2708111c69133dbc8be3
BLAKE2b-256 5886bbadcfc3463cf057260eee2171738479988f591c63500fc7b4a3d17a4d62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 633339e7de87334ab80d18683cf84618278b1686d96f749a9258e6960b2fa5c1
MD5 1e6ea8cf6ae5f923869d57a7518f7ab7
BLAKE2b-256 d62225b889b980b0df9e331679250cf589aa50a86224ce3f185765147c3dd658

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 84a092c846ab817b6f7895e0e2d1518438f09ae2978a52ff6d33d193465b2283
MD5 c5d811bd73e0a81b8b075a8d7a569119
BLAKE2b-256 4eec5c4eb4bfc0b5380f451807ceb5b6cdc41f87b8c53e7faa5cefa22fde1613

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 46ec54e35117f19b941bbca0a5d38dda6005b76df5b778f7cd6d4a3ac31ba3c1
MD5 6a747fabe5ae61e39b1e4b6f71315a90
BLAKE2b-256 b37f3559c228e1ec93ef9fcb0e5a4ae7eb8013b750a998a70819138762b7bb3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.4-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-4.0.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 debd26d05ff47a2e5300417b255dbd90dd6853e0fef4fe60a54240bda0839473
MD5 e30ac89425401fdd61e00ed6db7bafb7
BLAKE2b-256 505eb7cf4182fde0c370c5a9b41808a09feabd9712e21b049783a51ea9a8311b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d07624d9cb244eb5c7ab55cde89f07131a37739d326c4aab58c9de34a3f142ef
MD5 2d695f6340cdbd8349a76b1be6f509fb
BLAKE2b-256 c6f83dae13b1a95021cf6aa9200bc683b751f69576c512a675d13cd65c66b6b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9b5f60b47d2d8bebc2c6400bc646218cebf6ba855b572e0286fe3874b433e2a4
MD5 5d8fe3dd9b350e2faaa43acc23cbf2d8
BLAKE2b-256 529f8f6c1dda0afacb60873b448ed5f6352b3d60fb891ef8938eddc8a27c3832

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0311f285729b8fe5750027ff1ba0ac633664e13512c164781cd663d79ac23521
MD5 d5df3c6ea2bc02b13baf30c9a3c8e819
BLAKE2b-256 c4c9baa839ffc4a0ab431b8aff5e2fa96497a35d77a62284c1c0e3f9d87ff499

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0b1976af0eb3fbc0a10918210592ab00a167d5ba3ab0f81528b452bdfad124fe
MD5 f521cf63dd74df049be5d2f7c1d9bd64
BLAKE2b-256 47d63a76cad30c9a927e3e1fd7b718aa863403c4ba7234294fa86a2b35200c54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 00649b81fc3df9139445db52db5edda9b39b6bcfec0c8e74091e6b20c3d45043
MD5 51f74229ab066304d51940b7aabe825a
BLAKE2b-256 af0d8257e19912baaa237192c663c0a44e6fa08dbf08e8529095d816b94fa8db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba264904a8a99edf79f7154967988e4ca55084f1d206aedb0b0b2ff66bcb07eb
MD5 32d39ebcd57e31f68c553126fc0a9b9a
BLAKE2b-256 abec9254228dbc1e6cec07684836f11ead73324a9c5c54c3e2724e29fe4866c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d5c363141a4058f7966ec71159a48d8f9eda3392abdae0a428f952e3604dd335
MD5 337ec7ed518e3a84ecb44ffadbb2b7c9
BLAKE2b-256 8ea8e7ed97cd3b2f402c67e72c755d87e8b917a0ab7e2b7615704c4a0fcd88ff

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.4-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 a9d568a5fccb95f14ecef870f16979dcf68061ec0fec712757e01b354fe58d57
MD5 05c40b99aea429f6e8ede97ecf960e65
BLAKE2b-256 048c24c76572e16c6c6cbe25d65fab20bf8790162348ca7c2797ded6825d82b2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5c13a9ec5fca43a9b0f334276c4d4e161c7e24657ec6855bc8807c2950e7a62d
MD5 63a91bb77607a8df2086c30221411942
BLAKE2b-256 889f063f0422d06c1734225cbf96e9747211127e931f2e1d0f903c9618a0afc4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f6f0b4a7fd6fe5a59bb93384d0973d437ea77d1eeb13cc8350a031eb7d0ed456
MD5 1160c8a14c94a30dbce66c6a91fb306d
BLAKE2b-256 4610a9dec5b2cd94532ac028bc46b4147295b03eb8049631a5f77003a1080424

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.4-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 34.2 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-4.0.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f93f9fdc8841681bc92e90e6d4943756ab89657c873ab9e3ced1b3c0e42be30d
MD5 0dcddf8f1bbc874f702f28ae4be83980
BLAKE2b-256 a0728e84cc48e871855cb485107137ccadc70c68f293e2bf8401c8e974b5ff11

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.4-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fd20b48611dc8092f679c780f9d22136a21202665805858c96ed9814ce2ac80f
MD5 4795d3ad7ba8419f307f9c776ba319e2
BLAKE2b-256 23b7d18f111a2380d6cad83ec95c7a983c9e022f29f69de206d0f89a855ada91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a1c466c018373955927181bcdfbf2e704ebadcab4c08ea46914bd3fc084e69a5
MD5 a1102b218d59486c2d26577ac4c3845e
BLAKE2b-256 65b8f100666255f8337ee3b02f412a0f95537a13a95aac8de186c0c6253d3c97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6ab9eb13b2f761f59c4720b93a92c51aa5ae8f4d05231e3ae119fc8a5096da7b
MD5 4b4325f4fdb37c10647d2e637b63723c
BLAKE2b-256 76d9debc3310793456eb041f0dd053548f886fb06b50b0e9652ac34b4615f4b3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8103f91698129c1025da32439beb49f444b0f971754b1e8ed5c0edc6b666a5c9
MD5 00d7d1ed9fd5b121fefcab364cc784f2
BLAKE2b-256 dff504b9c07efe759d2f4be1cf9c2796af79a6596a3c769ba1d6d9b141e88ef8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.4-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 34.3 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for xxtea-4.0.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 26b2d19355bb2c969883ea7e2a42d3d6a07bda8af83a1d4368febf3e311c2c91
MD5 8f9b0c5e06ed7de1a6c4fa382755a619
BLAKE2b-256 ccae312f6b7a17e5fc523f27a659764afca297721471af6ef2ec897c5b98e6b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b14ec9fc667dc1cef4b09404b8b32e27ccb9970b577ecaf59a95d56f81a6362c
MD5 a2a32340110464ec1a6adc70ef33c037
BLAKE2b-256 79eb8cd0a0854577bce8afaa04202027afc0c57fae8db85f59737b80cc7f3c8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c83e068f770aeb55ccba9927f5b1fb48fe38255090f1665382dfdd3bfb733515
MD5 1a6c264973c0e8428ae03697a4f95197
BLAKE2b-256 40ff923965fb775d271b461edfe501bd5fe37208a509805e51031a3609377845

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.4-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-4.0.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e4adf3eac885778c1d72931fdc3a5f37c011040ec6455910e85d3fc1dd3687c
MD5 4ccd6b7e4a1f4aef1365b88a7eca148e
BLAKE2b-256 3d21eb5aaf19c8e56f961a902d52ea93b57c0108133f82ef07a7824bc792d2a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d088052472bceb812756ef6d40956678335f35d3da1ff1714317d8ab5ee07740
MD5 0f570138e9b0998ffeaf69c6957a781c
BLAKE2b-256 8a38bc8e7f84962b3ce865a7b0155220cf802d449aafa3cb227af6e81d218f60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8e0a10a7b75b3f7f0bcc2d38b8ee8bbe4a74a3f302fc8877d25ffb243e73360b
MD5 7b71fb41c7be9eff24b5a344cdfdbacb
BLAKE2b-256 ae2c4eb5f5307e1405a15d72fd1ad41a47003cb0af8247529efefd61421d8183

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e19f4dabb736f702c2a31938559f5867bf014cb87994d15e7b4235f26d2e7540
MD5 a8575edc50235d5daf4a770c5d7e234e
BLAKE2b-256 343daaaf237e19e0158ccc78eb49fe04e1b478ff33f88ed6c429f9df8b5379b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f5221ac1da58acbe187a4d97e78939394675ab80fed4ff0ebbab3cfd2d8be02f
MD5 0c46721a469489658639a4898353645c
BLAKE2b-256 53a4eb13ac23da2898361d7dfd6880ac49064ff45fc592409941f14334619bd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6932cb7617d0357f453a38912e3074a67ebdc35f332bbd270c76b974409e97b4
MD5 a365c150ddf738ea081690eecedf6e1b
BLAKE2b-256 f58e0170976e152a8b291c7c8f2caff16ce9d6f884bc225d4cf45661f23bc298

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6f4a7a4539f37edcc15f71ac0945befa083e73d5f78af3df3b2b547a11a68e5
MD5 8afc91699740ed3bc20c51d9188e05ba
BLAKE2b-256 8b18eb6f42a969e8df8205b1ecdc90c247f3c3b83a64ad432660b0dd5a88f425

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 69c84ab56496f94d4c208fe5cb48229d7f009b955a9f3cf83fdd7af330b056b8
MD5 c929078dde5953f71a4febf65e5ff5a1
BLAKE2b-256 2227b49320f9cee31a781964931d56ce302b7b727832b99ed25ad140b7cf0a1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.4-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

Release history Release notifications | RSS feed

6.1.0

214 files

6.0.0

214 files

5.3.3

214 files

5.3.2

170 files

5.3.1

170 files

5.3.0

170 files

5.2.3

170 files

5.2.2

170 files

5.2.1

170 files

5.2.0

170 files

5.1.3

170 files

5.1.2

170 files

5.1.1

170 files

5.1.0

170 files

5.0.5

169 files

5.0.2

172 files

5.0.1

172 files

5.0.0

172 files

This release

4.0.4 This release

191 files

4.0.2

191 files

4.0.1

191 files

4.0.0

191 files

3.8.0

215 files

3.7.0

209 files

3.6.0

173 files

3.5.0

135 files

3.4.0

120 files

3.3.0

136 files

3.2.0

121 files

3.1.0

101 files

3.0.0

98 files

2.0.0.post0

46 files

2.0.0

40 files

1.3.0

42 files

1.2.0

15 files

1.1.0

1 file

1.0.2

3 files

1.0.1

3 files

1.0

3 files

0.2.1

3 files

0.2.0

3 files

0.1.5

3 files

0.1.4

3 files

0.1.3

3 files

0.1.2

3 files

0.1.1

3 files

0.1

3 files

0.0.1

3 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page