Skip to main content

xxtea is a simple block cipher

Project description

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

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

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

Installation

$ pip install xxtea -U

Usage

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

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

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

Project details


Download files

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

Source Distribution

xxtea-3.8.0.tar.gz (10.7 kB view details)

Uploaded Source

Built Distributions

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

xxtea-3.8.0-pp311-pypy311_pp73-win_amd64.whl (12.5 kB view details)

Uploaded PyPyWindows x86-64

xxtea-3.8.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (11.5 kB view details)

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

xxtea-3.8.0-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (10.7 kB view details)

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

xxtea-3.8.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (10.9 kB view details)

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

xxtea-3.8.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (9.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-3.8.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (9.0 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-3.8.0-pp310-pypy310_pp73-win_amd64.whl (12.5 kB view details)

Uploaded PyPyWindows x86-64

xxtea-3.8.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (11.5 kB view details)

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

xxtea-3.8.0-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (10.7 kB view details)

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

xxtea-3.8.0-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (11.0 kB view details)

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

xxtea-3.8.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (9.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-3.8.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (9.1 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-3.8.0-pp39-pypy39_pp73-win_amd64.whl (12.5 kB view details)

Uploaded PyPyWindows x86-64

xxtea-3.8.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (11.5 kB view details)

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

xxtea-3.8.0-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (10.7 kB view details)

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

xxtea-3.8.0-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (11.0 kB view details)

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

xxtea-3.8.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (9.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-3.8.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (9.1 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-3.8.0-pp38-pypy38_pp73-win_amd64.whl (12.4 kB view details)

Uploaded PyPyWindows x86-64

xxtea-3.8.0-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (11.3 kB view details)

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

xxtea-3.8.0-pp38-pypy38_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (10.4 kB view details)

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

xxtea-3.8.0-pp38-pypy38_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (10.8 kB view details)

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

xxtea-3.8.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (9.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-3.8.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (8.7 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

xxtea-3.8.0-graalpy312-graalpy250_312_native-win_amd64.whl (12.6 kB view details)

Uploaded Windows x86-64graalpy312

xxtea-3.8.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (11.5 kB view details)

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

xxtea-3.8.0-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (10.5 kB view details)

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

xxtea-3.8.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (10.0 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

xxtea-3.8.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl (9.1 kB view details)

Uploaded graalpy312macOS 10.13+ x86-64

xxtea-3.8.0-graalpy311-graalpy242_311_native-win_amd64.whl (12.4 kB view details)

Uploaded Windows x86-64graalpy311

xxtea-3.8.0-graalpy311-graalpy242_311_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (11.3 kB view details)

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

xxtea-3.8.0-graalpy311-graalpy242_311_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (10.3 kB view details)

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

xxtea-3.8.0-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl (9.8 kB view details)

Uploaded graalpy311macOS 11.0+ ARM64

xxtea-3.8.0-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl (9.0 kB view details)

Uploaded graalpy311macOS 10.9+ x86-64

xxtea-3.8.0-cp314-cp314t-win_arm64.whl (11.5 kB view details)

Uploaded CPython 3.14tWindows ARM64

xxtea-3.8.0-cp314-cp314t-win_amd64.whl (13.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

xxtea-3.8.0-cp314-cp314t-win32.whl (12.0 kB view details)

Uploaded CPython 3.14tWindows x86

xxtea-3.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl (28.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxtea-3.8.0-cp314-cp314t-musllinux_1_2_s390x.whl (28.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxtea-3.8.0-cp314-cp314t-musllinux_1_2_riscv64.whl (26.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxtea-3.8.0-cp314-cp314t-musllinux_1_2_ppc64le.whl (29.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxtea-3.8.0-cp314-cp314t-musllinux_1_2_i686.whl (28.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxtea-3.8.0-cp314-cp314t-musllinux_1_2_armv7l.whl (27.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxtea-3.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl (28.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxtea-3.8.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (27.2 kB view details)

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

xxtea-3.8.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (30.4 kB view details)

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

xxtea-3.8.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (30.9 kB view details)

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

xxtea-3.8.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (32.0 kB view details)

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

xxtea-3.8.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (29.6 kB view details)

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

xxtea-3.8.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (28.9 kB view details)

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

xxtea-3.8.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (28.5 kB view details)

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

xxtea-3.8.0-cp314-cp314t-macosx_11_0_arm64.whl (10.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xxtea-3.8.0-cp314-cp314t-macosx_10_15_x86_64.whl (9.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

xxtea-3.8.0-cp314-cp314-win_arm64.whl (11.3 kB view details)

Uploaded CPython 3.14Windows ARM64

xxtea-3.8.0-cp314-cp314-win_amd64.whl (12.7 kB view details)

Uploaded CPython 3.14Windows x86-64

xxtea-3.8.0-cp314-cp314-win32.whl (11.7 kB view details)

Uploaded CPython 3.14Windows x86

xxtea-3.8.0-cp314-cp314-musllinux_1_2_x86_64.whl (26.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxtea-3.8.0-cp314-cp314-musllinux_1_2_s390x.whl (26.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxtea-3.8.0-cp314-cp314-musllinux_1_2_riscv64.whl (24.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxtea-3.8.0-cp314-cp314-musllinux_1_2_ppc64le.whl (27.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxtea-3.8.0-cp314-cp314-musllinux_1_2_i686.whl (26.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xxtea-3.8.0-cp314-cp314-musllinux_1_2_armv7l.whl (25.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxtea-3.8.0-cp314-cp314-musllinux_1_2_aarch64.whl (26.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxtea-3.8.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (25.3 kB view details)

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

xxtea-3.8.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (28.3 kB view details)

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

xxtea-3.8.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (28.9 kB view details)

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

xxtea-3.8.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (30.0 kB view details)

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

xxtea-3.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (27.5 kB view details)

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

xxtea-3.8.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (26.9 kB view details)

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

xxtea-3.8.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (26.3 kB view details)

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

xxtea-3.8.0-cp314-cp314-macosx_11_0_arm64.whl (10.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xxtea-3.8.0-cp314-cp314-macosx_10_15_x86_64.whl (9.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

xxtea-3.8.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (9.2 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

xxtea-3.8.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (10.0 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

xxtea-3.8.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl (9.7 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxtea-3.8.0-cp314-cp314-android_24_x86_64.whl (10.1 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

xxtea-3.8.0-cp314-cp314-android_24_arm64_v8a.whl (10.2 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

xxtea-3.8.0-cp313-cp313t-win_arm64.whl (11.3 kB view details)

Uploaded CPython 3.13tWindows ARM64

xxtea-3.8.0-cp313-cp313t-win_amd64.whl (12.7 kB view details)

Uploaded CPython 3.13tWindows x86-64

xxtea-3.8.0-cp313-cp313t-win32.whl (11.7 kB view details)

Uploaded CPython 3.13tWindows x86

xxtea-3.8.0-cp313-cp313t-musllinux_1_2_x86_64.whl (28.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

xxtea-3.8.0-cp313-cp313t-musllinux_1_2_s390x.whl (28.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

xxtea-3.8.0-cp313-cp313t-musllinux_1_2_riscv64.whl (26.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

xxtea-3.8.0-cp313-cp313t-musllinux_1_2_ppc64le.whl (29.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

xxtea-3.8.0-cp313-cp313t-musllinux_1_2_i686.whl (28.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

xxtea-3.8.0-cp313-cp313t-musllinux_1_2_armv7l.whl (27.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

xxtea-3.8.0-cp313-cp313t-musllinux_1_2_aarch64.whl (28.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

xxtea-3.8.0-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (27.2 kB view details)

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

xxtea-3.8.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (30.3 kB view details)

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

xxtea-3.8.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (30.8 kB view details)

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

xxtea-3.8.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (31.9 kB view details)

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

xxtea-3.8.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (29.5 kB view details)

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

xxtea-3.8.0-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (28.8 kB view details)

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

xxtea-3.8.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (28.3 kB view details)

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

xxtea-3.8.0-cp313-cp313t-macosx_11_0_arm64.whl (10.3 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

xxtea-3.8.0-cp313-cp313t-macosx_10_13_x86_64.whl (9.7 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

xxtea-3.8.0-cp313-cp313-win_arm64.whl (11.1 kB view details)

Uploaded CPython 3.13Windows ARM64

xxtea-3.8.0-cp313-cp313-win_amd64.whl (12.4 kB view details)

Uploaded CPython 3.13Windows x86-64

xxtea-3.8.0-cp313-cp313-win32.whl (11.4 kB view details)

Uploaded CPython 3.13Windows x86

xxtea-3.8.0-cp313-cp313-musllinux_1_2_x86_64.whl (26.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxtea-3.8.0-cp313-cp313-musllinux_1_2_s390x.whl (26.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxtea-3.8.0-cp313-cp313-musllinux_1_2_riscv64.whl (24.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxtea-3.8.0-cp313-cp313-musllinux_1_2_ppc64le.whl (27.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxtea-3.8.0-cp313-cp313-musllinux_1_2_i686.whl (26.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxtea-3.8.0-cp313-cp313-musllinux_1_2_armv7l.whl (25.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxtea-3.8.0-cp313-cp313-musllinux_1_2_aarch64.whl (26.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxtea-3.8.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (25.2 kB view details)

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

xxtea-3.8.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (28.3 kB view details)

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

xxtea-3.8.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (28.7 kB view details)

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

xxtea-3.8.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (30.0 kB view details)

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

xxtea-3.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (27.4 kB view details)

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

xxtea-3.8.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (26.9 kB view details)

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

xxtea-3.8.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (26.3 kB view details)

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

xxtea-3.8.0-cp313-cp313-macosx_11_0_arm64.whl (10.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xxtea-3.8.0-cp313-cp313-macosx_10_13_x86_64.whl (9.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

xxtea-3.8.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (9.2 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

xxtea-3.8.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (10.0 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

xxtea-3.8.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl (9.7 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxtea-3.8.0-cp313-cp313-android_21_x86_64.whl (10.1 kB view details)

Uploaded Android API level 21+ x86-64CPython 3.13

xxtea-3.8.0-cp313-cp313-android_21_arm64_v8a.whl (10.2 kB view details)

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

xxtea-3.8.0-cp312-cp312-win_arm64.whl (11.1 kB view details)

Uploaded CPython 3.12Windows ARM64

xxtea-3.8.0-cp312-cp312-win_amd64.whl (12.4 kB view details)

Uploaded CPython 3.12Windows x86-64

xxtea-3.8.0-cp312-cp312-win32.whl (11.4 kB view details)

Uploaded CPython 3.12Windows x86

xxtea-3.8.0-cp312-cp312-musllinux_1_2_x86_64.whl (26.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xxtea-3.8.0-cp312-cp312-musllinux_1_2_s390x.whl (26.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxtea-3.8.0-cp312-cp312-musllinux_1_2_riscv64.whl (24.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxtea-3.8.0-cp312-cp312-musllinux_1_2_ppc64le.whl (27.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxtea-3.8.0-cp312-cp312-musllinux_1_2_i686.whl (26.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxtea-3.8.0-cp312-cp312-musllinux_1_2_armv7l.whl (25.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxtea-3.8.0-cp312-cp312-musllinux_1_2_aarch64.whl (26.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxtea-3.8.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (25.1 kB view details)

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

xxtea-3.8.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (28.3 kB view details)

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

xxtea-3.8.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (28.7 kB view details)

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

xxtea-3.8.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (30.2 kB view details)

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

xxtea-3.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (27.3 kB view details)

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

xxtea-3.8.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (26.8 kB view details)

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

xxtea-3.8.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (26.1 kB view details)

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

xxtea-3.8.0-cp312-cp312-macosx_11_0_arm64.whl (10.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xxtea-3.8.0-cp312-cp312-macosx_10_13_x86_64.whl (9.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

xxtea-3.8.0-cp311-cp311-win_arm64.whl (11.1 kB view details)

Uploaded CPython 3.11Windows ARM64

xxtea-3.8.0-cp311-cp311-win_amd64.whl (12.4 kB view details)

Uploaded CPython 3.11Windows x86-64

xxtea-3.8.0-cp311-cp311-win32.whl (11.4 kB view details)

Uploaded CPython 3.11Windows x86

xxtea-3.8.0-cp311-cp311-musllinux_1_2_x86_64.whl (26.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxtea-3.8.0-cp311-cp311-musllinux_1_2_s390x.whl (26.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxtea-3.8.0-cp311-cp311-musllinux_1_2_riscv64.whl (24.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxtea-3.8.0-cp311-cp311-musllinux_1_2_ppc64le.whl (27.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxtea-3.8.0-cp311-cp311-musllinux_1_2_i686.whl (26.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxtea-3.8.0-cp311-cp311-musllinux_1_2_armv7l.whl (25.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxtea-3.8.0-cp311-cp311-musllinux_1_2_aarch64.whl (26.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxtea-3.8.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (25.0 kB view details)

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

xxtea-3.8.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (27.9 kB view details)

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

xxtea-3.8.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (28.4 kB view details)

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

xxtea-3.8.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (29.9 kB view details)

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

xxtea-3.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (27.0 kB view details)

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

xxtea-3.8.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (26.5 kB view details)

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

xxtea-3.8.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (26.0 kB view details)

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

xxtea-3.8.0-cp311-cp311-macosx_11_0_arm64.whl (10.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xxtea-3.8.0-cp311-cp311-macosx_10_9_x86_64.whl (9.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

xxtea-3.8.0-cp310-cp310-win_arm64.whl (11.2 kB view details)

Uploaded CPython 3.10Windows ARM64

xxtea-3.8.0-cp310-cp310-win_amd64.whl (12.6 kB view details)

Uploaded CPython 3.10Windows x86-64

xxtea-3.8.0-cp310-cp310-win32.whl (11.5 kB view details)

Uploaded CPython 3.10Windows x86

xxtea-3.8.0-cp310-cp310-musllinux_1_2_x86_64.whl (27.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxtea-3.8.0-cp310-cp310-musllinux_1_2_s390x.whl (27.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxtea-3.8.0-cp310-cp310-musllinux_1_2_riscv64.whl (25.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxtea-3.8.0-cp310-cp310-musllinux_1_2_ppc64le.whl (28.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxtea-3.8.0-cp310-cp310-musllinux_1_2_i686.whl (27.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xxtea-3.8.0-cp310-cp310-musllinux_1_2_armv7l.whl (26.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxtea-3.8.0-cp310-cp310-musllinux_1_2_aarch64.whl (27.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxtea-3.8.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (25.6 kB view details)

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

xxtea-3.8.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (28.9 kB view details)

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

xxtea-3.8.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (29.3 kB view details)

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

xxtea-3.8.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (30.7 kB view details)

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

xxtea-3.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (27.8 kB view details)

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

xxtea-3.8.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (27.3 kB view details)

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

xxtea-3.8.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (26.7 kB view details)

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

xxtea-3.8.0-cp310-cp310-macosx_11_0_arm64.whl (10.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xxtea-3.8.0-cp310-cp310-macosx_10_9_x86_64.whl (9.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

xxtea-3.8.0-cp39-cp39-win_arm64.whl (11.2 kB view details)

Uploaded CPython 3.9Windows ARM64

xxtea-3.8.0-cp39-cp39-win_amd64.whl (12.6 kB view details)

Uploaded CPython 3.9Windows x86-64

xxtea-3.8.0-cp39-cp39-win32.whl (11.5 kB view details)

Uploaded CPython 3.9Windows x86

xxtea-3.8.0-cp39-cp39-musllinux_1_2_x86_64.whl (26.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxtea-3.8.0-cp39-cp39-musllinux_1_2_s390x.whl (27.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxtea-3.8.0-cp39-cp39-musllinux_1_2_riscv64.whl (25.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxtea-3.8.0-cp39-cp39-musllinux_1_2_ppc64le.whl (28.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxtea-3.8.0-cp39-cp39-musllinux_1_2_i686.whl (27.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxtea-3.8.0-cp39-cp39-musllinux_1_2_armv7l.whl (26.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxtea-3.8.0-cp39-cp39-musllinux_1_2_aarch64.whl (26.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxtea-3.8.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (25.4 kB view details)

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

xxtea-3.8.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (28.6 kB view details)

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

xxtea-3.8.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (29.1 kB view details)

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

xxtea-3.8.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (30.5 kB view details)

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

xxtea-3.8.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (27.6 kB view details)

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

xxtea-3.8.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (27.1 kB view details)

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

xxtea-3.8.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (26.5 kB view details)

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

xxtea-3.8.0-cp39-cp39-macosx_11_0_arm64.whl (10.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xxtea-3.8.0-cp39-cp39-macosx_10_9_x86_64.whl (9.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

xxtea-3.8.0-cp38-cp38-win_amd64.whl (12.4 kB view details)

Uploaded CPython 3.8Windows x86-64

xxtea-3.8.0-cp38-cp38-win32.whl (11.4 kB view details)

Uploaded CPython 3.8Windows x86

xxtea-3.8.0-cp38-cp38-musllinux_1_2_x86_64.whl (26.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

xxtea-3.8.0-cp38-cp38-musllinux_1_2_s390x.whl (26.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

xxtea-3.8.0-cp38-cp38-musllinux_1_2_riscv64.whl (24.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ riscv64

xxtea-3.8.0-cp38-cp38-musllinux_1_2_ppc64le.whl (27.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

xxtea-3.8.0-cp38-cp38-musllinux_1_2_i686.whl (26.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

xxtea-3.8.0-cp38-cp38-musllinux_1_2_armv7l.whl (25.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

xxtea-3.8.0-cp38-cp38-musllinux_1_2_aarch64.whl (26.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

xxtea-3.8.0-cp38-cp38-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (25.8 kB view details)

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

xxtea-3.8.0-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (29.0 kB view details)

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

xxtea-3.8.0-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (29.4 kB view details)

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

xxtea-3.8.0-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (30.5 kB view details)

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

xxtea-3.8.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (28.0 kB view details)

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

xxtea-3.8.0-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (27.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

xxtea-3.8.0-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (27.0 kB view details)

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

xxtea-3.8.0-cp38-cp38-macosx_11_0_arm64.whl (9.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

xxtea-3.8.0-cp38-cp38-macosx_10_9_x86_64.whl (9.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for xxtea-3.8.0.tar.gz
Algorithm Hash digest
SHA256 b884361534d86aa9c81ad709fe52aed98243cbf6584381ff5e0a7d7dc24d8658
MD5 8e9f0b0dc4a8429ae7c7eee6a9f348a7
BLAKE2b-256 446f020c89350c762b6c25680cf8f45ef9cb70cc02edb81032e1786f462c2a7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0.tar.gz:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b29d4455e53d6f41313a7ec227c7f29bff125bce5984793f5e9cbb0579f794e6
MD5 d8d948d457135b683f782db485998ac8
BLAKE2b-256 7163742fbd4339dbd1ae3954ea4b8ce48202e3d11a43ff2e551c442674983287

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-pp311-pypy311_pp73-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1d67eb657127012168a241f0a950fd02fe67c78de3607615f5540062db277d8b
MD5 db2a8d3f03be26f7b78afc9cd593ef70
BLAKE2b-256 bc92cd2b1f4effe23cf088c68e5b5de251a3d44e2468d333fbf27d5996a5ce6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b260eff38b79ed26b37506183d0ed1986a4f973f1ddcfb729b2de7299a5b26fb
MD5 a19b88d1db529265f942b518fff01037
BLAKE2b-256 1559d74f06e3d889c08f0ed825e02e347baf98062af9b9cb274ad80824a30969

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 76ad41ddf652b51f0456bdc44f534b703619f47a159df0c723c2de04aa8ac9fd
MD5 70acb37eb5964de0f11f55bd66469e25
BLAKE2b-256 6b7ab45d2396438aa12880cd8a6460fe3dca56227b11215dfe962e9ff251403e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b099ef7516e61f30adc999abcc4b433a056b9fc741467dc8c6504cac9271077e
MD5 b7446fc30f75993ff8641e65e4784d88
BLAKE2b-256 89c7d0d14a04a1f8e7420eff8782460a2db4a1d8ec50ce638ffd3db3813a639e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5e596f656549137f622b65e28bdb1ae6217ca238c98f55430914191718f460f1
MD5 d5b41771506be42c4fca50a339629c50
BLAKE2b-256 fd6aa6b7e7568f428ad7a5b88c68004dd256d472c460b3505772b2d7b741adda

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 12be070561bd999b7e330d990a7ab8378ec1d68edf70af6f3b43ffa2a35e9f4c
MD5 148da0506c58561a244188b486854cf3
BLAKE2b-256 b8630bda81c0ceb84439bf11baa8502a524e845f5d69f8002d87d9fdf11a7ab4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-pp310-pypy310_pp73-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9c85c0ac04cff124fd801f30b64ef1d816550701a307ace69e613d7f4b79f8b0
MD5 79b5b747a2cd18db871dfb293b0d961c
BLAKE2b-256 e29120a881945df0405f2aead810c44f7dcd96db0eac018db28b5747ab1c0fca

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d709e2d072f0a8b7b78f91d9dae118452d777c1da053470d650c5374374fff04
MD5 0a12f5570454b477ee179024fc1c2477
BLAKE2b-256 75ca2cbe44a8b52b717a2dd50e9ae40551668e60fbcbf687deb419791e4653cc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-3.8.0-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 afbbf7036979a2b330db903e8762d3619f157e09a98be999c741bb541a77738f
MD5 12ae17f9141ef6f33b34c2556ff74b74
BLAKE2b-256 1375653ad605d4f6da03ad62414104c4ac9542824bc141e72eb797d9947dea61

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53197e0a56c95dbcda2d7bd2c2d69502527589888f3070971d6f001c2e7f619d
MD5 a86054b0c18811607f5fce30dc4867f9
BLAKE2b-256 a768aaea7896e8ec8aa605584b49d6bc086bd9fd6331e10edc269e7c20bae8f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ea7140cb84368ac5bd230db4fba1470b37b77f8c74d79d84146bf36681cc9786
MD5 37ba0585378799456a809ae4e90620a0
BLAKE2b-256 6c8516a4cd8f4499fba12cffa06ce1f3dfaf84509eefd67e4876ebf0da31e766

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 587b522cadd58eb64d7535eb38b97a6ff6d5928df5ff4fecc9b0dcee61f102a0
MD5 bec72ff0d9e4b1bc388a1db6413a2690
BLAKE2b-256 320c8ec28b4783f6b99b68c5997271679d77df14aba928b645de8c6f35ec8652

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-pp39-pypy39_pp73-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1096d82644862c61c6ee648ccb379db867c3ee7bdf9f3b52797bde47083098c3
MD5 23d4326c8474bdf938cef695ebcb6a80
BLAKE2b-256 4d4ebe4553d93637878c48f9d944d78a792c355953e7004de8177ab8a353e582

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 40867fb95a2518210cf6b99ed2fd16b746db8c8e1fb3b2ca623197a423632931
MD5 bf22cebf11e4e569cc4b0b5cdb8f0492
BLAKE2b-256 a12857251aed05f310b603705bbada996ca7a7de5038a1ad2ccbafd5bd0008f1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-3.8.0-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a0e9ece751c3647d714cb42e5204fde9c077c455881ff690a609cd28dd00ed13
MD5 d13426d01952f3fa928fefd3b65f2378
BLAKE2b-256 078f48d85d0e84f7098401a1fdca7af9261ad822712c5e149e2f7dfdd7a8ad50

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8cf08a1c1e648838577998bf2f4b3d0c4da330ca6d4583fd9ad564f9588d35d
MD5 828b44d0bea0c26ecb12a7a837317394
BLAKE2b-256 aedfd0bd0cd62d806092d1373f54c472f01af01fe75b59480e3239f7d14cea30

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c05a02e93911e07e7b851bcb2241b9852449e275f3e5a56d53576c32f3cafe17
MD5 6fce13c1d21c4a71f33ef99ddea83019
BLAKE2b-256 c7bf94ed85b53177b3fd748a4298034bc3eea7c1b75f0073b01a208e54ee2afa

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 159a8b75b6243e71851aecbda8c1c6dc1321c26d6ab733dc663fc1d08e8f93a1
MD5 109970b93927fedd1c945f9df185d52c
BLAKE2b-256 cbb9f5c7b563eae46f5ebc74f877876535182413039ebc2172e7c2c30054723e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-pp38-pypy38_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-3.8.0-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d8dac6544f77d634326f82fbbaa9d0cf50f608fb88490ce5829fda578f619884
MD5 eb2c227c5477d1f7cbf08ede42eac68d
BLAKE2b-256 924426478d86c06fd297ae1f95f861be47acf002356bbe4dedd26aeef525850e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-pp38-pypy38_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-3.8.0-pp38-pypy38_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-pp38-pypy38_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 5e9f1701f17c40e5b153767d966cf65b84fb10dadc06c0d962fb4a1471ef78ed
MD5 09b396866476136b6880577f37036ea5
BLAKE2b-256 2186e6a52c85ffc1bab2a2b3787e6d6bb0145327c4a4b9d2f7f90d63074d8490

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-pp38-pypy38_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-3.8.0-pp38-pypy38_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-pp38-pypy38_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 53d50870e613cd0bb684bba02eef639df0acda02925105238fb68d3d60932baa
MD5 5c7c27c8a5c22be2ca50d5d89a97909f
BLAKE2b-256 a2b94d54ef54dd9bc91e1c0e37a18e0ce30c0b90651d00865041567f0e460a11

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-pp38-pypy38_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-3.8.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4bd48142ef973a7de3489ffa61efdc686dd3566b8db948a72906881bf81e6958
MD5 5a7f4477e34fa5b5b62c74a169528951
BLAKE2b-256 1f24be0c68c56e64ea1a40ff675f76dd796161802f9380bdd58836a60cd51275

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-pp38-pypy38_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-3.8.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 99d8728cdf6cec6e2934071b021882a45d4715622fcb72adc3f059f198b5bc4c
MD5 4b1cd87b0a3c54585bddf07b434ee417
BLAKE2b-256 b0f8e43159f9259935383373125704d71d4fbc79fbd48cd2a6ab437995be94ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 f3f7053d2c54408c178dca444371d7030445154b0282f00aaf5ded5496bb6539
MD5 aa294c5d55f13301f44dc014bd0fa265
BLAKE2b-256 f30b89406684c226348b9769aea3cb609b5e5aa9bb23163c5273dc7db399e10a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-graalpy312-graalpy250_312_native-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c9f3239be761c4457275711b42dd79825803c4441476739804e3c4716f808b9f
MD5 d81dc98f19f0fb7a4b128eb190478f7b
BLAKE2b-256 48cd8191980bde8ef3061ebb2c6af038303518f5fc782c98c90080d51c138277

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a1763a240cd0e1c71ab136254e347da957395d859819d54ba41185377199e843
MD5 33902cede53cc2ad6e6ba20a3503fcb6
BLAKE2b-256 a747885e70b3e0f5cd4eb774d8f1b752e9ab0656aae4e6f2cf7d6b42695952d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eabd5ac7f7ee7ee1dd7d8cf609992dd3bba73de57548bb55fb3cc425fec4c809
MD5 2de8291e8811b8ff07db9ae3557f00e5
BLAKE2b-256 1b9546b8dfe82730388e9d2847cff6f9f24da6b58b565c259688a8e43ec0aefc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cfa6aed522faff2df80bd4dc38cef512451b1c6f60bfef1a5833484f8a660ba9
MD5 70610d8b723fd0afbc698f54ac3a42f6
BLAKE2b-256 395325354bfe8fddc735b5e96a61a7e84af1370dbae24402aaf0c17a92947619

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-graalpy311-graalpy242_311_native-win_amd64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-graalpy311-graalpy242_311_native-win_amd64.whl
Algorithm Hash digest
SHA256 a2b54b1a6f9742eb56612a06beb71e63cd4bc146e3bc54fa16a7e898a80bc945
MD5 910ae8fa132c3dbfc9935691a5b842b2
BLAKE2b-256 b7aa3238ae0d708daf0050bc28b49b2b8bc925930c805012c082ce63f555c037

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-graalpy311-graalpy242_311_native-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-graalpy311-graalpy242_311_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-graalpy311-graalpy242_311_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fd62c28dfbae3363b30dd75fc8d4b8375ff21834b3ebad738972160b81aab875
MD5 cf0d71147270ad831f0828c3647bd6f5
BLAKE2b-256 5a4f3975ec84104bc0e7263a5cb0ac55e457959bee60de96d326506365a09f5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-graalpy311-graalpy242_311_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-graalpy311-graalpy242_311_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-graalpy311-graalpy242_311_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c22a06521fe7b6ce65be2b119ddadf2ecc85f636d9396faaf4e38c09d62e7191
MD5 2fff7d542f86819a8d9daa3023b581fe
BLAKE2b-256 d1d5d54032f981bd74176d58bd0813b261c03a93862c51861ebf961b5eaf12d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-graalpy311-graalpy242_311_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70a3b3ec57a69e32d49add7f2a1756efea82b2d46558b7af13db962e78eb0b66
MD5 2213387a37b2c346db52f2b54c9182fa
BLAKE2b-256 60e15c43e62ee4cddead9d75dadf74585a25a7edb05ddcf524f8c732b9557ff4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 458890a571259ed54beaf24e02a21de0556ec5c073d7b16536a6bb6e748cb08d
MD5 4313ad5f50694f0ab6b6c960e6cd1f63
BLAKE2b-256 e2e4a36633d83dd8ffcb249de1090535345a8f34200c8bf44cfec1bf6a14c8dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314t-win_arm64.whl.

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 27e7ce58649aae6f0f5dc9d467b459f87b7678ce5f8617943860c64a1dda5ea9
MD5 18ead2f712c4e595b6b887e5fe4b3388
BLAKE2b-256 50faf8dd76205fece5eab2afd0ad3f1585f98e70f157bae5cf6b03e3380157eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314t-win_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 fd4e14933ea0854f0439823dcc3b9ae1356c956e31b010c13e9e92e7ee5a2897
MD5 669e858a5c36fe97390151e9d61f616b
BLAKE2b-256 69435fea7d7168d3ffebceb648f9d0df96abb643feed364b3d150377343233cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314t-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314t-win32.whl.

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 5d9d9d16fa536f198255f4f79ead5c885f35cc6bea5450467ecc2d97349a9b8d
MD5 f048cfdb9fd7b4b11d57a7d2523d52a4
BLAKE2b-256 f8ce1a15b17a294792dca1a7862ed0583e0e72eb4120398643d97579d0d2097c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314t-win32.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5313c815ac977ce74ce041e4b6d51c5e4d3e1c46b58543faead44d332b3082eb
MD5 24414608acf2c0d9b27768b8ad3cae8f
BLAKE2b-256 e15554ef611f0f22eb54c4e06be5d92d974235af18f8ed18dac0ac5ed585b371

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a611408291645cc29b0037e928aee98fd92769b904ec271d89cc56190fd3a3fe
MD5 24cbb15a33662c9b632652445919be01
BLAKE2b-256 de2713597f2fea3317ab4e6bdb5fee92f3e24980e3af4439b8021d7f8714c1f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314t-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ffc717d81d559d83fa73f0fe4241386b9c31a05504e74a081734b3d669f5cfa6
MD5 a8f2ba63bb4abdbd2e13347950db8395
BLAKE2b-256 1349e7e9b27a8b063aade2221b32fa5a580ebe5c29155b78f97b508e6d308dd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314t-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 dd1ea5b2b1031d7a5f6f9e2ab667e34f469cd30c9ab35d2178fbce05b9abc241
MD5 2c6178152a17357820f26f73355a4364
BLAKE2b-256 ab15a6404e10390dff2ecb5e88434a2be8932462c1534ad18ac4e675b790aa89

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314t-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bfd0ea0937534b60442c7ecd68b7ec18ba24653c82bcfce74d24207e1cddab20
MD5 44f74b77d0a0b61e719aa5c189fbe41e
BLAKE2b-256 cb936a28a726ac77f217681ffe3d7a90a1f1d725a7bd041bcf75c339851a90ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 81175d174d1afd5422c105966e7d42ec97f799b5e098201b3645897cc2fd4467
MD5 bf8044d6ef6747adf689f3f9d522f2be
BLAKE2b-256 78a9595a2297e7426733958f136eb24da6de5748185e9766cd65c75ef597895e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bc7f477435af2db0ad97defb559b99539523c5e50416608ccda5d83053598fce
MD5 e66f7e8c4198d5ca54352e1a080cccdc
BLAKE2b-256 bca0376b1446ea975fc14494469cb923c2f5ae24803cb3d7de1f625362a57381

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ca68d80e8693448ff35253cc465a173b39c705088fea44048c0e625995c1414e
MD5 ab6687a9ddbc98bd568d402beaf6e038
BLAKE2b-256 5fea2855ea86e336bccfff84f7646cb87952759e86f78ec10a9b75b63d39d497

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 ad158003c21305f1ae3867d1f4ad708fc58b1c1b96a05a0effb26e03e8c9a9de
MD5 c7add19edce3b522dfb36c9230ffc72b
BLAKE2b-256 2d9aee7df7e38018175ef03eb9fcd62ede25483a578ec3cfcf22d4c6bf4b6b5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6a98fe43a21d965e4cf7f53f0c7ce6eb03636a8e91d72a70bb83090a40b33b6d
MD5 6b4b64d6bc2d0dace37f710bb5ef45ed
BLAKE2b-256 5fcbd88b9b6bc7b48fb199b8895b6ca23c648a258097eb1f6d6959f3326c9012

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e2fcb8ddb533905a164c91d172db651accb7401dd379dcce0bece4c94919e1c0
MD5 9e6eb3ce1a9f050fab4ec0238f6d213c
BLAKE2b-256 3613f0fa26f79a4d256dc254b39524a70acbf95368365dfe9584974f4d77eb6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba46b1d28c5a99055a88ec045312b3b1d169d2b039c37491542b274ecbfe6c17
MD5 c5e1e5643deb3a90345154caeeb1ba2e
BLAKE2b-256 2bc0c492628aeef761d89ebaf72211cdddce7402824f3c6ac6b6b256b5289363

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4ed37ea6a1e089921471e5361481a9da4834043db1a464cfe04fc223dd6c19a9
MD5 cb2f0d6e2f52e76465c50ba4d4aa953e
BLAKE2b-256 c72196c0420351ab49ea2d8722f816116f583bae4459b280f1bae484b0dd89f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c2765cede0f25342fb2708d911dcb3379d4b0df81cfa6ca81ff312351189fa65
MD5 37ab0d84114e7d49bbb92358c422d6a9
BLAKE2b-256 c1dd13261bb27f96cf6ee95cb7568ee7345476ef3b9771a77a9afc3f807bd15c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3bcebae6517232002e77105a1ff42aad3d6df26a448480ca928acdf0c8d851e
MD5 e6726acc44807f9b5f0bd34243284765
BLAKE2b-256 ac03169f8f348d1087de16693e571c2f9fc76aff78691129620cb57b3db946f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 80a3dc05db2ca983aae60b9986546fe08bda3bd9639ac9aa3407b8f61f84d96b
MD5 74e89a9097f263cd725369a45ea63e9b
BLAKE2b-256 3a9876b0a9b413c98b3a61d65d9eac012e60db04a8ccc2f38db30a9563761fcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314-win_arm64.whl.

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 3927338580461fcc293d1b09227c7624f8d2b678973563338254bb6b3e4ce3c7
MD5 59f847a420bcdcf0989e5afe9b58ce7c
BLAKE2b-256 c4dec9b49b3ee9405c22f22a1568494183d72f32a5243d52a4a33d3afd5e8034

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314-win_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2d9a3bae48b1d054a59c2cc55931e20593ddf48b8def90cb27f970b9c80e605e
MD5 7b4d35a0ebc81ce3769337abbbfaf33f
BLAKE2b-256 b1790e8be634eaaf5bfddb4e199d896f985174b33636543f8fe848df7809fe22

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 efb2e1dee949cd4ce3f51fccc1e25c057bcd99abc907acfe321fb52399bbcd3d
MD5 9a217f157ff1bae47464844c726f0c96
BLAKE2b-256 5252bc7ed3d9cb18d631e7b160af627911e1e80d2f80a1025c342d6f2c8c7a1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314-win32.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9cd74d4ceacb05fc831e99b22e2bb8c38b9431f282c59326f2084e05d4b5f4b1
MD5 e0520ce634e3615cf9fd2ba8862379bd
BLAKE2b-256 fea191b46ec0ade83d42d86605b7b5f276b57c85e2dccf1088396cf109846577

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 dd0ac885cd6294238d92ca22614da7dd5e06ee53cb5004095673f8b4d550558d
MD5 e8e876cb68e98496f46aab7e98c95d4f
BLAKE2b-256 209888a57697b748e1db8fc7da7d2ee143060967453113805808cfa78a1a3c56

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 39f007a680f3b6aac344d6c1f100aad3d4ccc6141591ec40aaa009e94be8bc20
MD5 edacfc7b5de398ef9f24629b094e6379
BLAKE2b-256 0f132b4c0e3cc309f83aa51a5b80e67ffb1139aa2bfab23cd8dd553ade5bb43e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d97c1dae96bfbeffbaf2afb638c14c6a5318d4b42bf36c1a6d433af50b09248d
MD5 b2c3b46100983ceca485bac541e020bb
BLAKE2b-256 d46ece788c24735429b653a7d3b11eccacbbd897a3183a76e1af62fceded91fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e8a6f337c54c13ddbdc2bc5d1ae70a36e69c6f6f7edc24a1eb540f4a7818c7f2
MD5 be006e16ed9f5696cfff27b4d4a2ca94
BLAKE2b-256 15563d4ab254dd6e2bd5915a289218b15b85163ac9a5390fd8c2101ef8b0ac11

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 abfd76b88ddb729cf1a789a4ed032b99d7791d08920c2874fbd6d3dec00bee04
MD5 ff7b5e819b43bd645ad64ef450c98ae4
BLAKE2b-256 f86cec89954d8c950a326c38c74309bed795bb85f5f22a14187367efdcb6c7dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2cba06f3fa0ec3b9b2d78a1f169025d0a1fbb37c26aef0e5bde484c5ac1ef427
MD5 7753a190fa58e475761ee125e161962f
BLAKE2b-256 b50c057518962b22dd23d3fa5013f315027b40712005ef5a95a98ef3676f0aaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 033b842aff8123d068e02a0643349ff53bb8d5451b79ef9e8b2c5079b276b4b5
MD5 499d151182f6c4282eee942533809e4b
BLAKE2b-256 da468aca854a9a9c747b25f4aaf8f58e6b2c558b9cd03e28ba6863a4d1f73cba

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0cabc5646173b56d68d3ebbe0db579d31465cbfe5f66774c2f825a5e9f334676
MD5 b10b0aaf3a52f3e9d19b24742bbe7d13
BLAKE2b-256 dda65130a398db8d766a3f33e0c28d4e7abb039ad21a2b8fb941a4707e858239

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7a7b581ca5f97566875e7c02effd3be5dadc5cb201481965b77baff74ad043c2
MD5 3a8fdfc21365b052b670433d3e106ab9
BLAKE2b-256 5acae2b0b6110fd3c13d3c3652db7b2c772af1e4f1b11a559714bc7e502b471a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c56441b926f04453fe498d6ff181a934b468c309f806474f5707d16db952a871
MD5 941f31d2d2571e74c5d0baa070591022
BLAKE2b-256 216585a40d529acb49577e2a28cade35e8709848be6a9e252455a3a289b2debf

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4e72302f681babdb5043b65294b88aed260921cedd474e226a9ca75288de4d66
MD5 628179caeca27a81a06de3a0a14c624f
BLAKE2b-256 a1e5d64e0d30e444e2a75f3367c8d0e9950ad1dd48eb71fbc98c27a9d7a2f6ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b3783241ac23ec33132c9988ee1540f86bfee3d612831de439a57ad5171448d8
MD5 0d1fff7f19a037216e4d447c4647e778
BLAKE2b-256 209adafb8b37f2cc326b9290dac71d116c626286ef23e796d5ac0c5b69c77123

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 104316cc2d1838687f6cdace49338f5fc6b71ff7b3fa257e8845de5c8895adc9
MD5 cc57b3237e4ca73a5256e3182af28b9a
BLAKE2b-256 8fb0667968864a10d5f4686d0ca7e64093996f088a56aebd7a3d982fd19300c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ea265bd49bbef992ca3876af3f7266a81edfbcdfdc8a1c46975b37f272fd2a1
MD5 e297b8e6accdda934bdfd2fdee17b280
BLAKE2b-256 7a0e8399c0d67142de5c6ac1f9d6043af6aab53e71b25a0a94f8a85d6f508f11

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 227744f23702958f3266558ca4c30ca881681ced989c1d0b2fba476eb5a18fae
MD5 212ab94d1935355d51bfcd8da7dd8aae
BLAKE2b-256 7489ea212a64ab31dbb7101c92fdb9b2349425e6a1ce967d6329a9c8eb9dc2e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 5c8a0b1e51a77ce1d450f39e0bd8b92cb57a93245a227617a5c34f888fe5bab8
MD5 1581822e625d45d5c2f8e9a5c18a2dee
BLAKE2b-256 e04b60af963630d2531f85eb6373d458c5871f51d545b74cb6e3c9bab7d32ffa

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 173c051cb4b823dd02d47c27e33b1d0595d005ba18c21893b79260d2e663390b
MD5 76e188afc8c0a62ae29bc6e4a58b8425
BLAKE2b-256 f6b67a1c60efaa7c48a70d639ca0992454bc2c9ec04e5bfc04a59985c82392f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 3aa411414f43bebe34fe99d8d9f9f09506f8f418066fc800951b9716343b1da2
MD5 81eba7c1dab23815e6a080dff08cb32e
BLAKE2b-256 376b0d6a81baae6d608d4329b0f5984635810aa80b60ab017e46ae1af005e090

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314-android_24_x86_64.whl.

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 7e2974a1ed19362d2cd0d0ead3b72b1f6cdc05e7b86e2598a43f680d36edca7c
MD5 4bf13ae1c64a714b98e1a9e366ae5997
BLAKE2b-256 acc5f99113dba4295e183fd384b47b33daa646e9eb48637991fcd01e92f25139

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314-android_24_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp314-cp314-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 7650691d8c790f8ed19022c0b266e6a87d629047a1901817dac8a87b73ec24d5
MD5 486078ddd055d8b4d8e08d323dd1d8af
BLAKE2b-256 5c16c14d90fd34d1b0f63b792fd43f960bb3aabb429b11a30b403b93770bd78d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp314-cp314-android_24_arm64_v8a.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp313-cp313t-win_arm64.whl.

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 c9cd21d3d8a9810d77b887d252f7225ec6267d04ecc2fa58ccb341241cc95b66
MD5 1e17dc84c573742b31572246b55f8860
BLAKE2b-256 25e2909bf0184735fe1dfce69fdb193ac7295bcb19dfd5bc9d707417170e6ab0

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 d66132c25ff43d9386ef135b28c06be3227ba5ed8c64f8b3d4455dc8290614f8
MD5 d57144a87c1ddd4c7bb1b5e2ae8b85c3
BLAKE2b-256 49dd7fc323ffe26dfbcf39de17f540ca946c6bf25fd2013d3210b3dbf2397fa2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 a98ea00e38692a07fd77b30b15f72e40fe7dc42869a49b223fa019ec67a53fd7
MD5 ec475b6ab4e89f3b2c222625939eb751
BLAKE2b-256 99ceb3165685fba83427d8bba31607ad90cef339aec3864fd4f1e543dc5187c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06afd6edd4e4fc035b4e681a34a8d2b115b415673ef8a6dc0f03a1c64988c3cd
MD5 2aad36eca4a6fda1368abb41e7276a41
BLAKE2b-256 e7bc3b09b73f114e13f1ef3aff00c42fac1d522a2d1fd3e1abb2179af907f468

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9770c8ab502f64de6480d8483bc938e0671972675f44145ed7eb367c7e41b8d7
MD5 823996e9d432d04c11dd750ea654e557
BLAKE2b-256 f54a3eb35afbc9d38bd237e97b1ccdf5cddbf887a0e9c9ee8bec783c7d2aa9c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b6491192064bc08c5e006359e28cde9a7b2189b32c0cce61321f8d0911f79a32
MD5 9285bca6ba6c5f37078fafc47301d2c2
BLAKE2b-256 1441731024d4cd70fa0951d66629b65f8b7da82a28c95b09f875dbb9254ec9de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a75ef663d55b5bcd2fa471f770bdb6f83b5f14f8b0fa5b7d66e4452d78274df9
MD5 f6a5fffe270d464985509df232ea17bf
BLAKE2b-256 dac5ebb197a2111a9da01b294b29a5d645201abde8f35d0b5ab40bfef1820048

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a802a1e85077b7867830fd08935436a9e8640c2b006e47e455dff7cf54ab425d
MD5 f834d0a5573c7909bdd9bc84c348e18f
BLAKE2b-256 4ac17363f43181c0fb961cff0a5e7ae8422c968078b8948857d681da2fbe6ce6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 50ab009085a4ffaa42594852369df5e93a1503bb245b34fb6cb5106756af6e7c
MD5 85ca218086bcf96b67e042354b57ac8b
BLAKE2b-256 1ef88b7a2a5be96f8063027b950186c25e88ebd3b467b5bdfa9f397d8dd71aeb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d9853b0612d79150522f8dbe8ee22aafc1bad7cd3c68b775fb7ff7a5f27d6132
MD5 9d22f00f55e0a9c7443c2e3b199b7d4d
BLAKE2b-256 2754272dd63bcabf6dd9c1e3e06c069c577b58ac0900983770975877f38bd64b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2597ec493ca1a572c6bb788b667ed0e0b9fe72eea32bdd1178393366abf90842
MD5 1289e3e8ec2eb6f70ed29cf21f894517
BLAKE2b-256 ed69ab9f08c3c50b137ab660efc9438c5d81ba2a45d106c31ec0d0c9ae406add

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3c3746c8c2afe120b9de04df8efb436cdd3df397930c522302574217b6b337e6
MD5 3505adb24fe9bc0579294c2632a2ad24
BLAKE2b-256 a37e4662ce8976e745276f917dd9c1961cd1d363628c62bfc6cddb9a4d9fc172

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e23de6e52d4d84710752cd672ef793fd925f0436db820d315e84e7f849c366c1
MD5 f82f280a5dcdec007e97b5e02ca30150
BLAKE2b-256 1810abca923c4be897c729bbc1340a2aa86844a9e0a4d1e7c5a753dcf52b2812

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 833639bf163f570bb70c5a99606c2e2d4c265022b40c42ce4904ac3b60db93d7
MD5 0aa81aee6b974fbdad2761c3a2645561
BLAKE2b-256 ad0e579d7f5fcc18f0de7ab6096aa6c35256c13b2f97e7b31c0f777435175c6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 821c2be46dbf44d1e04963d30b1b2bb3101ce4a8986d033caae7895630f5d27a
MD5 cae306e6d64b0369e6faf3cdac822ef0
BLAKE2b-256 1ac97ec2a3f24540f05b81c2a79eceb9168633d64d164766e43fde87dbe44c94

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-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-3.8.0-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d4e6dec3474f407594cc7fc5c53bb53631d1be1d33f98c5189359f76a2e2982a
MD5 cc187966dad5da95bf4431165d3db0c9
BLAKE2b-256 eea2611a1f8445fdd8cfe4d33c915374af3687f772ef0a170f877157c79f0a42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ea52263103778cf57d41ffabc6eac9727aa38b175d574b4ff426cdb4ec276a5b
MD5 a5e3f9cd47b66c7629a3b552334028fa
BLAKE2b-256 7ff09a032dc9236bec8ca0a969f064da6fc30a39a1a2d3c20dda836a22257e6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0429e85b141531744d09e616648d34b695d2ef9261cd6b2502e735b5f37834ca
MD5 4c7ab44c5aa457caa27f0104a3a85ee8
BLAKE2b-256 1819643afb455eced7ab9479c4eb05b7db20fdc92abd7ee8e4e5c4b27ab5abfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 13e6ad9118ce68745ee37f471440fb02083b7dde424cd6c1818c8a28d184ef44
MD5 b5605384d2207cff91b839d085719a6b
BLAKE2b-256 cbc643130e2e0684a94b3ceda0a43dab5070a3a13e0e6024288baf2203070d21

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 56854daee89556f17ee503df64a2cdb11f94b7aaea13037ebe272521e3c22e6d
MD5 b0d2a4f81b4c0d9729428a10d9cee254
BLAKE2b-256 ae8ddf03da2f83125aa3ebbef9d1d33f08c860caadf7f1775666c6e8584230bb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5de0effed2ea79632a69ca2abf110b1d75e063ea4116b1b560339d583d9648e6
MD5 845fdbf2365c8d1cb88372f9f5ef607c
BLAKE2b-256 a10ad5dff4259bd9fcfecdb8f45187c7924d9cf2e599da30e8fb6cdbc61ef72f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 de7ec631bb0061ded3de312136e4a7dcdf4f8487a93ac91acd95148bf8cbddbe
MD5 f9830f1241f52272fd04e3f78e5628a3
BLAKE2b-256 59c55a66def5d46c21fb5a360a044c240253a936dde66a4a3ae8a5045779269d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07e153c7f0d7ad6d174209b02d6d8640597be8c41cadd5ef95418e247254470b
MD5 2fcee4f6b74b5754294bd9b4c4bb712d
BLAKE2b-256 e71e05ac65076583e44518002780e29f124dca97d1bb08086b3f9d16f6f1885f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 27fd27a3bfc073c067d7768b63d8f5c2084fdf9f472e74f05c6fa497aca015e3
MD5 dcb688ec20292295a1041d6cc1867223
BLAKE2b-256 4e0d892259a4c220c696dc6f5f7726d4b8e01b220ebbb6a8cee75f4acb043661

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 aeb1a2f5270aa96fe371bf4b962ba96c4a81e8225ec423f562a6f4f874b00fe5
MD5 76d62b66410e5788d9c3ffdfa2736847
BLAKE2b-256 c95f2ca492bb09dbcbee76ef1bfd2dded4a95237a0575a5a324cf4f019332f5d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 956b9d2ae36c7724e73e9c19bd71e3d67b0c18d50e84e9580b397d4c042f2ce9
MD5 084b853035776431cc514ed296c112fc
BLAKE2b-256 23391f625a47d5e84d2b2f2bde365a88ab57fc734137caaa80f42472b60afcf2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 60d3838bd761d8d37a37b92de2bf735b3caaa2e5908e1558bd3fd27bbe668114
MD5 fccd4adea98e00c61bbc0805749a3e6e
BLAKE2b-256 5587a87120cfe09471659c71325912fcb9faaed2de40cce535a372bd3f89ba9d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9af505ecd5a76efec45c68be429ef5b82c10121e2b39bae1c6826e058a6915d9
MD5 ffbee2028e8320e4f1239d10a2156616
BLAKE2b-256 f686e22a2fc9f8ac6bb058f1ec20cf3c006ceff1f62e25811a975c3847fb6eb5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e81a4e5ffd9ae80b0732d284ad2ea2f92890ec5c4908bf4f83b811aa4fea25b9
MD5 0014fb484e3d3ab33f310d4972a7e331
BLAKE2b-256 3e3b4cf6cf62efd099cb68db139dbf8adbf93a42dbc4e523782fb2dcab5a9a85

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 940e85ba65b82e1457a70449c4317a51dedee34cb15c99753c917a0de22afeda
MD5 72b5f05bf0aef023f66bcc9e356cad44
BLAKE2b-256 e1768e81025113fefb3348fb015523c6fbc56e21147f987bb79a0fb7497d47da

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a563be3421b15feaa3ec940612bc71a66b55ed82bdd683e5097f0d43770036c0
MD5 690a881a5b53ce58454723f05739ed19
BLAKE2b-256 a75860812c9685aa70564d7aa4678f1a62b9cd3e744bb0e63942b217263526c0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0f621862fb32f8e141f431e794e9aba5ecd1481222b7c7af21e4710e6ba4dbc4
MD5 2840c3bdc87ecf05c3e5e471987037a5
BLAKE2b-256 690d8118261da7e0003244a1f10f5e9be5bd3ddc70beb74d482ee93a6050f1f5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 175c6b9681f5ed09dad2e25235d1f9b956be86695209b9e4fcb3707346119273
MD5 527adf313e0253e0a523df92af7270eb
BLAKE2b-256 2ff42eacbcd3508a461e8e2d6bd047a0a05eef89a854ca198446c8c2350bce09

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a50313602b9dbbd24a788177688dc828ff8ec28088ba375ff95eb916fb011221
MD5 922a25f34eb8ea408691dd39fbfb7409
BLAKE2b-256 c7a09f4ef5f724f2a35529e43928e8f8815fd0c51d1649770ec298f35eddd37f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c920e1f213142de1b5a95fb3df38e3ba8db70b19bb90eb6859635bd1d116ed06
MD5 4d3f90a34a345ee9243612384dbcf791
BLAKE2b-256 8657777d81db3914d9e1f07779295291ab8094b5d3eac67f2e9fe7c0d5886826

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 56ce9744b4c6d20887388bc33cc6a546cfb994e8ac2c10670f3c769359f3fca6
MD5 ff1d4014e8b6f575b0e40b636fe47cdb
BLAKE2b-256 986381f9c83d560e2136286ef633d8b7072803fcf652d72cbf82ba0903c07986

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 815b7364521ae83861c7cfc35780c458ab3ab13f4b682a207065aeba7d81a875
MD5 84a5bcd5b35102eb81208b53702973e2
BLAKE2b-256 1005a0f8ab94080ef54e2705787c003b99aefbd7a8c66912c4eacec3a4260b4d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 afa273ef81083a6f9fb09892919ca459566a6b9c621f1eb6784aa3336a26b24e
MD5 df93c1b33e705cac9352a0b9b828d4ea
BLAKE2b-256 aa0c42fdd7acb8d7fa8ff28d6c52aa3dc75c271e9ccb661491a4d8543498722d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 f5c4eac8bc576a80c75a353f8cc2163cf41504b1b9685d54bd8d9d40308474dd
MD5 12a62e6edefc98788feabbde4ad607c2
BLAKE2b-256 d38246ca605af914f205f03dcbbf2235f93f7f5d2ae35a0fd87963f5421409c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 dd2df1308aad62b5643b5983a592478861048cb3565f0c2e3e7b8d59db384ebf
MD5 2e5c7cd50fd17bd81c48640e20ddc618
BLAKE2b-256 b7bcf63b369377f6c51b5986c9fe43f82c23c1192014c9bd7cfa7f2c00c5a89b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 f151fd3d039decf70ea242c52fe4bfe15975119be253de10a084486495f7a3bc
MD5 d6d28ba8549ace87b0adc8ade2545838
BLAKE2b-256 ba7314065ab3ff9f6780797252496caf134bc15e8b54daa46fd262fdaffd3078

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp313-cp313-android_21_x86_64.whl.

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 9cfbcf8f4d2a08ff0a1eb541866618f99cd94efde2d83c8ca51c7263bbd01d38
MD5 47f6a9d05254215bb48939429f433fbd
BLAKE2b-256 9aedaf08914149f9a725c7cb756db1ec3596e60b5d9340b3d385c1faf689f948

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp313-cp313-android_21_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp313-cp313-android_21_arm64_v8a.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 220b6c3ea4547749f8a52edc5fba32fb04ccc506e80dd38bb2adfaed2ef71436
MD5 d5eedffc3b37e074ba6400323bfabf05
BLAKE2b-256 81c01aac0f88301a51e661b463fd6c4c822c4b5f42dbc4be4ca5f173a5ad66b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp313-cp313-android_21_arm64_v8a.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp312-cp312-win_arm64.whl.

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a2a5157128d65779837e2aa588b77a3b78b0d0074f629b88286328e4f1e88a3c
MD5 b6ec281dfc82bdc2a7c2cf7706397764
BLAKE2b-256 17cba9c71d97da392be8d0d2860aa9691f7156ae4c6d2191526c335985001620

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp312-cp312-win_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bf739ab384d88d601212ff3b855b0413cc1440e1d2ffbd51a2f30b0e91a82809
MD5 d7d693712a9404600cc34f8aaf5b6e01
BLAKE2b-256 911a3aaa8d72c814e98dd6cb470fa9cbc0dec0238de3629b845e21639e5eb63b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp312-cp312-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c9784d5dabbba7eb5e2f3334309d8a43d852aae4c4458e170524a69a7f914f43
MD5 fceaaf74d26a136a311b9a2184d3ec53
BLAKE2b-256 1fa09b2da749458b4fff29f0ce8ac6ed9c4b074b36ee1f35b0fab9bbf074a1a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp312-cp312-win32.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da5e17038eba2c005f7627f000a073bfe6020f9f6ce5c718ee6375e9109a1202
MD5 29b3e6aff7093f7634eb223ceeeaf124
BLAKE2b-256 f7e69e52bf33ed766a56619a0bdf7724216aec53c1e6f335fb8111a8e3f07ca5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7c3a206f19f9a91f0cb9db13e7272b9edca4be4a5c5a249ac147332aaac08d2d
MD5 5385379c238bb3681acbc977572759fe
BLAKE2b-256 72fd50b6fe311ede4831e6fa920ccbfcc3932d2460f68ed5ce57024aeb509225

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp312-cp312-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 64eec9f89d3f31c8b042bb4bcca4c20cec52edc530294c13cdca076b11514f56
MD5 48ceda6c3f66dd655069674dd7d6fab2
BLAKE2b-256 05d0bcdb09521a2843661596eaeb081b244a73a3c6c938a9a000d754be06df4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp312-cp312-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9fb727c66c408ac21968213d9ea6ef396455145a75365dcfe304c83bbeac0caa
MD5 cf9a9dd85332e026b868e627b4cab028
BLAKE2b-256 6f7395cb47bee406d10bfb4125390b8c6710287c96b2745cd15d01882101012f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1ed508757f23e305e21e7dff1ce94b2b42a1295c8a394d93841b7abbc2ebf8bd
MD5 d6322300b817c0654874540a226ca2a7
BLAKE2b-256 33aa1885cf5853d6e079d3f52db5579574a262eef5ac2043d4b79a2eee21eb9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 052e68ac49b2c521514c41834e95e30575221cbbff314f981fc866299c725d33
MD5 779ce0423c38d82d5221b0ac21523cc1
BLAKE2b-256 cc0ebb6eeaae2d392d653e983fef91f2f7380ef7a3a7340f8e714699743bf0c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 84be47854527b80c49e44b975cde97e31e6fbacca5f1c8c49a44f44e039906ff
MD5 1567235dccbe8602ecb2933279a48855
BLAKE2b-256 28c9d2ddb75441c7a9d44cb0651a2ccfc8061403b2e4eb1ff939a215e64af32a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 407afd5a8c0cd13f9eef1c3416afdbbf31c87d5bb96512b8dfc7c0fcc3656a2e
MD5 b78dd622244690e79152fd3f3b5b6c33
BLAKE2b-256 c6f818028387ae1c2b5142083756dcbbe56a74d8c006604a4162204b0742e06b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4a8219767f4d57d022f97256580e5827ad8261a5311b2a11726ddeef5eb214f0
MD5 2c2c703d2e87c01f983c31c56ec7cc05
BLAKE2b-256 34f80101d521643998c1622f2ac371bd7d870880d91e2dca25ec29a6c5c5d86b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7b41233ebddf18d4ee6cb3017310a1d4911cb1d49fa7347286b9246f6c213329
MD5 7a68c5fd06e6618d9cc2b2ab45f01bb9
BLAKE2b-256 6fb1231eca7839031d7497e1dd5d6cbce5dc4685db792fd31af7c8c89d5a94c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 494f474733b6ec171ba661a4a5e0f3d0b7ab728b3f3e155ce2eada35ae96e29b
MD5 244c7caf4b0a3bd62d38a123401377bf
BLAKE2b-256 45136d5b9523d444a01b08c525a25f167260c28b8c5551b0b7d48506feed0de6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 088d8ecca35ba0968133e551d207b7a2ef33d20a2952ec35b871032c13f48c50
MD5 5008aa5987723dbeed1924b55346f30c
BLAKE2b-256 97e39bf3f2e5ad9aa4c96a0847b645230a9bb5d94b4af306d80f5da7561353f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f4f1c79ea2898ee61cb7b538a81da46d966353760c3c11b2e5dc9abb76c0cc15
MD5 a6d289252a183d198b83b9044b334479
BLAKE2b-256 1f82b1a126ae334f3a544ab8b02986343d7710211e448e14479ed2e1b5593ab3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 fb09cb66d72875b09775eea500659a33886748b206c6c1fde4e1858538deb8ab
MD5 28d73e965b21752317f89fa6aeaaa828
BLAKE2b-256 cd687d201136fd1fde860d3c9aacdf8d1aa7194914ac711d6f9f7ef5209b4556

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ce7e5a4ced731f4ca0b8c7ab7ceabe34d12cb1fb76f5f328106eb3af8a958a0
MD5 977ac841a6e3b95bf36183e2676cbea6
BLAKE2b-256 8fb4b8d451634f177bbb5a75c133107f87fca9c26009429fc5011619468c1629

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 53003534e09e846abad657057643f31079e13ef8e678b686d1d81715e6656c32
MD5 006da1d56a48949a0a68c140007440a0
BLAKE2b-256 03e2dce93ccca4d68318dea3518d97f7ed95a272c6e9d19276b6f3b99a114cc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp311-cp311-win_arm64.whl.

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 267e4fb848605f64e9e74fbab33df503a1610e8e2cc5fffb40089f246c6fc089
MD5 dba5380a4162dd82b1f9eb69042b47bc
BLAKE2b-256 0ad285d358bab433258be0057659762abb94887e4b08862d3ce5729bc090f55c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp311-cp311-win_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2f9deae1b49a55f0b9f7cb44acb88036840d686035aa862d5ed5b013f84b16e8
MD5 a9a50af3d324d3adc287cb2aa10c8d09
BLAKE2b-256 abc67962c629f0954a9e9949c8edd519a2bf83c04c5cabc9336638e242c960dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp311-cp311-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 827fc830716d005629756223f8a65f8c19f570dc822a41356cbd55a944876a2b
MD5 d3f6be7d450069a703d8a5d61da88d6c
BLAKE2b-256 63eac3c96c7d8e82fe48e1752090bacd46101d171a8dc50a2bdd0f915d880bd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp311-cp311-win32.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67064fa5af99ceac53666beaae42365632037889c9a30f9fde1a4aa89050de82
MD5 550b23f6d9924087290133cde146baf0
BLAKE2b-256 1dc80605e99a812c3d679243bf88e119aa707604ab47d4bae0e2fbfa8846169b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 54684a2ce9242f543ac376c183f17d29c1575a0fd63399ca9b5bde713dc39a7a
MD5 2d595884ed0096e6934f657253e92bca
BLAKE2b-256 e838c7e1cbbf3f6a9b3f440848ad0ce704651c7e63f0103f89118f64531f3f13

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp311-cp311-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 35d181a2457a9f9589c943cbb17dc123e26b41db33bac4c1d12732dbed9efa41
MD5 6748156fc5910a06263849e4e734b4ba
BLAKE2b-256 a5eb1f3461d2dc4f4b94b4d2e38e709cdf0a80b7e89d422e21b115823572495a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp311-cp311-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 eaae86e9f34666ddf059605f3eac1a10cf06ce1af322784f61716952c4e9f416
MD5 187234b7a9298b54235795b977d8e592
BLAKE2b-256 690e5f5709bdc75ee143fde6c9c2a1071e5022425706f936ddac33def667299b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 df8f65116b819d3da0c0c48e4e8328dde7c8c9a9cbf956f17a96da5d392f35c2
MD5 62f1274d15b6aac76e84c383ffef0a42
BLAKE2b-256 9a8d133f6a52eb90cfe3c2db01c39b2ca423fd421cec5fc6933377e02e3b74c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a513a4c543be78a04fc28b4937e923b871f6fe3e15a3c10e749e222ac9956fc5
MD5 2e691b673b640bc2eea3aab789557341
BLAKE2b-256 8ddc1cdaf7baf81b39261282532738faa5cedb319e906e3eeafe4a579198fea2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 07d0eb5245de058ae19f9571454e482a912c90b78822ba471c7e00b1777d4a67
MD5 5846046196901c74dea00385f958fa74
BLAKE2b-256 80a9d918228508fb248439c82ea8c7d6ba86f6d869807159f5227ba12788c2ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 96aafe2fee43730a81636f21605807fe195f23003c6b84a83a0b6d129621025a
MD5 b39ae6af65e9a5d2b63341a531168c43
BLAKE2b-256 cf0575851f4f23c52809e6a8ed31190909437b0e5b2c87dc194e30ea198ae74a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2262405d6842a183dd89519eb35d79cc4e00abdb7d847d69face755176fe56dd
MD5 64244b74367dc048dc34321bdd268453
BLAKE2b-256 d0d0cc2704bdcc071956eadb192df0c60325aaf8bb05a7fcdbddc735c54c9ed0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ea7968f53f88e01ab608713e652f7e370e46b1e6d91ce62a4348be04add36562
MD5 fe95ade801c5367d3399693531d63951
BLAKE2b-256 681b7aba827d1c7280480efa4c786cc97e660409f35b019f6b540ffdd0e51855

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 fcea9febb9d854f4345f9a36967147370947158c6315edbd7992b8e060d37cf1
MD5 0dc7d8b39afbf3db820b054671791751
BLAKE2b-256 e4cced10ae7aa44729d7b5ced3700149a242f29a94749a0c65ec7972d014c138

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6aa903ef1943617962aeb098bdd18863ba63aaac207d3555760d5a343cae765e
MD5 a7615ea0ec8c32bde20640981e938da0
BLAKE2b-256 2282ab34f1bccd0e1e750e9dae58ce37abee4c4119d7bd1ee9e1e7dfe7d5e734

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 bc50ae804b28674f484930d850d033c966f2ff2a150767f85e56882c5ff760c1
MD5 d0cb5e93f6c2ade71e0e7b7d6634abee
BLAKE2b-256 c70a57c44ae49ef8af3817f453da20967fefaea6fbc734d0fd6349bbb29e12d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6b707927bceff14a83d4739e5605548fe775b4f47b7cf31b0b1ceb504a0442ed
MD5 021627e83ec09ca6588364fcd52ba9b8
BLAKE2b-256 00ff7d4ffeab04bf8a074844b536865c09a49ff2cfad8b31a9bfbc8f6dd6f267

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b978d9259961b4a11559750372a69192e26a26f04172d4099b27d7d5d01091d
MD5 a2e863ee67d8ad779c3c7e4dae686ece
BLAKE2b-256 28e3ef239a45ffa4ab4a8c5f0a43ccdd9a1a78da2b3db15b8c8802b86203f43d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 86c1eff9be502db23a1ca37826fca09297ebd5386884ad74b637763bca1b5db4
MD5 17d086ff691edb68924d8f43617208bf
BLAKE2b-256 634ddd1bccfb10a0a37af3419e13896452881ae372e2cbf4ac5277b3170f3126

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp310-cp310-win_arm64.whl.

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 df91bcc205374f8f7f30d98f59f267119a288e449f673669f96e7b9a78e117f7
MD5 4868dc2b4fd1572c67abb60d22e4f947
BLAKE2b-256 a0af1224498a3d0475f9faa294bb93ab8946cea7cd4e308972d4d8583745b253

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp310-cp310-win_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 64664949705d03c60f88be3239be591869abb426d6b0fb8cea32c215f14fae7e
MD5 7937e07df1679226e6a444daf28a85dd
BLAKE2b-256 f709aba816e4dd4434f37dd5e91a649e911ab8ad61fdd5036594d2010b957d29

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp310-cp310-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 55925db1e6b18d27c5618a79baa3e6122586f12a5e491aa233efa5f0ca5a1b51
MD5 3db32bf558119d15f9a7fd6870343a87
BLAKE2b-256 03261128a0802b7677cf760b4c097b75f588c39f76e393188c9f3abe7ae3bb3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp310-cp310-win32.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb6d793a17df1ea045cf95a1843ab158eb9bdc858d82eac9e8358663d7ffe619
MD5 dad05ba50bf2f0c3186cd3233fbc90d2
BLAKE2b-256 c112c3060cff5809fbc44ec2d633cf0c76b2f14b4424fe48a6cbf654b44687a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 aed0d50fdb084751f86b1869eac4f811dd659c9c2dccee6bd0597edaed1a30b3
MD5 6730f1412bdbb08e28a6b0ca3a0fda96
BLAKE2b-256 6aee72668b18ce7c2f38aaf3c03cae806b76d16c0afaffb1ce25bc59674e0704

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp310-cp310-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 dc0e3bb39f1559af132f34a0e4343bb25dee84d0549ee1b389087a59456c99d7
MD5 e94dec1bc8e27a2519025133ff0d6aaf
BLAKE2b-256 4911bbff308f78ccbde7a0c6a5c0e5fadcd98e9d2b7a91d01382723f94c2115f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp310-cp310-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7c48209210469fc329c6f8889ff7e6c959c355fe01d16169159afbb56bc8303c
MD5 1c340b337a9138e4bf7fdac17c16cfcd
BLAKE2b-256 b694994576369ad7e4826d1cbb9bbd7b5c450192d74e6404f6d15ec7afe36b59

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4d67548fd6398382c47d435e0c97bc19bfc4bd513501b8f0f4e6842105375517
MD5 415ed9213ee3c1a1e66694e5f7c20e32
BLAKE2b-256 346c898a0abfd3fe627b2f209f072d922fa841bb95c98934380bad3c28421e3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 47cf533a0669b25973bab37e3cb7f02adafcf6eb0153e455ecbe1822612f1773
MD5 0eced4bb5c2feb5b49e973ad488cfd36
BLAKE2b-256 81f35c28da60e91471875230245845e39d46c40269fa4f9f17a18aa4915b25e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4bcff92854f41a6f70f00e34e7cadd06485fd2cd79496b8763ad756cf076a70a
MD5 812f45dfbedca19b2eff12c7f905ba98
BLAKE2b-256 83c9df913522a5d39788ed05d9f8feb6df0d7a745cba5598f33cd24789c2188a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4f8764087ac2181e6d468bf0e02427adaacda2b91b1cb6a6014c4a5ccd8166b7
MD5 27fdd227e2ba6529aa373e114b49de3f
BLAKE2b-256 8460590eb194087ec7f4f004420b8bf587b2c24ec886469b34d184d27f0feb02

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 65cb87d45e40d7ecd606c0b25e289321aa2fe0e1b8bb987aa199a9dcdae484d4
MD5 2642d9f3b649d6e7f6d700ba456f4322
BLAKE2b-256 175cb9923b5cc4f311de3d8511ec53d9ac4bb61757ec5bbae57e521c8abb382a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 96d2ea059870bba7d6061341294a902cc37d242a1bf88ad81c09e14b3c03eaf8
MD5 98d5aa134d97570331941564684e30b0
BLAKE2b-256 1a53b44f2f062a52a0d01b9e528295c5530154a47aeb646d6744d1b6561ea3cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 aaf7bf96051994eec9d2233b8e73461f6da4db35025a5c55db24e125fafceac0
MD5 040094e100ef1817c543f7edb4c6bfc0
BLAKE2b-256 587f7f77a431a3f756e9a81d27b6af7a89cc699471213cf2cef9c919b5cae66d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7882b2f70257d3ad559452f453b8248b1e982aacd9847a504705554a2957788f
MD5 c02c4b63eadc782d1850e613ff534a09
BLAKE2b-256 42427225989b785ea31597fcbc3e90b38b7c5d54411841e9006100c3a7954d81

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4a70bdbbd85fba693083b226d877521a1286adc76a2cc4b82ba23dff856401e8
MD5 fa2156aba0ab360454fc5578e28e6232
BLAKE2b-256 fcaa1a016313040fc6f4aca68873149392c559055fd4671d9f78482fa510d6b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b881aa2a30ea0c38e416e57099123c053fe0f0daba481f4f7721cba971306061
MD5 1546556879fe1003b8b501b0c0a0a25b
BLAKE2b-256 f1025222c33947e5b089a1094ec7326b1f2d80ddf360faf0fdf5e05567acab68

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42573060c1a9f71d0eee3f2dc4ca9441c204c72769b70663563fc7188c18b885
MD5 f0660377dbbffd03d0852ceba2b8f608
BLAKE2b-256 802404322e22347c12e6c0911239c2bdea41de345d14f716741e226c842a3949

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eb220f6f5325d280086e15d02b512cf530a84679e2a023e07d24c0c211c31f99
MD5 72e93f476a25269de5bf85900abba731
BLAKE2b-256 94dd5dfa5298d3059807cfc2c811d00b4ca7cec13280ce4f7b2e90c840b75feb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp39-cp39-win_arm64.whl.

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 e292b9434c5c63f9ba686ae2fcdb7c187543715d4cd28183cde36281c072500e
MD5 98da34f7f7d074f4117450f8d7890213
BLAKE2b-256 3099055afb7d84c4c25543fb1fca9037b8c8605781e9393fd7effb4b28fad51d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp39-cp39-win_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f1f80fda8a9f2428a9e9259a52c1db24a8345ed7afde90d869f81e3f11d7fa6e
MD5 00e93d1a5e5c2557aa714841b65b12ee
BLAKE2b-256 7a1857ad94a8dac7c72f904aeacfded248c09354afc0f88b7c8f5128f6925f35

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp39-cp39-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6a2dccd646fb70a5630649a004f1a5fe1835c43ed10054e9c34439678114ebea
MD5 06668d36d666b7d1b5c40382b3ffe617
BLAKE2b-256 8e8c06445829a7a0932342c03f3f4e51fb4f565743d839a754e925ec4f2233f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp39-cp39-win32.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: xxtea-3.8.0-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 26.9 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.12

File hashes

Hashes for xxtea-3.8.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fafebb83844bf6b9bcfa475d9df0fd854311ff048b7a934271e049d554614ec3
MD5 fb79ae015662e0338ae831f7742c88e5
BLAKE2b-256 dac77bd192ef46a1e096cb643c6afc33cfb9c67883da4fc909cf09db1618d036

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ac142082ac5ddf1f8eff4f16db29452abc15ac64382bd5b9cd0c6c7e1d4ef285
MD5 8b83a91920921d1ae0ed59ad45670d25
BLAKE2b-256 3f1611366a1eba5d27e45b21ccbd5a58b49e6a8168031a63f0d5dda2bcc1e1cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp39-cp39-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 072f4b8dfd15b09a235c77c366c7b05b40f1944d9c2bb2b1fc3defab0c98adbf
MD5 aeed38f4f9c87705304b633b5e01fce3
BLAKE2b-256 339faa147330b3018dd441ab6da7a23e38f6a262e0de64f2eb85f22343166278

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp39-cp39-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 669ab4d841c3430dcd7fa912e7209f21ed850d0aa705cf7ba595d327021b3712
MD5 6449557e4004ed1342fc643739eaf973
BLAKE2b-256 774905684a5ba84676d07705156c006a9ca36e06817cfda5f5d6ca7cb70e7335

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0b0eb10ce125e48e9acac579e5cd9dbb41517dc3d5a09ee6e66228d831508b8b
MD5 40c8d1cd89341b716f85b41331ce1142
BLAKE2b-256 22e60fd65be1dabc6c162d6a410b551ab7f769dcf9b89775eb87c93e7685a395

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8371ebb7bc89241e1ec024d32f579e2d09502e0a71f592d0ca5a0b3332fc7834
MD5 4a57b6b25b46991c1f464c8837ac7c00
BLAKE2b-256 cb8edd620bede6f9d601ad596c648b152db0b33a739c460977dda0d3f645fc78

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 85a989dcfcf17ecc5352fa4e4f479082d3408b10a45f146eeb21e22e292096ec
MD5 fb9d3700f514f53b839a9b5d3e6e9ef6
BLAKE2b-256 128343dd9bcb2464331ec7e51db5284352ebc88ad83e0d71fcd9e5f9184d95e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ac86e74ebb5a5c20fa52dcb8a20a81b3ad59aff25743f25db51d5b535f6d29d9
MD5 e22dcbe130bbe2664a0e3d5db0399539
BLAKE2b-256 a8ee43a973113f6c00c77a51300037585aba6966fefb3de90cb88958bac44e88

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 133beda7197c3a8066fa1d374a4cfc138b35ee91d3ffd37710c52d701bb8b16c
MD5 e2da6c55b82d4f0b7a48bb50190d8432
BLAKE2b-256 103f0c1af19ac62b82defe8d267a8aa8fc3242f3551b08cff6ef0422261c1d35

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7b73d2f67420589cc83e2ccddd07e9a21b9a466878256fdcc1b020785b40a882
MD5 599f5d9d5008d645eb78b6d73aa7446c
BLAKE2b-256 0cc67aaf43f1766a7950da90552e10edf2e788a0d3b2b7aaa4b645ac836361f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3477099feb292fcd1cf0db9095ef110c37eba8c019ceb8ec50fb18216339c8be
MD5 56674947f2d4de2dda378671bc65c5ab
BLAKE2b-256 f41a2ab5ba4f5e07640351e4a626625bc21b259e00bb19d2afde8f50d4085e2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 08a7bf15661ccc56894f7c011a676ddb6f9b559fd4b2f9275987831b0b55bac3
MD5 e30ce5664b6cb67f1e2e15058572c49d
BLAKE2b-256 63e586decda8cc8ca29c329ffac00ac21bcfb0c35f180f7610d4f52955eeb91e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 63c6b3473c0cf259a133d9d90ab7dd6433a22b8471a51b27e09b38d6476cafd9
MD5 91067307c9584d730835652ce97d9eed
BLAKE2b-256 c32933a4db0bdb29b4d8bf285c26fcb2fe3332ff06b2cd9b3e42072bc3145769

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 23767b532c0b9ceff970344c0bb674cd622b53b93405269e54cb14dfb69c45a3
MD5 336b5288fad64ae23b94336e3dcf8d33
BLAKE2b-256 3febea024e53b71ac8fb5fbafb2f758143feff8e692b782c4069672884d79d08

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c65657e109fe0e3b1abcecd9b7f538bbaf90017eb6bfbf687b2d9364a38897fd
MD5 b5c095338d2fef44b2fd8cd37c5fcd03
BLAKE2b-256 59ae249efd14a531b40a275fce95d01f75193ccdc35ce8bd04a459ce16a26f97

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 00240427d6fcf5defd6446ecd4b38aee24d6ce07f6d46b2bdf96f2631f01f8a4
MD5 34484e75f2f79741f56e8b0bb1527217
BLAKE2b-256 fc0b9bd402be6053dcc018dd2f691e24e0a04be08d2fe96a642b0b9ce8739a31

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-3.8.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: xxtea-3.8.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 12.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xxtea-3.8.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 50d96b8489aa43588fcd490ba31667b9224e9192c0b61a294b040f4ce98b4ab7
MD5 4475308bf2f98561253cfb0187e56b36
BLAKE2b-256 cc11307ce1af3ce4ee52bf0452e24430b0e8878c84aafdd0b73d522675b6304f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-3.8.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 11.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xxtea-3.8.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 89790fa46d2d5373eb187d014d2685d76cdcc2f9321aa3cb03d6e35c3bb39cdf
MD5 4b8a12a85172db3b05ba8e5ce9aff6bf
BLAKE2b-256 7aff7a33205435d755a2ce74c8653585b1416d45c10dad5fb4919174602c1d25

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-3.8.0-cp38-cp38-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 26.8 kB
  • Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xxtea-3.8.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef45a03980d0707f01c6cb089f1cdd9525b65d3cff58fb33808b90204b78ba66
MD5 d582d89ece2ef5239cd238b2658a93db
BLAKE2b-256 0555e69d76c8e681c7ef10672e7f7fc1dab4d40955c6b31add08a21bb36e21b4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 cbc21a3001d4d2d48b3c26cf4bdf7f13fa471224a64eb596b9d317d0977856ca
MD5 c94b4baa55e9cf6c4b5c678cc2bce6ea
BLAKE2b-256 99450aa201fd128d41ad7bbc98f1b321dd68b8bfef8eb3af49b7a2ca23c8910e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp38-cp38-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 534338b0109028e73e18ded03b04394ce9eef6527b54014d702b06d0c5d64966
MD5 8adc4c937c552643e6d0c45facd837b3
BLAKE2b-256 ee5272f7616e4e558815c789fbbc7de886cb0bbb815a86dc1f4bf65a9bf8f230

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5c5127ab8a16067d421aec16dd2cac9cc26abae080326842626abe12a25f1ab0
MD5 48f4f20ed36bdd7c150979efa81ce59c
BLAKE2b-256 0000f7df52acb827abdc1b450e75e5b9cae9adc6763bed309dbec38bd2498945

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-3.8.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dd95a03d16c94a9a33ad706836c74149437371e3a7b2a0bfc0b67905cc9b9011
MD5 9ac59472627366139a7cba843d2b06ed
BLAKE2b-256 a4f08f27a75de7c5566eb319fcc358baf9fc730bbb83ecbc249721e40055304d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-3.8.0-cp38-cp38-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 25.8 kB
  • Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xxtea-3.8.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 78d04758db9980df1e772829a6ea9208058b9c9bd708576feb136829e27016c6
MD5 98786ab39d898368cb892fdd2978c671
BLAKE2b-256 329f5f8d1bf88d8695d94749c3a939dcdd988d82a0900dfe406ad5804a2c6aa1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 26c5bc618daa3d0b052ea5021d53178109722abba48779705e36ac9d2d694982
MD5 2fd41217b0d83671fb35ebe079b193cc
BLAKE2b-256 65190e6c6e73ab3fec02677abdaabc9828d8da66201303f73e3321e61015dc73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp38-cp38-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3f362d4d185b581013caa6abe6461214f1b5ff0095b8be5602c14f6725691879
MD5 91fca36b1737151f632b0d9d6bf25ec9
BLAKE2b-256 f81473beb0d8370947a4009bd474df4dc01afc210068d74cffc6a1c2f24bb08b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d3c2d5919fdee48ad671cb2030e49a108c9e8ff1253122447151f46e5062f411
MD5 c5030b3adccbc3189af38f1c406a92e5
BLAKE2b-256 0197ddcce016e591f5a7282e6890d1f3b8a1329f2c22945a5ac6f53e8a96d930

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5109b2cff48f6a2a95a4a8bb0f5bbf2cac33e5a9536c9a33c94959b76689a04a
MD5 37fe009c62e2fcc794508d3f308ad553
BLAKE2b-256 708accfdc99a74c03daca7a71f6f134fe838310851e3623056590622ab9031fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 010900702d6c4ebec1f4adf1501dbd486dce96f3ee1ae434de175b60ccb0b584
MD5 d15b822f9a0d985e7ff810d2d9cf346d
BLAKE2b-256 1333d700cd1c0b4daaac73a40ecd5152e12a6ec51ffb93fb435ad4c43401b46f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8f046cd8d13c728d9b16e14feca606315cdadafd23e3f699d8a2ea65c2cb4190
MD5 b007a16dbb23dc1dbf301c5635c09195
BLAKE2b-256 077416868d1424412a45b3e9b3f351b90423010437fe252c53d4b3ac2a085c26

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp38-cp38-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-3.8.0-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-3.8.0-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 9389367923ae42f501f80a95447843179722f6b356296170871b81b6f460d8cb
MD5 9d7321731d104f7cc6f760a7049deca6
BLAKE2b-256 8b5999c906f0c187c989b90771617a1716a15d79cfa8e96249fa34e705881098

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 1c7edb9084b9d07a90326effb643ec309466a15f0022e2715500fd51d5e4708b
MD5 8b4ed0bd0f2f2107cd49bccc7c58f273
BLAKE2b-256 6048a43a1aefab430f96de97a113a7101eb2d695986f7ef012b2a7244087963c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-3.8.0-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 9.9 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xxtea-3.8.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2dc91ceed448fbba7349570370fc65e5ee69d668889848fbc6f41db5094c4eb4
MD5 fc95d2773ab265a12ec7602394f27843
BLAKE2b-256 c083001da27b4ed5d197db770e3f1c3d99355439aa50eea7f1afcbccf25bc1ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-3.8.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 97a7c8ad4beae81f42b757ead8fcea2b9bd8a9d95f922a46e84dbb2066ed5bfd
MD5 51885caef2366744fb7ae5e10d4f07c9
BLAKE2b-256 ab47b939f4c981e2aeb966b2a2063266660c28bc3345147771ca5bfe5c164e38

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-3.8.0-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

Supported by

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