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.2.tar.gz (15.0 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.2-pp311-pypy311_pp73-win_amd64.whl (13.6 kB view details)

Uploaded PyPyWindows x86-64

xxtea-4.0.2-pp311-pypy311_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.2-pp311-pypy311_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.2-pp311-pypy311_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.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (10.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

xxtea-4.0.2-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (13.5 kB view details)

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

xxtea-4.0.2-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (12.3 kB view details)

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

xxtea-4.0.2-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (12.5 kB view details)

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

xxtea-4.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (11.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-4.0.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (10.2 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

xxtea-4.0.2-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (13.5 kB view details)

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

xxtea-4.0.2-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (12.3 kB view details)

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

xxtea-4.0.2-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (12.5 kB view details)

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

xxtea-4.0.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl (11.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-4.0.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (10.2 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-4.0.2-graalpy312-graalpy250_312_native-win_amd64.whl (13.8 kB view details)

Uploaded Windows x86-64graalpy312

xxtea-4.0.2-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (12.9 kB view details)

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

xxtea-4.0.2-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (12.1 kB view details)

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

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

Uploaded graalpy312macOS 11.0+ ARM64

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

Uploaded graalpy312macOS 10.13+ x86-64

xxtea-4.0.2-graalpy311-graalpy242_311_native-win_amd64.whl (13.5 kB view details)

Uploaded Windows x86-64graalpy311

xxtea-4.0.2-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.2-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.2-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl (11.0 kB view details)

Uploaded graalpy311macOS 11.0+ ARM64

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

Uploaded graalpy311macOS 10.9+ x86-64

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

Uploaded CPython 3.14tWindows ARM64

xxtea-4.0.2-cp314-cp314t-win_amd64.whl (14.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

xxtea-4.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl (35.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxtea-4.0.2-cp314-cp314t-musllinux_1_2_s390x.whl (36.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxtea-4.0.2-cp314-cp314t-musllinux_1_2_riscv64.whl (33.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxtea-4.0.2-cp314-cp314t-musllinux_1_2_i686.whl (34.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxtea-4.0.2-cp314-cp314t-musllinux_1_2_armv7l.whl (34.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxtea-4.0.2-cp314-cp314t-musllinux_1_2_aarch64.whl (34.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxtea-4.0.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (34.2 kB view details)

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

xxtea-4.0.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (35.6 kB view details)

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

xxtea-4.0.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (39.6 kB view details)

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

xxtea-4.0.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (38.1 kB view details)

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

xxtea-4.0.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (42.0 kB view details)

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

xxtea-4.0.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (35.8 kB view details)

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

xxtea-4.0.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (34.3 kB view details)

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

xxtea-4.0.2-cp314-cp314t-macosx_11_0_arm64.whl (11.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xxtea-4.0.2-cp314-cp314t-macosx_10_15_x86_64.whl (11.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

xxtea-4.0.2-cp314-cp314-win_arm64.whl (12.3 kB view details)

Uploaded CPython 3.14Windows ARM64

xxtea-4.0.2-cp314-cp314-win_amd64.whl (13.9 kB view details)

Uploaded CPython 3.14Windows x86-64

xxtea-4.0.2-cp314-cp314-win32.whl (12.7 kB view details)

Uploaded CPython 3.14Windows x86

xxtea-4.0.2-cp314-cp314-musllinux_1_2_x86_64.whl (32.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxtea-4.0.2-cp314-cp314-musllinux_1_2_s390x.whl (33.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxtea-4.0.2-cp314-cp314-musllinux_1_2_riscv64.whl (31.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxtea-4.0.2-cp314-cp314-musllinux_1_2_ppc64le.whl (34.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxtea-4.0.2-cp314-cp314-musllinux_1_2_i686.whl (32.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xxtea-4.0.2-cp314-cp314-musllinux_1_2_armv7l.whl (32.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxtea-4.0.2-cp314-cp314-musllinux_1_2_aarch64.whl (32.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxtea-4.0.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (31.8 kB view details)

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

xxtea-4.0.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (32.9 kB view details)

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

xxtea-4.0.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (36.6 kB view details)

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

xxtea-4.0.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (35.4 kB view details)

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

xxtea-4.0.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (38.7 kB view details)

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

xxtea-4.0.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (33.2 kB view details)

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

xxtea-4.0.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (31.8 kB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

xxtea-4.0.2-cp314-cp314-macosx_10_15_x86_64.whl (10.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

xxtea-4.0.2-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (10.5 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

xxtea-4.0.2-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (10.6 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxtea-4.0.2-cp314-cp314-android_24_x86_64.whl (11.5 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

xxtea-4.0.2-cp314-cp314-android_24_arm64_v8a.whl (11.4 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

xxtea-4.0.2-cp313-cp313t-win_arm64.whl (12.2 kB view details)

Uploaded CPython 3.13tWindows ARM64

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

Uploaded CPython 3.13tWindows x86-64

xxtea-4.0.2-cp313-cp313t-win32.whl (12.6 kB view details)

Uploaded CPython 3.13tWindows x86

xxtea-4.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl (35.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

xxtea-4.0.2-cp313-cp313t-musllinux_1_2_s390x.whl (36.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

xxtea-4.0.2-cp313-cp313t-musllinux_1_2_riscv64.whl (33.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

xxtea-4.0.2-cp313-cp313t-musllinux_1_2_ppc64le.whl (36.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

xxtea-4.0.2-cp313-cp313t-musllinux_1_2_i686.whl (34.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

xxtea-4.0.2-cp313-cp313t-musllinux_1_2_armv7l.whl (34.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

xxtea-4.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl (34.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

xxtea-4.0.2-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (34.1 kB view details)

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

xxtea-4.0.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (35.5 kB view details)

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

xxtea-4.0.2-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (39.5 kB view details)

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

xxtea-4.0.2-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (38.0 kB view details)

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

xxtea-4.0.2-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (41.9 kB view details)

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

xxtea-4.0.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (35.7 kB view details)

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

xxtea-4.0.2-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (34.2 kB view details)

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

xxtea-4.0.2-cp313-cp313t-macosx_11_0_arm64.whl (11.0 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.13+ x86-64

xxtea-4.0.2-cp313-cp313-win_arm64.whl (12.0 kB view details)

Uploaded CPython 3.13Windows ARM64

xxtea-4.0.2-cp313-cp313-win_amd64.whl (13.6 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

xxtea-4.0.2-cp313-cp313-musllinux_1_2_x86_64.whl (32.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxtea-4.0.2-cp313-cp313-musllinux_1_2_s390x.whl (33.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxtea-4.0.2-cp313-cp313-musllinux_1_2_riscv64.whl (31.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxtea-4.0.2-cp313-cp313-musllinux_1_2_ppc64le.whl (34.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxtea-4.0.2-cp313-cp313-musllinux_1_2_i686.whl (32.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxtea-4.0.2-cp313-cp313-musllinux_1_2_armv7l.whl (32.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxtea-4.0.2-cp313-cp313-musllinux_1_2_aarch64.whl (32.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxtea-4.0.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (31.7 kB view details)

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

xxtea-4.0.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (32.9 kB view details)

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

xxtea-4.0.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (36.6 kB view details)

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

xxtea-4.0.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (35.3 kB view details)

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

xxtea-4.0.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (38.7 kB view details)

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

xxtea-4.0.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (33.0 kB view details)

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

xxtea-4.0.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (31.6 kB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

xxtea-4.0.2-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (10.5 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

xxtea-4.0.2-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (10.6 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxtea-4.0.2-cp313-cp313-android_21_x86_64.whl (11.5 kB view details)

Uploaded Android API level 21+ x86-64CPython 3.13

xxtea-4.0.2-cp313-cp313-android_21_arm64_v8a.whl (11.4 kB view details)

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

xxtea-4.0.2-cp312-cp312-win_arm64.whl (12.0 kB view details)

Uploaded CPython 3.12Windows ARM64

xxtea-4.0.2-cp312-cp312-win_amd64.whl (13.6 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

xxtea-4.0.2-cp312-cp312-musllinux_1_2_x86_64.whl (32.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xxtea-4.0.2-cp312-cp312-musllinux_1_2_s390x.whl (33.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxtea-4.0.2-cp312-cp312-musllinux_1_2_riscv64.whl (31.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxtea-4.0.2-cp312-cp312-musllinux_1_2_ppc64le.whl (34.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxtea-4.0.2-cp312-cp312-musllinux_1_2_i686.whl (32.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxtea-4.0.2-cp312-cp312-musllinux_1_2_armv7l.whl (32.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxtea-4.0.2-cp312-cp312-musllinux_1_2_aarch64.whl (32.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxtea-4.0.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (31.6 kB view details)

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

xxtea-4.0.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (32.8 kB view details)

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

xxtea-4.0.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (36.5 kB view details)

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

xxtea-4.0.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (35.2 kB view details)

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

xxtea-4.0.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (38.9 kB view details)

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

xxtea-4.0.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (32.9 kB view details)

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

xxtea-4.0.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (31.6 kB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

xxtea-4.0.2-cp311-cp311-win_arm64.whl (12.0 kB view details)

Uploaded CPython 3.11Windows ARM64

xxtea-4.0.2-cp311-cp311-win_amd64.whl (13.5 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

xxtea-4.0.2-cp311-cp311-musllinux_1_2_x86_64.whl (32.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxtea-4.0.2-cp311-cp311-musllinux_1_2_s390x.whl (33.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxtea-4.0.2-cp311-cp311-musllinux_1_2_riscv64.whl (31.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxtea-4.0.2-cp311-cp311-musllinux_1_2_ppc64le.whl (34.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxtea-4.0.2-cp311-cp311-musllinux_1_2_i686.whl (32.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxtea-4.0.2-cp311-cp311-musllinux_1_2_armv7l.whl (32.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxtea-4.0.2-cp311-cp311-musllinux_1_2_aarch64.whl (31.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxtea-4.0.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (31.5 kB view details)

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

xxtea-4.0.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (32.4 kB view details)

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

xxtea-4.0.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (36.1 kB view details)

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

xxtea-4.0.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (34.9 kB view details)

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

xxtea-4.0.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (38.6 kB view details)

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

xxtea-4.0.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (32.6 kB view details)

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

xxtea-4.0.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (31.6 kB view details)

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

xxtea-4.0.2-cp311-cp311-macosx_11_0_arm64.whl (10.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xxtea-4.0.2-cp311-cp311-macosx_10_9_x86_64.whl (10.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

xxtea-4.0.2-cp310-cp310-win_amd64.whl (13.7 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

xxtea-4.0.2-cp310-cp310-musllinux_1_2_x86_64.whl (33.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxtea-4.0.2-cp310-cp310-musllinux_1_2_s390x.whl (34.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxtea-4.0.2-cp310-cp310-musllinux_1_2_riscv64.whl (31.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxtea-4.0.2-cp310-cp310-musllinux_1_2_ppc64le.whl (35.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxtea-4.0.2-cp310-cp310-musllinux_1_2_i686.whl (32.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xxtea-4.0.2-cp310-cp310-musllinux_1_2_armv7l.whl (33.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxtea-4.0.2-cp310-cp310-musllinux_1_2_aarch64.whl (32.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxtea-4.0.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (32.1 kB view details)

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

xxtea-4.0.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (33.1 kB view details)

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

xxtea-4.0.2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (37.1 kB view details)

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

xxtea-4.0.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (35.8 kB view details)

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

xxtea-4.0.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (39.2 kB view details)

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

xxtea-4.0.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (33.4 kB view details)

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

xxtea-4.0.2-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (32.2 kB view details)

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

xxtea-4.0.2-cp310-cp310-macosx_11_0_arm64.whl (11.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xxtea-4.0.2-cp310-cp310-macosx_10_9_x86_64.whl (10.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

xxtea-4.0.2-cp39-cp39-win_amd64.whl (13.7 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

xxtea-4.0.2-cp39-cp39-musllinux_1_2_x86_64.whl (32.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxtea-4.0.2-cp39-cp39-musllinux_1_2_s390x.whl (33.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxtea-4.0.2-cp39-cp39-musllinux_1_2_riscv64.whl (31.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxtea-4.0.2-cp39-cp39-musllinux_1_2_ppc64le.whl (34.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxtea-4.0.2-cp39-cp39-musllinux_1_2_i686.whl (32.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxtea-4.0.2-cp39-cp39-musllinux_1_2_armv7l.whl (32.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxtea-4.0.2-cp39-cp39-musllinux_1_2_aarch64.whl (32.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxtea-4.0.2-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (31.9 kB view details)

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

xxtea-4.0.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (33.0 kB view details)

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

xxtea-4.0.2-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (36.9 kB view details)

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

xxtea-4.0.2-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (35.6 kB view details)

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

xxtea-4.0.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (39.0 kB view details)

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

xxtea-4.0.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (33.2 kB view details)

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

xxtea-4.0.2-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (32.0 kB view details)

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

xxtea-4.0.2-cp39-cp39-macosx_11_0_arm64.whl (11.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xxtea-4.0.2-cp39-cp39-macosx_10_9_x86_64.whl (10.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: xxtea-4.0.2.tar.gz
  • Upload date:
  • Size: 15.0 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.2.tar.gz
Algorithm Hash digest
SHA256 0f7731827034c1db7aca72e78767f97ecd0645ea20d8a61ed69db2cd86058743
MD5 1e5d18152a2cfd054912c53405acc681
BLAKE2b-256 7f336f28b9f4fc0cfe8943c833b11ef2a70e998579af5d3c9fd7d64dd9e93f0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4f4d4d1ec44597e2c06f4cfcb005b43568eede8513bb3639f19a55586b42a66d
MD5 5f31f9c757674d5aa23d138de552b065
BLAKE2b-256 ba0c288bd9b4481b3b3d65aa931cf27423b5a1582a943f0528a2297f8b96c62b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.2-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.2-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.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a54f1a306d3e131155c411e2f939dcbb01c54a1d73ca7c6f0b52625c800a2a45
MD5 9ba64fca5c4ddb667b8b0dac9da34e02
BLAKE2b-256 ef23d656f10f02543149faef2d8fa383b9340fb7b627f4a351210f167a0312df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b1da3f95c1c9b278be9c8544b17e792609502ce2b1fb53a3839a105067cf02e9
MD5 b60b41c36b9a0790b73f268a2de5fb34
BLAKE2b-256 5a1bc854d44366b7cf6a6b57fbdfc64c73af77d279fbf69340567c77ddf6ef8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 8f793e003c60a4b1d632959e85cf2a091905b8193f98dd83ab6d8ac26abc9a70
MD5 739dbe7ac603748d95e5ca22c48438c2
BLAKE2b-256 10327b2dd05357fe457a095c776ff52a184ef0ae17208d0df69b25ac8b209bd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4b08ddf27f71dbb5bf6a1f4c6fd01cb609fa5d6c0117164d9b7dc3e75ceada3
MD5 bc8a4648b0df5faf03480a69b8c319f1
BLAKE2b-256 799ba4859b3bce33b847c89a240611137f2bb30418966dea88b1008549a7447e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bb1fb527aabb1b89bf5f997e487ee53e1d3dcbc5256d8aca7c65dcb99c43071b
MD5 f25e494b2dda775ec271d680f0cce731
BLAKE2b-256 6bcf7514c771acf98dd9769ecd4dbda7c01008bd3f1722d159e54e906dbd1a37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c45c6104549b0ab35f377352d625ee4bd0839e70e88c9bf6ef699c7d22e241e5
MD5 3d0a98a12a54d209a64f3bea85305c54
BLAKE2b-256 afbfb289f6fd0734cca12558fb888328a94a76366798e8a9b45204b36d311208

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b2a098af84cc56acf78b389feb5d037e481a1b838a940677c8c0e9863073686e
MD5 b4c37393e1d7a269244f24da75e52ce6
BLAKE2b-256 da463c80f73e3bd4153468885c42278036f16af4966f705e56317c17e177ef77

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.2-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.2-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.2-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 89c52756ffcc1b614ea67192f11b91fac465958eec838c4eea93e33db390a427
MD5 77c20e590f8cf113100fe92980625713
BLAKE2b-256 1a0c1e559eef7f741bc31468fb7790ea8b19d32d8513811e5f05ed2416111878

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.2-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.2-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-4.0.2-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 bdb76cfdb94d66a5dbf07c24ee9fe767733e631bad56f6caf3c8980e6d1aa6fe
MD5 688f3c1e60ef6d3f311a4a755d882f1a
BLAKE2b-256 f21d77c3f51c84ca156de1257d3671cb794c269b9dfe79d5f1ac8cff7623a349

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dde2d35b62276d40a2b2bb55772060fbc780ebffd8d0a2c7496663ace49bd012
MD5 20a69cf5efc60de3f0d47df6efa98526
BLAKE2b-256 93b161addea38a15177b8896a7b32813d992d0443e2fc4a8b0e1e23f05ff714b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 69000f443321369bb06da433acf11cb1cd906d3c6918478a689df9bb4f9a7498
MD5 48901b230dac8f773e1f4e4de1e3a0d2
BLAKE2b-256 89fb6fc87e323c588c31b57f7fb5e9aa37834bc360912538205741e950089bcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 cb2daa5205934263a2ff68af924e3a77b2060cc3297f97235c19d7fd7f5b9955
MD5 5f08bc9f2680f02209da4c6aa429e0c5
BLAKE2b-256 d62e06de85363cdb51c6a7a5b74d915384f8138d6c88a745c20952bb5c89033f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 72c437eb230d237edb64945859f8877d817ffa3b8f61e4a7958911121349f0e0
MD5 2318139089bed28e0614767bf5401bbb
BLAKE2b-256 f604c2b426577271a2d6c6de976157629204934ff94f24fa078fbc76e2545aa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.2-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.2-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.2-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c78fac87e3da35a858bc2cd7c67b5584dd1ff1ec5681ee97fd32ae464a77484d
MD5 5e9b76bab4cfb7f246a0c4752a994240
BLAKE2b-256 89ff7a38e88a25839d7ef0f454e244ddd4de2db4300be28aacaa7fcef305458f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.2-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.2-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-4.0.2-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 97bc9b79f9ca35168b96664b01eb05eff6039368e2f70b5a7911ba98c97d2961
MD5 5101b9d3e991b6377d7e12dda1391da0
BLAKE2b-256 1d8d355e501947895926ab06cdf4b90f3dcc89980fc29203c9cfea7825bcef74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc3ad10fc9545e84b01870133beb0018a0c996c88865033f4bab6723514fd4a5
MD5 905df036d65a6836a0bc940bf4be7404
BLAKE2b-256 ee5662b8b6d58ee9ee141ea55de8d60f9f1ddac7c8a8617ea2a2080a985faaf3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fe61ab17fd1198e0521e895cf13e2896de06ea21e9b9a9e89c722f10c90d2de6
MD5 06b35e0ad11abef2b68161a4882c5853
BLAKE2b-256 17a8560f62e63c989aa97e5dbd68e815677459ba3f6130816be6a637454a2ba1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 221df70ef009cc7ce6af17685f2be7d8bdd630c52b320313a149226dff04ec1a
MD5 cb427892e1b3f0196fc9918d2f2726c5
BLAKE2b-256 d6a134a777813010dc8fecfe429a39c522550a40d49c60d53780fbe125cc62f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 75b3073486078d45e73f5b42d334d6ef7bcda755ff376aa3b568d2bcdee45988
MD5 ad07a69a34a492e2bd9ec5434c0bb32a
BLAKE2b-256 e5a7c59dab367b3bd7f89ce65dd1f5339dde3ede3b54297ec7ee340054fdf6aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.2-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.2-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.2-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 6f62d6a71268c78662e336937aeaedd6697ec7c7354d5c9cd64f06fa29f73904
MD5 f068dff3792b80658678e77f11ac4f8b
BLAKE2b-256 dc90fe57af7e5e61144cd64ccad2f0f2ce0f6f2e04662afc4fc1c718332ca037

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47775878ad50fd32bddc487e4187446fd5076bd66a424c4a01b1a099c1fa2f08
MD5 90177c0e75a5127321630abf8a2a386b
BLAKE2b-256 d9402c25518623c9d2f223ff6c36c1a94826401f12a23c69ef992ab0415820ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c2984fcafb894c22ff9c7b89fa31ed119fac084aec643e37e7a3df8973a12057
MD5 2e771819aa65395f466aa98aa6528e24
BLAKE2b-256 1fa0aae3bac1164b24957fb25085f627eb68a58288cefffc7a6ea93c1ada04fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-graalpy311-graalpy242_311_native-win_amd64.whl
Algorithm Hash digest
SHA256 4beda4e995b8d588a86132e120b20d7f3d56d75adb5ce2e7a36e12d7ff162045
MD5 8aeb9a4f0da2f95dd04bc4e8f7db5d7c
BLAKE2b-256 3566f0b4ce0ae60cf84c64c50d8a6faf113a5d7bcb0e5ddeb19816dbed52389c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-graalpy311-graalpy242_311_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b07944e65f58b0a017765922135649f31f47ab8d8e4036e53924397d5f96d4d3
MD5 72850ba6a2c62a08a1ad47f3bf0340ca
BLAKE2b-256 b1e691b242f78247f418852e784e40ae5b8a47dc9e089a3af60286c30d0b726d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.2-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.2-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.2-graalpy311-graalpy242_311_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 237e198d36de25f565b4a5270c480915df7ce043440d11d983a58e0c13340688
MD5 fe99861028252416c79960015f7418c3
BLAKE2b-256 13c578783b309bb1eb37703f3be6b603f6e51b414a99684bbf2c7a89c3db626f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 517675f329696782c750ef930eecb918e4250e723e40e390c4597a8e601a1f59
MD5 84eacbafc9817c4981f72834d0e46092
BLAKE2b-256 d7d5c45842dac57b9d9490ed2f0bc2b12752388d4ae45e2efd52b93980502b53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 12e0575a7395e72ce3234c7b6d5f178519267b395e7cee400668f2e7f8500162
MD5 2a6b7c3dbc6ad85209be328ad88a45f3
BLAKE2b-256 0fd4dc276228338a8e43b372d2d6df80964884e6df1c3c6c0f119119005c34df

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-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.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 efd7c4539c599cf209f726a6646a83d0df3c9deddc3b9f8ddd60a924c007831d
MD5 d493332b003da6b3addac8dfb4ff4a20
BLAKE2b-256 49eb5b9ac7ab8a8720a8a7c69de920157e95dff779d2bc089032ffb6bce71437

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 14.1 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.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 54990238455d4ea945e2129811a877afbf3525bdf4cba1e4f74c2ae2fd0e62ed
MD5 57be15c90c425defb689393e7d16471d
BLAKE2b-256 b7f626de4b6bcef0139cbf6b8e23dbafcee639c2af2ea1043b04047c8f0c0380

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-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.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 84fa183438e01711537db9f95937a7a88db0a1112a317ab466d8473d43e6db3d
MD5 587bc7fde8c08c591570dc2f30f01f3c
BLAKE2b-256 b0cdf9444a7ddfb9a71c3b1b3515da9402b2c0e36c33f2e344fa941b6b26eae3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd56f17c032f5cb5d0d04ac7125e0752aef70c0627ca5e486406a628af4b2fef
MD5 a7736448a382d6462d511c6cc9be7b26
BLAKE2b-256 17381cc9ac824282fe5b7a8b25f48584ba3a708f5d4625d9e543bf73d931b817

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 58980c66f87af8312fca08a3f9ef22c56aadd7217f94d955976c0273a184373f
MD5 0d000d74bb4a6de775f9edd4699f5eab
BLAKE2b-256 18d5a7196787043c42097bf5b9cc3fc3bf2cf2d2c88ca1f8ac9c9156e2231216

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 18a6876aa2a7661fa68844147b12a4fac0f2b0077c67ad709bc70ca492d7fdcb
MD5 e20af7ef92ef8a765cac09f410b9ff0b
BLAKE2b-256 e6d326ed9dc21457f58cb11588a3f2829196fe6fe8eb02bc84afc3b74d511b0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 249afa84f1038e352ef7ce5cb55d10416b36a13ddccf503f9a4d1caa8c5a6a74
MD5 74afae146b60eff4cb5e4aab41d92f78
BLAKE2b-256 dba1d57033457f3cffec255b612860c9f84b08eaafd6e867952d753de680138d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cb766e22acf17d5425cf83f69fe3bf341e1d697bc890cbf4debed6cd7e5f3d81
MD5 d7534a2fc4343238622196d66252dc2a
BLAKE2b-256 1d0983090701b3682e86b2892e35f4c4c82155030f440c0b689e0cf2208851c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 93db9a7d24a15df52afa8f1340286f5776a9c75f9caa00d618b3490e2fdc9022
MD5 852bbc389320dcb4edd411eb2b6c111d
BLAKE2b-256 f72f48571fb0e82802ebcf0ed5906375c7384d0b662debc266dea21543d8e0be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 25b951e3126e0f45202863158d2193efcf4b7200eb05eefce7503a6b71e6ffb3
MD5 b5a3530b09729b09525b83026111c33a
BLAKE2b-256 3090bf95b052a1b99f22fe41245fb9b941ab098ff91f0b555c6a42e68a271630

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 58554fa7844ea5dd118da2dd7412477fb87e522bbbfaec587675d73b36aa48cb
MD5 4bdc7448cceb05cd8dc230902528790f
BLAKE2b-256 ffc2ca530d975f8b343bbcce4e1dabc08a60cac2cb889bdf7a99232d1894adfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.2-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.2-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.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7644e6f0612cc11c0fab9848c2eea065dab5c32deed493bc164395b71f25f755
MD5 6e6701a0cf9b573e83835afc50856eaa
BLAKE2b-256 cb4f3d58f4f813d2dd7dc6d8abcd6e38bafc2817d99fb2b0268362a82c72cd67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6984f574d4f900ef8e0422de7922537a8f3d5cd989a082b90e062ec46ebcb0fb
MD5 2ca523ebbd99a40b5fe244f589a8ae43
BLAKE2b-256 002c50f5bfb9307c3c23153fc95e82218d71b7aa1022b88f462bc46f1c18898e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1b90c5c043ab18bb61b1e85fb1f2433ce2ced467db1337a01ca84d808f2c903a
MD5 c068817e4c6ba8fa0029504e7f1fce44
BLAKE2b-256 2301d229d3a65868fc6438fa8e86fcb2d0f78680f64ba03a7ac7b22e3cc095f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 79c77d7e90d4940d8aa9d03dfa8cfde39617584ed540b8ac40aae217a2a710c5
MD5 62dde57d4604236cf5b7bbd3fcdb937e
BLAKE2b-256 d546e8bec8a76bf62ac5d51af92174cbabd425892ed34deffc19fa2da10eac66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dfd64f8bf5c74ffe63518b511cd5a3570e33a01ef75627dd37431cd69b63e3fd
MD5 63cd9cb62ae611bcf421e666c66e57b2
BLAKE2b-256 68d76f529c0b62f7f446ba5c91ce4d4e56deddcea3e7396612c0ca27ae3400a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5b78c28cbce5dbb497c070e27d5c42074ee2a9c582079e514b63285057b7af0e
MD5 47821f517b7d0b626fd1886f0b911fd6
BLAKE2b-256 47e24a748371ae523119a61d23893bbaa07f35691e56581142b77585ebb7816d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bcade36142e59344da74fe4b3db57f0b1b223d54148bfbba45f952c331f3ba2e
MD5 bdbba3c31f76363940a9702477c845b2
BLAKE2b-256 78a76b4a75e58b5e4376ee17f9edb5f1916ffd1edf71f86e2ed00c39d66ec5ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e6291edc4c4052b7fcbfb69ab59ecc67dc0c2daa4a8ce2065fb0a87ce94b6714
MD5 d606aa663dc1f131a33dc35b96c02cbe
BLAKE2b-256 18778e85f181f78c46d2e408fa805f14ba9d24384779a3b1c79cd7eb1de36835

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 12.3 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.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 29c67a4496b9879f281d8a628ef8691c364262fcfbefe102f0ca6008109685ad
MD5 738a13c1c8d471c2cbddfaa230e5723a
BLAKE2b-256 348a8526c421559b4b2ffff6a5729e4d4760300b079f8fafa7d6d3c7f63183b6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 13.9 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7e4b820de75143114b2244d59c9cf6fa4307458c73d7bca11a53236588f5c6a0
MD5 f34a1ae4534abc5e64fc87e03af6ae45
BLAKE2b-256 d504daf8e93e2d2f3704995e4de6beca85b3f2ec8d58e795e8c3ebfea5872860

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 12.7 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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 431c218a2c230a59af7600fd2b65fbd250331789abfafc8eb0532800c11300f8
MD5 88dc9622df1532ae4f1ea8a3142359f7
BLAKE2b-256 5e41268921dd67fbe5b9d01c785002d96333391d6c20019512c89049c66e0fe4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8816ba7fa590266531cf979a65fbfaf822ee556f8c6014c64750e90004d81fd1
MD5 4e91e330da90ba7f7e11a6eb03e191f3
BLAKE2b-256 ad4e08ff5069c93d2144816ab144e1429f0cb0bcb86be0ca919d9b18efd8a11d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c21b1336955643bae211b29c768a40a92cdc5ba0ae34d70e9c65b0be49683e56
MD5 9cf5bef0fb696e4d77b39b1c644bfd3f
BLAKE2b-256 5b49256c3390f5f0edb6bb5c90a4bbd6b6b19ff29e79d90c5657f9e2ceee1062

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 590b89cfbcaa568b55ebee87b500142212e69f97b6a4766cfdc06702ba0d87be
MD5 61fcffc412a99ba27b7833649d88e2a1
BLAKE2b-256 742d4690eabb3293c88289d90ef8c61198f2fef755b920007b0d5d6a5ecd108b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e33a1bc29633aa12fffcd3cd1117ea906804e3f89fde47b07616f0300b82ed72
MD5 b104a685ad69a4a4674d2b9e6a7e43fb
BLAKE2b-256 709170306a8474274249276f5d8f295a47692b841a97f2d5c86fbac670ded5b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4df98d35c8b67b63d3ade7c05cca79492edc30f027fbbcdb410ed8d903bcf983
MD5 fd07cf5ed28c1a8bb885ecdf7e029693
BLAKE2b-256 23422fa216b30f0d1b21ff2276da82e78fd583cfee9b9559af303433468cd13a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 56abf13afcb3f19f2a152366860665eb14550aa4020321cda032c6ed9884c2f0
MD5 95d408c1709017eac0ecab4bfe69a258
BLAKE2b-256 e491b311650de06cc7a1e59a73e4eda761c38a0643b5ea6c115d25e663f8388f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f3e3ab8c298e046bf3a9004d8939c4db8c69bbe8b3c4f3881ff91f048e01df4
MD5 4671b249befd9d9d0a3ff667adefe156
BLAKE2b-256 a67509cc09d80ca630a7a93769e33da0758ed4bbf7b759d705266ded27f653ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 24a4f1e38ad591994c68cefe03aaf899e0404afec78078eb4064ce848e66c04b
MD5 01d00d282ebf5ff64f928d2807a42c88
BLAKE2b-256 415f9f7f5a695ccd0b31ca4ad699e5700839857649ab3a78531b71a0e848141e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.2-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.2-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.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 354562a902d05aa84b778504d0c8348091d2021156dd7a74f4c4fb1c59c3508a
MD5 18b7d0c53e8c97834a26a8e9647828c7
BLAKE2b-256 f050027011ba1012d825452e958c29b493b0703b1254331e123a2b796708dfee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e431f22f051cfb0f38ac0480474f8c0b9e5401f0c03ac59c9726b073794b3e51
MD5 8ed732322226cb7b5a4e03b7a412810d
BLAKE2b-256 ca405a01dcdc0eed5b9d6c122e8d7934dbdd7cba2ee5804086bf707e273bff5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f740252f54c50553673b8fd92b6bb251fa55ca502602a8fdef1d9e16af954d0f
MD5 a79fb41bde48e085495df4fddb6e9418
BLAKE2b-256 82b6212269d6d043741ea0c6470fd4b9bbe24ceca0ec05450e91ba944ab264e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2c44b7dbefb187bba7cbe738129727210f2e5fac5dc898f7c5c1706443f08148
MD5 4b9ce3125c796058b8c30dd765760963
BLAKE2b-256 e8452ca38f4f1d59a5bdd6f11d4c7b9b35b4794972be0b7658b7f37596638ceb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7a01a614afbdc010b90e5946c997249d4a0a70354988e97598802c49f421b8b8
MD5 88a287317715462e647184b1d66ae528
BLAKE2b-256 79ef703eb8402d3d89893c8840bc947083140f033beff3f78f7809298d7a8d9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 312a68ba1f3d2ada41c34dd3c88c5d109de2703dc10de1651691e3b85b6d804c
MD5 74089efe8c8e66dba38b2f2b6890ae1e
BLAKE2b-256 233e20ff0e075fce167fbb93fbf5b57bccdb276ef711cd423e9a67da9c5c1ebe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e2e9e6d6d8d941b351ad86e9fe17126eca981f91c9d4c0a2d1f45ca46d3d227
MD5 6334f3fff9e04b4b6413c061d4feeb71
BLAKE2b-256 e6b67e9e38630f66519faa39734dd86bc4e9a37ba060ed03438957cb54cad746

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 53e093073dcd255949ae11eb8cd583ad5724c8c06e70e709fa8f5e42721b09c8
MD5 a5c5c4fd84fee62415780a9aa431cd0d
BLAKE2b-256 161e169d168229ae2f30b001550b67390861e0db5f8e3ccc692fef034012cf0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 19e7498555728997723fde2f042f29aaa1e72cbabbc3decc0f9b65c59c2ecf64
MD5 8167946b31803aeb60dbfedb253f489c
BLAKE2b-256 0315318f242d3df7a6565612a9f4952b74dcbb3b6f0d3e2f27b6be9c441a4e79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 029a7491f26e5dff650dbfad999da312024ab8bc1d5ea7d9f71131ff6ab4e3eb
MD5 18f45155d26d6dab7c50206b00ad3640
BLAKE2b-256 05fa8d22146864581940de81828f24816d65970ca3f642d34993cc9cd9ddba54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 d3db2861bd646e34e6bc0cbb8a216482926d66b120e5a6171f184f3dd5ab301d
MD5 a1bcb2c625017782d942e61aada99b71
BLAKE2b-256 fa27b1c24dfbb650dc867a6e337c245cec7c67723ea929aa63687191047d4b6e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.2-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 79648bf7cfdb3afb1a5d2633a69245a2c54314800f0204d3aecd1ffa9bfe4fb6
MD5 3005dd102eb9b6f1f6fbda45c2726828
BLAKE2b-256 f0eb895ba4089718f869830c7dec85c3d0ca628db31e215b60df8b2d505062a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 c6d0e96de8b411eda12493dcafd501a6575e126cdc4354c23633d8aeb8303c8c
MD5 107d94bfabc52e7aed21bec5e8b2bece
BLAKE2b-256 5bfb344fa669cb1e18f66d0c06eac20ee70afff17a3765975d6a820eac4a79ac

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 12.2 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.2-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 6aa64aee2f8837134aca7001fb49720534b3fb7e9f87560dbf31e28a81ad69ff
MD5 3a08680f5c5eca916d3e07ccbbc15c6d
BLAKE2b-256 9032922da01bb3aa7b6f5f130892c4b719e7f7855ebf022ae483c0a9d020f782

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-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.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 fd2d1c107a90ec92bfe99e36f0f34d622f218a01158251673a3405f8e4545a9c
MD5 b36fa1c935dd53a38048727cc9d274e3
BLAKE2b-256 053a5908fb56269971f78cc333a05376bcb29917e771fa3aecf6cae91b1f1c3d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 12.6 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.2-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 4742367a292f4957565bdc34379d0c098f769a1d9b377d194c7a7f509376cdc4
MD5 59525e28d18bebb3ac439aec9e287a0f
BLAKE2b-256 488577ab3e82dad45e182530ddc026eef2964295d678162c7e8d48d874fb2f66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e9b66763ae5a50bd63e1871217026041b9e1e0931b18a70c0999765229bb938
MD5 a914119204d9c7ca6099103727d31a7b
BLAKE2b-256 891891d9d37848d2693544e18bf25d44d229b4889684bb8926d444377d7e25b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e207b817a921f4ad46f149a1c736c89f90a02d14b9b948a6a8ae30fd357e9e66
MD5 b5f414057d8e3a2f105be7606037935e
BLAKE2b-256 294dfd2263e055b85c1f323dd2fa6d7aff843c7382e35a599dcb083f12b70d24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 cab929ee7513ba7579e6170b5de77cece9a81c6ddb35e4a92a581acf69ed64b6
MD5 61451b61ee06bb7587f059305c800669
BLAKE2b-256 e4f7fd3ee37632a52941180dacd1efaff58117aea27d7cad09b40bec412455fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1b5ae9b6846c5df1eaaf9a889b5d5e90b73ba1ea8123309cd0b1248c9cd62b63
MD5 ea4db6beb4e9a236999958dad5a43e58
BLAKE2b-256 89b1667eabce8a37f648ec43a926ddf354fcf7c07569f164a602651a7b69e754

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 52b665733ec73a693f3c9095c70c233a782084048095abda17b42e3f00e7f7e4
MD5 ba43804be7270cbe7dee986f8a86780c
BLAKE2b-256 a2a1ed788e4f8a0b3c90ebfd364ec53ecc873665a4683085de409c9fb4b34d85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8701b63f962e19e0404b01a9d475bbad306e2b7bdca80b7f84ba710cfacd06e6
MD5 101004e1304e9dff1686bb5a027e70ff
BLAKE2b-256 95975db0582bb9e00ca00d8999dbdf20c522ed4d597fde88784c0f94a318f692

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c5ffdab40162632488361312782bbb0ad78e8fd9fd64ee6dcb99399f7b7c543f
MD5 1d0461fe45c84be9d9419190092892f7
BLAKE2b-256 94bcfdf67fe4d7ce3023ca0b0ef027f332d010795bd9b9f958ded3865c578aff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 936f59177297670c1f97eb6a1e3f8c2a73dc518b1e1e724155f6ebf46feceee1
MD5 e04c6ab7b28dd408c7b5cd7ecc243228
BLAKE2b-256 81d564e86bd99e9dc7a14f6d80ee6ee2728c149a203cad54b471c57f584ca944

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.2-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.2-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.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5d111edd817310801a7b4517ed0ceb07f8592765d55ac4028b7397351bebf9e6
MD5 cc2b48f7dc4b2f925cefe71dc8601d07
BLAKE2b-256 8f55367af1d6956d869dcea13aff6e7dc7429c489172bd0fe5b4d6b81e593f8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d85fe9b1bd789d4486a095412b47694567fdc71d44de9f5737eed51592808fae
MD5 4adfd45aeafeecb87761996c54ad4018
BLAKE2b-256 da2c21f250a5b6b38c74bf4fc5148ed16e3260504ccfb57bff2e7bacdef4d70c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 67c9a721484366ec9a0f56981aacd7f1eeeb4e77515074acb947d3a3069a7489
MD5 5d7c5425d03f15df2e3d01b1236845b7
BLAKE2b-256 c3e27fb7f0d99d6436789ee119538637f18c8098de3851e95e7dd5e336e5a3b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4b2a3d2177740650a82178815d0172dd26126f80b13b5046a5e267322e82ed8d
MD5 4704d9b093a0c70155f17108b3af7019
BLAKE2b-256 419d035086be55a74c2a16db90e061914a9bb9159461c8305e89ea6621dd5c7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 27c08069e429985ce485b9a68cb05e544104ce765d5d0973ff65bd7d5038d62d
MD5 4e752d12793bdbef5bc9d1cb19eafbbe
BLAKE2b-256 361465f47be7e2e48068d41509686d0384856306e36f2c54b4560c2626580848

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 43b8c85f6a8547bbfa792152fce197b7d4b9b493157a214dc8f9cefa3def7128
MD5 926ae5795942da9f0d0287233bff53da
BLAKE2b-256 35780e46bc47ec6a6a645d53191951923106b32614b1b93dc1d973db39eacd12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b07d0abd667448e912c8cf307fa1caa8446bbd5c0aa9634ba3a3680d75a69cb
MD5 8a5198375713de4e61683f63e6acae3f
BLAKE2b-256 4d8dd00aa596d367e51ca82e85248214df9332733fb54f0d659b3452328bdc0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fc92dfceb3dec8ffa97459ea1f9f8b5eb3058a9f11dc6ce37e5ea3b2b87710cf
MD5 c4d4c2d28f41da841801df7066b6f7fb
BLAKE2b-256 7616bfd7f4f7749902796a151793ef8f43346ca74a4b59048b3b373d077f97d9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 12.0 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.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 65ebe76e740898965b829a189b0d6b4a7efa196792a7040dfe4dfaa418977f48
MD5 0597d798c18de44090c5187c236ee6bd
BLAKE2b-256 a8ce1bdbb699e189ce5cc2878290651dd8979c345c25fb4fcd9e9fac28faaf81

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 13.6 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 76a3a2ed6e972253264acd653bdfe3bca61da9cee4eefe5d7b30be43163d4814
MD5 b8772374650b0a43c219154e7e7f72eb
BLAKE2b-256 46c1c49960c263adf34423bb3db6206ab2ae1d908002eb1cd25536dc7b3b626d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ffaaed189b36d0947fe567749b9b3dd5aae4ad81aceb3aa2c283910881e9279b
MD5 f052b19042d4a055a74cd6b456c19c66
BLAKE2b-256 6c7bd7189cd45fab0323a30af5b64d97abd53fba7c5a0d1eac153230b55a9ad6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c073acac80faacd0e70fa903884a205f662a98a1674f9bbdf1e3846274010fbf
MD5 f87de12bd9510b73a00f33b31be2d71d
BLAKE2b-256 c4ec74373f3c3d8c9d5520a866966b1ff7892649ce5e65a2ba72987beffba811

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 72c0d75ecd56c44b4e721df6ac669712005ac9e0fd45e0399360a500e1014089
MD5 557764b73e2f4ff58a4e1c055084fcfe
BLAKE2b-256 7505b5e05d9b3bb5f22dfd6012a11620cff0d9692a5703c2f163253f85e759ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5437c5bb6246bf01a4aa3ec21f53ff29d0ad38bd876f4039a89c948ac2db5cc3
MD5 b8323f3911e83655d0e6d4e643c97c90
BLAKE2b-256 4aea96dd41ec74abec93b8a40b840f7b2be71e5276c99062fe8f465ae83473a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4ded8454e2a24fcc6298934d2b3262e436ec46e06ce6c277ce808a18d73eb707
MD5 188a06ca7cbe9ddd5730b67a60346a43
BLAKE2b-256 ec4fc1e551d983bea6524d373b74bcfda1070be5cb8aa48a1cb71e1f71c69a26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0eaf71db8b9d4fde35c5c6e7a64a1f11bb1a18c57f685db3c7215c720448a65f
MD5 bfcfc2ad7a20b47147a7a00706d22ef0
BLAKE2b-256 ccca12865b9c89fd969f6de4e54dc7beae8aa8af0b655e30584ebeffc82e9a80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d188135853b7e73448b3c1e53703782ef82cb276a308d11f2418d40779dea0ce
MD5 b166842ea42dcad19ca57fdd7d757eed
BLAKE2b-256 a47cb04eaa242b9d7e4d3b6a518346a41ecb1e77f7de0eccc2e0c5694913e399

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a528f44833ee0b32bdc2fbeaea76429fa4c257b2390623bc6db70aef607666c
MD5 5674eb66857729b8f1692ec04ce51fcc
BLAKE2b-256 57c95fb176b8ad8b21bd4f56a838512adf71f80b801bee919b8f9f8b5e38ea99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 16cabacd7b0d60709ed6ca2cefdfe4a77a3ce9a469567bb417e6cf821e4bc11f
MD5 6c81c02c09576f02a3bf625324ea0023
BLAKE2b-256 7094fabf1985ff0253488aed93eeccb4a3d4b87695899d67a99d7c12f669b89f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.2-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.2-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.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0fd64ed5f977793fd2c6e5b3fb27f7985c5b0f4baf5f659aa72735ee75b3443f
MD5 530ae80ad387989c2f65479994df0695
BLAKE2b-256 9e4761518b8c2e803e6c8d6985669ba2c5f817da64406982f35093b70423a70f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 cd1c3ada54abd445b1c0b95800ac73d07f64fb50ef586f4eac002942dd086908
MD5 735c87ab4b0cffd22e1a18c120c2b422
BLAKE2b-256 19370afec6adb680b4a2afe246de2fa906eae42d48b694ae7f96ecbbfe665860

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 91d22116773271acd78f64ff8c829ce4efdd1ed93bbb0f0ce57d78a21259d9e6
MD5 04024933cbdc4ad07519905e4e36532b
BLAKE2b-256 fadf9a91767c1efe237bd755a440522aaee863ff1a8134de3dd148b5213f4036

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 9e020fad67bdca75ab029a47e81e48a5cdb4d62fa6cbd0a1f87b245c4dbe08fb
MD5 c92311b08b5ee5a5d9c32bfa8029d28e
BLAKE2b-256 f11b72aa0af5fbaaa2d8bbe6313f27bf527411b82684dfdd8a0f7fc8350d38d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 536a212c1bd1fb420a6be77b6bb839a4d42ca3e3f02dfc038da57eae9dab77cb
MD5 1a64a39fe17f1d13b6b4783bacfd6475
BLAKE2b-256 8c3abc3eb52953ac470650c06e58cb32d299d0a37a58ac251c70432b7806ad72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 37910dd989bff83c465b73867fcd145b17f693e2df3a431c2a398537a1cb3816
MD5 c93cbc6e45631443c8b1d5628d85f6c0
BLAKE2b-256 05bded4850a83595d776343ea46f8b2ffc9b1f1d07e95ab6b5fe9f563f1fe0ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eced53fb629c5a57c0173bfd793f35e4227c37c3e79b3f1a6033fede0b87bba7
MD5 afde2c9fa8c0dc6d87c37af09882e1ce
BLAKE2b-256 9693bd36a4a5cb0f201c49b4343f2868a335a385a6df7c3264d33a5f8cc16597

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cf46245ff4b020e1fb189d294769cc7348bf148bb3ab1b0b5d2901bf505fa2b8
MD5 398ab5ab123f46ff0dfc8adb35a78277
BLAKE2b-256 8ba6f0cffbca016b215fbf8ff71ae05e56d9b8f843c1c21f1c4bd3b492361696

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 fe7a3bd3cb6ae28bf7804aeac0e063ee1dbc9a4fe19d4c8a45a48d05d8a3423d
MD5 6531f8a72339600d526d43d86619d2e7
BLAKE2b-256 39438e143510d216935d3297e9e48142dec1fc3de28d14bc1122473b2deddb9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 76df7b567e064ef599bb3bf417329f8096df4ed9f49272a8ef618c7c5cb0ebd8
MD5 9d6003ea84dd5827947b9c89c6540d9d
BLAKE2b-256 45b3320851a0e54c0c630d0113768712231c2753d5debaf9fefc7bfba775213a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 755da6ed04fd9f200fe410bee593e83e0c51bbd33ac42577b8cc9d20e4b6091f
MD5 865964477ee71258528b96b26cb2a4ef
BLAKE2b-256 691057399f729032de0a4088a9d6d6cc8baf993f956626d8f838f50de17fc1e2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-cp313-cp313-android_21_x86_64.whl
  • Upload date:
  • Size: 11.5 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.2-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 208d65121fc6094f621aa7603d015437f818b44d5868a8d9e73d8ca1d54c0863
MD5 facc5a09b273875e8e823bf74802f9fc
BLAKE2b-256 c6ab4e5b9ef1d2d3068a355a87c1bd5d222fc9c58a84afda3bb9169d0f8496a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 361609f029c3b0c60425ba18b0e6abde62ed1bee67857e9c6ddcf34367b7ef42
MD5 87ac521771b7b32d97da9b95548d19a7
BLAKE2b-256 8f28b39009035ec13320a34b236df9f0e4bb5ff89f694d210214c6495a011d09

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 12.0 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.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 180b4f332c4665712d4f3ee8033db5b0758c39405f8e37bcb7c2401f59a2cd85
MD5 a372989095f383a4e633375b61728b1f
BLAKE2b-256 d33a55bcbc5ed7233d86df5fcbb41b94ff912a3518b0382f75189de63c84b453

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 13.6 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a265dfebdf3c6dad885581d4ecb43667bf1e6ce2837c69013b9f93f8cbe15a98
MD5 231aac61b26a99ee032e11cdc47d2b96
BLAKE2b-256 9c02a4d03066325e0b5cf65ffd33b00818efa2cf41c95fb8002531b1fe4c86ff

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 894260bf7bedefc1d4782a10525182a0ec8f93bac394ec8a35392e7b147be3b9
MD5 b4a97e977fdacc039e167b628ed2c2ed
BLAKE2b-256 fc06af51ca2b3a858f467affb8fb7ca54f63863b1270dad520b0a66643220d38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3e45ee8cf6b790bf12de99492f465db7904ab1a22ddea73d0c27bedaf235bb8
MD5 f02cb23b836d1b73d3385a03695aef88
BLAKE2b-256 d7307befc9ea2241255f018ee5622bda6116995a8f93ee9495d2501003d57444

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 72bc566c345e768a283ab4d418aca5818d6b4066757a8671264c34c4d603a3b8
MD5 c4c3eb84a8eff78440ee9dcba41ef91a
BLAKE2b-256 c5d7d2eaf8e68660bc5606d996e77328959cea4c2cd60d7a77fb9d5df65dc6a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ed4d5567e145051c292a5768272123657f7dc21dc6cf59347b5ec90ed2e6ee16
MD5 204acdc9cc12ddaca1d3b16c89275da5
BLAKE2b-256 e0d2312cae937816cc04cc118cdef61b98d48e1a138e2a310751fb605c24afc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 45a4dfeac12028374c1c9aecb4f4920431b75d4db0cde1c326a65479df0261f8
MD5 4411619dc20a2428f68719c7137a6f4a
BLAKE2b-256 3740cf98d5066ed892d0ce68b4291caa11ad34987e9c049b6d05b2bab4d6c473

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d13e79947c54f7cdf8cf3e39edeafa52bd154f31c0be3d87a763b7f7025b3f2d
MD5 a1544d0bb4a0fbe8cbfc8a83a629f26a
BLAKE2b-256 02cb52a4d881aa3a5b59c72ab49a99f45729aacc8084c73309d3cfde2b86994a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b5f39df095f217c787fc22d2b939c9d9faecd4ee4189b3c136ffdae8c6de16b5
MD5 57f555c487479ac5f5f14bf8551fd490
BLAKE2b-256 8e66791e87f9a4945cc73a1f09f0ff9d6ba7d06700b36619a64f7313ab60c1ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0aacbb1d7311f77e92ed318eb696b5f847bc9de91455cb3261a2139ebb9ea008
MD5 a49fa4a742f278d758213ac4bbfbdadf
BLAKE2b-256 b865a6110c99577d05222890d97087f744fc78723e59b7d4c611741c26f7ad2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 6ac0de7bab7870de7ae9adf52afffa06ddcc43cfdf68f6981a455b18761eafdf
MD5 17bf69908eba6aa4688fd0d241fe1bed
BLAKE2b-256 f6d3901219c01ba3070267c8ba595d8a60b24becc4b23bb90accc2a18eb742b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.2-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.2-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.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 342ce607b5badc9bda496fe2123f3bf9a80ee7664afa27d52a97ee2f3a839f32
MD5 39e997b292e98e1d6e26fdee4b3fd6d3
BLAKE2b-256 05c4c814d67074c877e9ac7677346b83e97b250e144a6367fb95b9619491bac3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 59448496b7dc6f4e1c4bc587bbda5d058a3a890dbeeaca9cc5303e77eeb1bf1c
MD5 2a01b86c9cd5c9e8a3c94ca0adeb174c
BLAKE2b-256 64b6808ca6154dfd838fc8e56c3bc658fa91c68ef293b0f818aa77335b3f8549

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3ac229dd7b5b310b1b18c47f31ea81925b0d35066084ac58d2d0ed5d5dd11da0
MD5 1c965ca84b17bd1a949924ee1f941bb8
BLAKE2b-256 5494e00127c3086394ae1422543c35859c2a08344079897154087c7470e285a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 927bf1e876ca2a135c18fe8243078a94d743b12aa315ed991bb4c77869102a27
MD5 e40175431ab2478d94a3526e29d1198f
BLAKE2b-256 347803aaeb8d00107a61f923be11cf28be881bffd5d8d5777e7c6bd71caa0f8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f6e9403a8ef413535660ec55f49da022202e454ad3b5838d7adbca653b279e27
MD5 c8ea88ebbd2193f507fc3853e337805a
BLAKE2b-256 343bace2fa534c2b2f010fd6c139d670aaf4557fbd27291759e3412ee26e2112

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6483914d08d301ab22551642061b7d0e05bb6954cda0d1b3661660f12a54acfc
MD5 838196f9c00681d8552772352a7dd0a3
BLAKE2b-256 e7aa0870c3ed00a8869f46ac650e9a52e675eab445843da52f383ec13cfbd2b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a06c70d6c4ab63df52f17a28a1d216c10ee030ba5411ffc41af758c57c1ac030
MD5 50a4aecce68a4ab63f5d55e744f4fc7b
BLAKE2b-256 5138af9b48df3252034da9bf81a4781f4bc91d5324ced08051ac33b025b7f2d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e82a991fddb90127769fbf9ae80218bca8c81be40e2c5bce68f7257f52a47341
MD5 e2cfc18e4ba192cb22e919e29979d553
BLAKE2b-256 a5db6d5d00e768165cd81ba696de6ecd2f8b6cbfc013c616f67936c9fcd306a8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 12.0 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.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 de2c586804ad6f59bb1ee13a032f47b065e4634baf1379af5b032bbf213105d2
MD5 d03d6fd1c6462d1355683ecfdff85bc4
BLAKE2b-256 a03738b642613409e87cb273494c006d71da63459e0f8eef19537a0cfe80e567

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 13.5 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6b38304f4c68af2320bd89e4f52d2c060997c87b14c8cc99119c0ad9e724587a
MD5 80f6a2731d796a4cff55004edcc1d64a
BLAKE2b-256 ef9b60d8a7929bdda2b9724550410383628d1a502d878c0c1065f803e24586bb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fe8cf431a759f5594292bef5dced8e03124129541af8cfea8aea17dd046f8ae8
MD5 5048c338a734cea0bd26ed3bdd33e00b
BLAKE2b-256 c411dc5c9d68a2b54181611ec580db1fe969dbdbea647f95f056499c6d161003

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 295638738ab9a6fc7a486857be5ec970cdeea31aef7d2ad7da5b1dfcfe4b8b9a
MD5 1cb2b6b52d75fac457309ae153ae7eb4
BLAKE2b-256 ae9623c583e892049ffa928f472e15c14eb27219561894d3c4512b0e89e22c83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e401fb6ef0132a5762c5da5bb2f9b58d5307c4a7163324f3f80e8d6c99f74bb0
MD5 57ed0a396de5c2a8fc6fe103facb4af1
BLAKE2b-256 90b8435ca28874a1abb9b4766f623a2ffa8bf287ce0bfbc4693990b0d5097140

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 080c792789963db4eeeb52db58c0f31aac655ce67b3adba1af58397818eaad84
MD5 35f749a543c26705f76ec8655e8aac24
BLAKE2b-256 07ebd32af6e73536b291c2e83f12cedbe642676072aaa4f3db1a48f822d5597b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b71256c39988a462d1ee264fb80bef26772268eec23fd95a83e9d51042e309db
MD5 c9c84822e0fb4862e8a1ff6f34e9d895
BLAKE2b-256 ae24691d1b31f0f27819eca739b7fafc6b4f8614dcd6245a75af3335248fa58b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 68a67ad461309a9a3ead6a58ab915b3984fd72913955d836a26602f4b620349b
MD5 6450ec770c3b0a98c42562c49e08d67d
BLAKE2b-256 66a9e7f366327b8841a882aead3ac060d34442950d693ab5c43860cf177c2438

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 98306847963f7e9eaf4f329e78eae6624036efaf619efea68130cf8bf42663d8
MD5 226b3a2dc95b1c28b236f1ab575efd19
BLAKE2b-256 194793b791f02b425ce5536a3eed8b7b49c3fc842133cdcf5817f38bf70a7279

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec51b5a0e2d8ca7994b52d704fd1115edf10cadd695d69ecd749770560a0bae3
MD5 8b539f9b18768eab1feccc82e28b75ed
BLAKE2b-256 9aa186c0b1c5fb63b68ec9bfae38af590758f2f16472a2c5ca1cfca23c174639

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 52f0a4278303251a93d071d545a431ccec59a0cbe1f7167a0773bc6d017ec407
MD5 02ba0ac28db611e8f243bd618ef82091
BLAKE2b-256 07f820d0eb920faf491e1bc48e214159adf9ddd34818cc5a1fc0ceeda6d68a52

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.2-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.2-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.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dc6b61bea3dcfcd79d0180560542496561aefe4eea7fbc9666973dd8816ff577
MD5 57015784cadc5da8bf77b10b7eac37ee
BLAKE2b-256 0a20944f8ff01f4e25ca7dcf63ce7fe3d7bf4e3f84c0d1375c7ca61700269c1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 db26cb326265616d5652a4752887927fb20b2bbc13aeb6b6e673340f4546b231
MD5 55b54f2a0cb7971ad28b89cc331084ab
BLAKE2b-256 5d78c1afc041515594740265f9c419fa1a873d9d02c2508acdcc6a97832f6095

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c30abd66d9bc12cba628e1c7d50a616b2c5f175253aacf356dc2f577f1aa0cf9
MD5 b412b1c8611eb0317fdad545d1696d6c
BLAKE2b-256 d4d7821dc3856ca9c33692c8930ec750bf780745f936fad3373dc98612204e4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5d40799b12f26ffc6b014e21cc45399dabd8a7b1d1c1ed6e852cdc81560f7e28
MD5 c394dd29b9a09cc8e18bc6bcbad0f86e
BLAKE2b-256 f6e2b5542934ca8f6201b7d34bafc594ff2c345a6ef82c10117089f024113c54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f2cddc510d1db971f5a745ff3fe218ac5add962ead19261527bf6bcc96d7e81e
MD5 3bbd9debd28eaca3679bf96f4002f5bc
BLAKE2b-256 b988e383a22b1f55eb4323024937bfaaaba05775e09281445e0dbd565f7169f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4285550428d70f482cbc8e9c162f11d4cd48f696df440351d24241be18a9d04c
MD5 3b4cbbc8db0ffc0de953d44571c53e7f
BLAKE2b-256 4234ce92804346289333cd2a9248556087802014f919b59dfb9b2f9d38a29dc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2c56421c8b3f99d95571b46ce6de4ec3c2caf4d5830e410c9849a39f9f3e479
MD5 7767ed68d5cf2881b4714b19cd59acab
BLAKE2b-256 78371c7791f9b87cd8a4dbc52a399bf4a1bf6d1eca9a7621a16ab3858d061a79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5c715ae3eefcc62d38c9219da715b07d929df3c4042960430e7a542b752f2d7c
MD5 2787f98194de78730c7c4c10f0ccc332
BLAKE2b-256 add2795102edf27bf4b266eb6fa28021578e75a4648d9d93c6a3f7a70410140f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-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.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 68a068b0389bd3545d43be5b0bdd92f5cc05c515f5f647d033abee4a56ba3900
MD5 7ec7062c9eee2464014989b7e4041fa9
BLAKE2b-256 836423ae186795c2185563c3b31148cc9270bd176619321cb7c77f34f8473cb0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 13.7 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5d51ffe28784d8def0c412dd0af64a09f73b57d31633f612a61af107d29810c0
MD5 ffb8156b8cffad49fb9648b9b0da25b3
BLAKE2b-256 fe89995a9f27d3b70f325c80a5f2c05cf74711b9788d39964e556857f1d1eedf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c121d1f99e9f42c89a960715bb0c2af359db768fbae6b03201874e2b66f21268
MD5 405298608e3ccbd5cb73f7f79336fecc
BLAKE2b-256 056a8d764e0897a079248e64c6fedf049feafab6c9b37eb8fee702c4a618dc5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 862ab4ecb810b68ae2f1289dc8bea3ed70dadd5a100faeeae861b9ea8812d6fe
MD5 c6cb888aca771a2e349336f4912b93e7
BLAKE2b-256 78d697b2b1cf8667477d34f6d7825e0566ffbb7c676e2c5acc54ff2c6b395c03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4d9d51fa7476a59efa70ad1a10a2ff301a57d3c2982ea2893729226fc5c06036
MD5 75b6c65de7ab2d8e4512cc7ca63a7f2f
BLAKE2b-256 b96c33487e0ae87e9c70e5be8d9a56f3ea0143f038c3def28c51abc866c38376

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7ddec4c34130581391025c728256192dd50ee4e0d8801c32695f1d6d6fb272b9
MD5 2437657959c22e0b2bd8e1a25b85f580
BLAKE2b-256 3264258986d19d476e0060e1a5220090f26cd0c4032e3acfd7f5ef2dcd65fa75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a1e895ed7bad68ebac510a743b7e8f28f50ba8f0adeecfede1c9e1fa35378c4b
MD5 f9d0a2df99487263a5a6703237fde581
BLAKE2b-256 d5099f5dfd1ec1707103a395c2297616fc94f4213c4e447e206abd4987940a8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 667515c7a866cd38f4fe1b18336ccc60958221bdeb66029ec440da43c0a2a891
MD5 ef4f7bf4d2f8987f67f35b4cd3048451
BLAKE2b-256 22b823a511eda8bad5954d84b303470b1235be85a41d8d1381a466db22df3c98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7ba6f3cee890871806801acc991c1899ef27d4e7550ccd9cb4c3372d894d759a
MD5 50ac98ae5efb62b019dcc6c3410749c0
BLAKE2b-256 a9daa79651831461ac60aacc85dc08c12d50ca4dcb80f395ca6ff2d1e7f6ed11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c2b81342fc8ffacbcf8f79e0f679153ef8906458b05e45d25b7658e6684d2c8
MD5 7009c1e20dc40f587a0ba25346a124cf
BLAKE2b-256 76aef3bcf9c78faed683af0f8a2b0d6a5411a8ef4405c141523ee87cbef4dc01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 68b63e0cf1528700a4987cdcd883d396433b7418c100e02fc91d58ecd304d6e6
MD5 f99c76706a2131b46c25a82e4dabf137
BLAKE2b-256 bfe005f593aebc3c046e1404b9992c6fdbd5d7f47d1fd511e8c1e49c66c7dcef

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.2-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.2-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.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 18f2c21830a39bc7f5cca2a1b41b0ae6635ab584d11557a4b50605f7c251aadd
MD5 819d5f07b583ca19ef078506eedaee02
BLAKE2b-256 1cd4b444b3d8ede0d8f696fce26660ba375073b526b95e9e1b51d56ffcb0d0e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 9f85885dfaadbf8025d5ceecb1234dc19979e81d8eb76c3e070cc71e36fcc53f
MD5 e27273f1c04969dbd9bf781dc63f5ed0
BLAKE2b-256 fac2200c8ac42e9a488c4ccf9a9664cbefa1f9b432154de2d33784a8baa66ea7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 145161fca62ebbf7d15a82f701ce74cd992216b7d6b7b5e203391b46d8e491ee
MD5 9d747b43b20d3f92fe5c1b40ee217f03
BLAKE2b-256 f5c820687d97d937f7b0ca716cc2a36c924c01193cf2cf15589f3a96876b8802

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 629f513f017432de59597f71bcaa8459b26181b1b45828ff25008faacdf5bc08
MD5 83324ad62085e78861df7beaf3987946
BLAKE2b-256 5208ff4993752d6297e12025ab94b8063ed78ac70aaa7e50b6c37e0108ad90d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 26ea2171671c884b482e6cb062bc27b5ee3fb6f94513ad01221ce3a152aa4952
MD5 448366212e1f3448d99178acaf3892a1
BLAKE2b-256 89e8dd31d7c32ed3dcee4aedf36691fde576c8ce0bf9d118cdb59d1592980b6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9070cde934167405dc218f24fd3acbdd80eedbdd0cd0da1593e5458636648e56
MD5 ac4b4b9dcf2ff28cb0e3bab9a1551c43
BLAKE2b-256 074a69c464edcd17da7506c81ef5674b3ccb3a2211f52b5c2a6506cbc3c20a98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 328bf8ac2a0b2f7fc4289acc5429e1045ccb30da94d475c8867ca26e6caa0e93
MD5 2c27f8c6d92f62bf93cc914723f14e8a
BLAKE2b-256 11d7c1372c5b3f830f843f32a8a628fe7e572d94f6345d7ea945b52c168cb8a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ff6090901d2cb55e007526154a34f875ab013df2e70bda83395be64a4bee8370
MD5 27e95d6a339b6fc3941632f288bc4518
BLAKE2b-256 b60ea1591a245bf7847cf27a86fab39f4fbe2c2bdc146203230e47f737e906cc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-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.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 d13439b7f9cb5a0aacb0212374a200c9618d1ce8bdaa9c4c990b597870630843
MD5 9294168637b18a4b653e2c8fde659413
BLAKE2b-256 4386e2a596f520d44c4ac37f8e9f1929bf47c83d8cf8cd2c783fd9b749361d10

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 13.7 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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 829d01f72060fa4cba4d530e84b0c94dc27eed5ec2b010969548454a6fcb1b75
MD5 9ec603ff158977a14f582ef8a68a007b
BLAKE2b-256 e0facee65c9b9317c402d58b59cea282234e170bdb8998498ce4acf979c6c679

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0acd61c119c401f63d300371ec1ddabc25df8c7e50448300137bab7cf2e9ef65
MD5 87a96a1077dd062e2f858bd9c68c7e3d
BLAKE2b-256 13e8348ad28dd199cb710df17bc9d21935d442fb3ef8d2dc3b6584ecd9cf0ee6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 32.8 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.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f2cfa0362d9af75f3e1188fd5f98d86ca09272a8aba0c0163f6bbc7f0457b3d9
MD5 83edda3429748aedd04b428e3c762b01
BLAKE2b-256 ec670d1bf89b72c106739dfdb1c44071d29dd4b24143f798e373483063fc236f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-cp39-cp39-musllinux_1_2_s390x.whl
  • Upload date:
  • Size: 33.9 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.2-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 106d7f8a5df1cb5b7c2a3232d96ccb02666cd49d805c21e5b79708cf1d59b4eb
MD5 c6ea2cde19efd50d0a45bc79e33ee22f
BLAKE2b-256 2372a4225aea2ebb0f07121fd3bc4832d4fa7431bf60e417c515ab442c5502f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4134f586deeb5a0eb25571bb7a6ad1aff5365de6d7b8d8f9905ca7fb9f0ae135
MD5 8b7b8becf3b85a74304525ba8b196a74
BLAKE2b-256 8d557aebd1db16fff03df04d67fbbcb99374d9ffed88fe54a8005b298f91f096

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f95348548f2b86caeafd555c26d5874681e464b8233bddeeb4e11bf2d2b6d822
MD5 b6bd9f4feb70e3e7337a347178fb7afa
BLAKE2b-256 05fe039869c38a9c589a998ab0b6715d83105e750b5e3f29e7f5d27eda346586

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f590decb940a300eba1bb3cd5c0c9244cd3c39db5aa8c338b39846bebb6198c6
MD5 47bff69f43156f1393b3d146f3e90e44
BLAKE2b-256 73217ea1b8c125fe76c9c7680dbf1b047f224dc4b9ad3f36396fad222d984a47

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 32.9 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.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 779408328e1403ff2fc7ecb494eae288be785f72be1133b09561ac1f8f13b426
MD5 0244f1373b9846e7d0e4ed8798a797dd
BLAKE2b-256 a03c031ae70a75cb3d9bb8fc74b3871757ecf31a8af769ddba0667bebda51227

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c1db7ab3fe4363f00efa6d1e7b2826d72bf0e2b6dcc43e4bc991ccd1f25cc17
MD5 b24e74c6ee58108a31ce50b73de20fea
BLAKE2b-256 5fa65a3fd53b48b1e8583b86fa014dcb99c151e24491dfb6426621e98f5c1f9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 08c62f75d464d1b71c3a5b8056532d9be767e17f1ec4c15c6ce4301affbf8c4f
MD5 ad5774dc61e7e72eb7d6015e943877d0
BLAKE2b-256 ac09467dd2676195cf4e13016d8dc5ca66343e9768fda0c33dae0535fcc087a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.2-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.2-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.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8734bb0fea17ea02e91e6e12041213ed74d72183e9f4820f02160dff059f58ab
MD5 6bf7517c22b2bc3427f4420a1632c64b
BLAKE2b-256 8fe20f2e35925513555962380f1f5899f6f75b30c6802301c8847411223e5744

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 22755a82d2d5542415bb25b7c072935f4a1744a77359c6fd4a167a0d30d14011
MD5 ef2bdf23a1f439633edf1b7a31c6e1eb
BLAKE2b-256 237f2cfd3b917f00bcff66eb0c34289c2c90926a6bcb72698f077c438a95fba9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4b6c7154a419a4334f96ccc36b36d654068bca0bd1e742d37f44d93f0afd40d0
MD5 9272b176cc2a688dfb1780e22dc21d76
BLAKE2b-256 d5830c152dbc8c83b1088db5c93fb828427ec4eecb4494ee0cdc27b194c6fa49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 eb2339a3d99b8d0ef4b157b1255bfacd974a747354a4d2411af3d4b75814f525
MD5 921fdf982c95c4b820da1ff79f2feb4e
BLAKE2b-256 84a447fe83431260cc24a781a97f807a21be93dc0677d055bc5e21e3cfd5391e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e474f78702ef0bfa556d8da301ffe366beeb7831419a766635a87f2a636a2181
MD5 03267d7e7caafec369218a6e92d5b372
BLAKE2b-256 9f9dfb74f1739a46e414cfbb83405906acb3d459ea7e315297196c4298954048

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9a57f92e670460c82a4dd55c1257117711018763ed3cc9428f69c8107642b534
MD5 d7816f4218f0bebff47c7aa45eedeca3
BLAKE2b-256 2695d2d9c8dfff4899130c6d961d8f6c82fe53e4cd76c89d0fa904766d4dc220

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.2-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 11.0 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.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 647deac93a56583d5be598ff53da0c49ad74d97e49bd7aa2b8f2317b1af433ee
MD5 ad49227125ffc0baf93c345cde4dae4e
BLAKE2b-256 0ba9042c1a574f91701ea11dc2335d8963f71355cda88b34e9bac6732451a7f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c3be89d4a067c419423a03805e4fb88e58b4237cd9fbdc81d7a0e3bc685b334d
MD5 6c51ca53db25655f30dd7351ebe30d47
BLAKE2b-256 5f6c7904edce76c1354393584995b3541accee6c51b2ad1a5dff1f66914da95e

See more details on using hashes here.

Provenance

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

4.0.4

191 files

This release

4.0.2 This release

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