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. rounds must fit in a 32-bit unsigned integer; values exceeding 2**32 - 1 raise OverflowError.

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

Catching Exceptions

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

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

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-4.0.1.tar.gz (14.9 kB view details)

Uploaded Source

Built Distributions

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

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

Uploaded PyPyWindows x86-64

xxtea-4.0.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (12.0 kB view details)

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

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

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

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

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

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

Uploaded PyPymacOS 11.0+ ARM64

xxtea-4.0.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (10.1 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

xxtea-4.0.1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (13.4 kB view details)

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

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

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

xxtea-4.0.1-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (12.4 kB view details)

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

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

xxtea-4.0.1-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (13.4 kB view details)

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

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

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

xxtea-4.0.1-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (12.4 kB view details)

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

xxtea-4.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (11.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded Windows x86-64graalpy312

xxtea-4.0.1-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (12.8 kB view details)

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

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

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

xxtea-4.0.1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (11.3 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

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

Uploaded graalpy312macOS 10.13+ x86-64

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

Uploaded Windows x86-64graalpy311

xxtea-4.0.1-graalpy311-graalpy242_311_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (12.5 kB view details)

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

xxtea-4.0.1-graalpy311-graalpy242_311_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (11.6 kB view details)

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

xxtea-4.0.1-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl (10.9 kB view details)

Uploaded graalpy311macOS 11.0+ ARM64

xxtea-4.0.1-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl (10.1 kB view details)

Uploaded graalpy311macOS 10.9+ x86-64

xxtea-4.0.1-cp314-cp314t-win_arm64.whl (12.5 kB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

xxtea-4.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl (35.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxtea-4.0.1-cp314-cp314t-musllinux_1_2_s390x.whl (36.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxtea-4.0.1-cp314-cp314t-musllinux_1_2_riscv64.whl (33.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxtea-4.0.1-cp314-cp314t-musllinux_1_2_ppc64le.whl (36.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxtea-4.0.1-cp314-cp314t-musllinux_1_2_i686.whl (34.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxtea-4.0.1-cp314-cp314t-musllinux_1_2_armv7l.whl (34.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxtea-4.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl (34.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxtea-4.0.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (34.0 kB view details)

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

xxtea-4.0.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (35.3 kB view details)

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

xxtea-4.0.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (39.3 kB view details)

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

xxtea-4.0.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (37.9 kB view details)

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

xxtea-4.0.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (41.7 kB view details)

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

xxtea-4.0.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (35.6 kB view details)

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

xxtea-4.0.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (34.1 kB view details)

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

xxtea-4.0.1-cp314-cp314t-macosx_11_0_arm64.whl (10.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

xxtea-4.0.1-cp314-cp314-musllinux_1_2_x86_64.whl (32.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxtea-4.0.1-cp314-cp314-musllinux_1_2_s390x.whl (33.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxtea-4.0.1-cp314-cp314-musllinux_1_2_riscv64.whl (31.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxtea-4.0.1-cp314-cp314-musllinux_1_2_ppc64le.whl (34.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxtea-4.0.1-cp314-cp314-musllinux_1_2_i686.whl (32.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xxtea-4.0.1-cp314-cp314-musllinux_1_2_armv7l.whl (32.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxtea-4.0.1-cp314-cp314-musllinux_1_2_aarch64.whl (32.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxtea-4.0.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (31.6 kB view details)

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

xxtea-4.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (32.7 kB view details)

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

xxtea-4.0.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (36.3 kB view details)

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

xxtea-4.0.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (35.2 kB view details)

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

xxtea-4.0.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (38.5 kB view details)

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

xxtea-4.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (32.9 kB view details)

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

xxtea-4.0.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (31.6 kB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxtea-4.0.1-cp314-cp314-android_24_x86_64.whl (11.4 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

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

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

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

Uploaded CPython 3.13tWindows ARM64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

xxtea-4.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl (34.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

xxtea-4.0.1-cp313-cp313t-musllinux_1_2_s390x.whl (35.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

xxtea-4.0.1-cp313-cp313t-musllinux_1_2_riscv64.whl (33.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

xxtea-4.0.1-cp313-cp313t-musllinux_1_2_ppc64le.whl (36.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

xxtea-4.0.1-cp313-cp313t-musllinux_1_2_i686.whl (34.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

xxtea-4.0.1-cp313-cp313t-musllinux_1_2_armv7l.whl (34.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

xxtea-4.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl (34.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

xxtea-4.0.1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (33.9 kB view details)

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

xxtea-4.0.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (35.2 kB view details)

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

xxtea-4.0.1-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (39.2 kB view details)

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

xxtea-4.0.1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (37.7 kB view details)

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

xxtea-4.0.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (41.6 kB view details)

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

xxtea-4.0.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (35.5 kB view details)

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

xxtea-4.0.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (34.0 kB view details)

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

xxtea-4.0.1-cp313-cp313t-macosx_11_0_arm64.whl (10.9 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.13+ x86-64

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

Uploaded CPython 3.13Windows ARM64

xxtea-4.0.1-cp313-cp313-win_amd64.whl (13.5 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

xxtea-4.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (32.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxtea-4.0.1-cp313-cp313-musllinux_1_2_s390x.whl (33.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxtea-4.0.1-cp313-cp313-musllinux_1_2_riscv64.whl (31.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxtea-4.0.1-cp313-cp313-musllinux_1_2_ppc64le.whl (34.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxtea-4.0.1-cp313-cp313-musllinux_1_2_i686.whl (32.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxtea-4.0.1-cp313-cp313-musllinux_1_2_armv7l.whl (32.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxtea-4.0.1-cp313-cp313-musllinux_1_2_aarch64.whl (32.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxtea-4.0.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (31.5 kB view details)

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

xxtea-4.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (32.6 kB view details)

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

xxtea-4.0.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (36.2 kB view details)

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

xxtea-4.0.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (35.0 kB view details)

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

xxtea-4.0.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (38.4 kB view details)

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

xxtea-4.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (32.8 kB view details)

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

xxtea-4.0.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (31.4 kB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

xxtea-4.0.1-cp313-cp313-macosx_10_13_x86_64.whl (10.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

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

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

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

Uploaded Android API level 21+ x86-64CPython 3.13

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

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

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

Uploaded CPython 3.12Windows ARM64

xxtea-4.0.1-cp312-cp312-win_amd64.whl (13.5 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

xxtea-4.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (32.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xxtea-4.0.1-cp312-cp312-musllinux_1_2_s390x.whl (33.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxtea-4.0.1-cp312-cp312-musllinux_1_2_riscv64.whl (31.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxtea-4.0.1-cp312-cp312-musllinux_1_2_ppc64le.whl (34.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxtea-4.0.1-cp312-cp312-musllinux_1_2_i686.whl (32.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxtea-4.0.1-cp312-cp312-musllinux_1_2_armv7l.whl (32.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxtea-4.0.1-cp312-cp312-musllinux_1_2_aarch64.whl (32.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxtea-4.0.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (31.3 kB view details)

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

xxtea-4.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (32.5 kB view details)

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

xxtea-4.0.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (36.1 kB view details)

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

xxtea-4.0.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (34.9 kB view details)

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

xxtea-4.0.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (38.6 kB view details)

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

xxtea-4.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (32.7 kB view details)

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

xxtea-4.0.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (31.4 kB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

xxtea-4.0.1-cp312-cp312-macosx_10_13_x86_64.whl (10.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

xxtea-4.0.1-cp311-cp311-win32.whl (12.2 kB view details)

Uploaded CPython 3.11Windows x86

xxtea-4.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (32.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxtea-4.0.1-cp311-cp311-musllinux_1_2_s390x.whl (33.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxtea-4.0.1-cp311-cp311-musllinux_1_2_riscv64.whl (31.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxtea-4.0.1-cp311-cp311-musllinux_1_2_ppc64le.whl (34.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxtea-4.0.1-cp311-cp311-musllinux_1_2_i686.whl (32.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxtea-4.0.1-cp311-cp311-musllinux_1_2_armv7l.whl (32.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxtea-4.0.1-cp311-cp311-musllinux_1_2_aarch64.whl (31.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxtea-4.0.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (31.2 kB view details)

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

xxtea-4.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (32.2 kB view details)

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

xxtea-4.0.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (35.9 kB view details)

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

xxtea-4.0.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (34.7 kB view details)

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

xxtea-4.0.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (38.3 kB view details)

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

xxtea-4.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (32.4 kB view details)

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

xxtea-4.0.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (31.4 kB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

xxtea-4.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (32.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxtea-4.0.1-cp310-cp310-musllinux_1_2_s390x.whl (33.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxtea-4.0.1-cp310-cp310-musllinux_1_2_riscv64.whl (31.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxtea-4.0.1-cp310-cp310-musllinux_1_2_ppc64le.whl (34.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxtea-4.0.1-cp310-cp310-musllinux_1_2_i686.whl (32.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xxtea-4.0.1-cp310-cp310-musllinux_1_2_armv7l.whl (32.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxtea-4.0.1-cp310-cp310-musllinux_1_2_aarch64.whl (32.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxtea-4.0.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (32.0 kB view details)

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

xxtea-4.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (32.9 kB view details)

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

xxtea-4.0.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (36.8 kB view details)

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

xxtea-4.0.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (35.6 kB view details)

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

xxtea-4.0.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (38.7 kB view details)

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

xxtea-4.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (33.2 kB view details)

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

xxtea-4.0.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (32.0 kB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

xxtea-4.0.1-cp39-cp39-musllinux_1_2_x86_64.whl (32.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxtea-4.0.1-cp39-cp39-musllinux_1_2_s390x.whl (33.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxtea-4.0.1-cp39-cp39-musllinux_1_2_riscv64.whl (31.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxtea-4.0.1-cp39-cp39-musllinux_1_2_ppc64le.whl (34.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxtea-4.0.1-cp39-cp39-musllinux_1_2_i686.whl (32.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxtea-4.0.1-cp39-cp39-musllinux_1_2_armv7l.whl (32.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxtea-4.0.1-cp39-cp39-musllinux_1_2_aarch64.whl (32.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxtea-4.0.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (31.8 kB view details)

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

xxtea-4.0.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (32.7 kB view details)

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

xxtea-4.0.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (36.6 kB view details)

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

xxtea-4.0.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (35.4 kB view details)

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

xxtea-4.0.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (38.5 kB view details)

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

xxtea-4.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (33.0 kB view details)

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

xxtea-4.0.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (31.8 kB view details)

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

xxtea-4.0.1-cp39-cp39-macosx_10_9_x86_64.whl (10.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for xxtea-4.0.1.tar.gz
Algorithm Hash digest
SHA256 645d29954726523a0c23e69ae262948dc8bafdfd23083fc7e655657d048a1b68
MD5 677fa36dc257790ac4724a146e9f1c4c
BLAKE2b-256 0401c9c45512cfcbc626e702b7e08d9376553c5d4bc96d5c376f2013e4f8212c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f16287c0be51634663450e3e6c668e8aefa70528f90c2910c4d06e17c6aed2e1
MD5 dfb88fed5386d182617d649408e7d6e9
BLAKE2b-256 7a53b99489b1cdd0583543c15a5bd36d3fee3526386156dc917e403afacf66e2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ce9d2094ceb3f3d3c569f8e3b4ef89b70ebdc86c1b81718b13ea724fb3bff911
MD5 2f88eb1cee8b7d54f5d2584a727a6326
BLAKE2b-256 1c11da7fd73708b251e41147711415a75706fb2d0375533b072bb896cdde658e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 738a81c9312f2238394c9467b6e6adf43415309678f8fc0adf616795421a1ed8
MD5 c4707f47a9567144aea45b5933e890c5
BLAKE2b-256 84e0b86ba21c1542973710a8ea2bd81dd2b61e84a46e009ecb15a1b8e7474e68

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4400df5f13de5ce71034af07044c967c118d702a41007c459fb4ba23c9d0e5e5
MD5 35f168e23286bb706338a5c20388d0f6
BLAKE2b-256 06b65ea248d35087908cc381181c47fd64932d626ab287b525f44ecc8b830984

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 011b91cb55666ef7780dbdc8dac6223dd8e66fe23da40a4d6f06716b1e6207ce
MD5 4953ac83bd4947835dea34e2e2d10b82
BLAKE2b-256 aaa35f07891fe296c4c63b1c6237774bf1f72d1382a602e3a12de808c127e102

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b176bf0d48d3505284f3a2c71210fa97442aefa36bb0e36937e43c7bdbb2b2e2
MD5 5665b83b8d055dcd4b1f33084b2e71bf
BLAKE2b-256 2392fe49ae9340eccb907b4858ba630ed2f0a05296fc47c68855c3e441dc03ad

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bd2b43abdec682093bfecf3056a55b7666fb1bf704fdbb518b9ed98005a38cf6
MD5 c3b0eaf5128a83bddf5aeb3d457bc235
BLAKE2b-256 7fab3f384b00185dd5317154ed04d855997f548610c9c8898236818760afe8f7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8c2f1f247611214e4948cbabe22ca22b5ed94b9bcc76273a37ede451dbd33f0f
MD5 3aedaa761fd0fa08341a18ff6375ae77
BLAKE2b-256 a904f3ab3fe9385ace332d981320d469873755595b86c5d645c4b8b9a2eae74b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 52ebcca065c71d05b4ddc0c3cc7c140ae342dda5bd331d43a1d0bc7ebc97ac87
MD5 8f4be9ebb722ca40ba1b6d2d243a3783
BLAKE2b-256 de305e0309223e5a6bd5fc4b30af406c41054b7173cfc10d5ce3a5f02787cf7e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 8894892195057be508a5e4c8e2e7aff4a54b3dc6cd72659ddce23d0b78f82731
MD5 a68e1ada7c3b6a8b67d0bd82d44edb35
BLAKE2b-256 dddf3b0f1b1e9b036b10aafd68b6066279e4acdd344071248e6c84077fde0519

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b678352feeab27440b03792d2745d4a2f3e884c28b01103e7684ef485b7f5785
MD5 4cea1934d611fd1b3c504a85a07ee789
BLAKE2b-256 710a376e1c48f2704927ff60faa7a8a89ec6a3fe1509c800ab098e000c638a50

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7483b68cc1d6c8d007999263e3d9dd17063eea88b46511a48349dbc260314203
MD5 3a5694a785b4d1f822000230cbd1cf8e
BLAKE2b-256 afc8b91b74f4b7ed418c61820ce2f6a27faaa35ae87edcffdef7eb5661818c55

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 794865be5b55f4b424a732a66d334bc32de713185a5613becc1e152a483a9c39
MD5 88893c695fdce866ab88d65fb1cf888a
BLAKE2b-256 82531640b0a71b9cda4f52f11f10e3fee31e35ab022e28190243776cd94c23fe

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 89d5895d8189bd155df1b375d98c2d9a6dc4d1edfa97c2408cd066b92a948159
MD5 5462d53606bdb013cbf33a8c62b4472b
BLAKE2b-256 601961518fc537f204eadc46d533885f3a8400e286e70bc0bacbfc4a195e7249

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2c175f46b6aea5d4a03476770d1fadc87234d4eb2124a5877a06ff53eb80877d
MD5 1a1fad7ea97f35f0fb0139391429a48c
BLAKE2b-256 a7b2b0c54768448576a694b38cd68fc587e1a923066dc93304d9d12c51499aec

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6ff5a0072ec8bd3159f0c9f09c0edd810c03c25ed2078e880ca10d5b346001fa
MD5 fc1046c3510e3d12fc08b1c1162db97a
BLAKE2b-256 4a4eb00bcb599b48f3bbfe25cb9ea1a886afe22b32538e9ac9263979831806a1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d970cf18f10df6e2be96a7586f359651a4fe61571ec7966f675a152af431845
MD5 990781bfd1d7a5f63f4af904fc6e4ecb
BLAKE2b-256 e540617e55fcd1aa134874b7ca76bbadd9ca556504f26c2946f491b490a02e72

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ee2a571d2bcd57d87b8a3a2bf81a112b94af01b72a91f76dbdb34ce5fbe7e0ac
MD5 348c9d41d3812aa907f65ed9c8857426
BLAKE2b-256 b9a85380e517def909bb930029d865b908528b7d0fed852d0806574d2d595626

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-graalpy312-graalpy250_312_native-win_amd64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 217b9a8b82f5220668d3539c7dc74048ad01cd157ecf02d467763e849b71b9de
MD5 88c9bf7a72a22a21a2869acd7a1da6fd
BLAKE2b-256 f6d52f2837949366d4844d16556ba6a2c6380ce949783d3b973f75d810cb2474

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7eccdf8e0f535396537d050995c49d5139aaa8b6a292f7f89a5c52c612304806
MD5 98b6d8a02f1cf1ac969b244b00bf8471
BLAKE2b-256 7520b09073620962df473fae068504b144082fec7ec22ac19d653bf847b0e327

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c85a83d8adfd560539c0a2035a9c9832f8d82909ae2d08463213431c84deb9ad
MD5 f9f2e9d5504baeca83a8b6a706fdbf17
BLAKE2b-256 79c1d592382f6a99c3d6e61e4f4d980fe53ab0dd6a97a2dc984ad1b35de4bd64

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4b7ab620ea49beef8611df60c4f5567283cc0c5acbfe1b8beae1f29c316e409
MD5 ecb12368dca11682387213084649a234
BLAKE2b-256 55482657481f65a28054aad964c173ec43a876123a7f1650fa3962eb42e1da13

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 50162a93f0a76bf203a9403850747a5316f567bd2b40471e08c533a0b93ca1bc
MD5 622d824e813b7ca887d6c37b1c715693
BLAKE2b-256 3c0831043a342b0eba7e3a2f1cea52375bd7b2094b89e5ed1089208bd1bcd6a7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-graalpy311-graalpy242_311_native-win_amd64.whl
Algorithm Hash digest
SHA256 4951f6cea3507e46775258bac96335d08f6e66e313d0b4248552829c97bbe6a5
MD5 1d7d1c49482dbc4203340a1644d16cb1
BLAKE2b-256 bc7f8eff1873aac5bf7b34a343d1ccbf7920289e5c7e5a809388d2e7e6a657f8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-graalpy311-graalpy242_311_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3bd6edf93b5f3b563858b3bb185ec5be79a5d0a541b22161e3f148dbc835861d
MD5 ee8a70bb6396394c4be35350fce3d22f
BLAKE2b-256 85afa5c1b7b875fad132facd3008582ad0383fce61348f804023a1fae43aea3e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-graalpy311-graalpy242_311_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ae7dbb92bdd14b343c94b8271e0cc2c0aaacc6d527b5207fb2848ead0326d593
MD5 e7e2f831e78f51ccc64fc78b2aef3c88
BLAKE2b-256 d7e7a9e52d5f301a1be0cd9cfbcac3c786b3cabec135a248876ec3429f88252d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3137c863329a50d4fbc77919efcea638ca6301505d0660fb839f161841034ae0
MD5 8489852c726e0d2320f99fa46c2ce6b2
BLAKE2b-256 b617e4830144ceb9ce7278adae85d64f642bb3129af72321cb944bf5e35f80f7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b691366e094e7169e5e0162a1a3eb72d7781d0757c90d5f3cd3d33674e373132
MD5 1a3dbedd0fae5484da889c00d1f74f25
BLAKE2b-256 0b7a541d52638511285444d582babc68ea9928c63220386e2b766d66276ee39d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-4.0.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 12.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-4.0.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 d5456aba08b8b0abbc6a6cbbb1a046c8f744fec058969f4a902ce8f1cf4a5988
MD5 b656d91aec21f1623eafc9998f5f8a1d
BLAKE2b-256 3715d3f216b6b9e4d080f4d11a96198cd6b51dcabca49d1bcecfecb16c1b0635

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-4.0.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 48f2cddf9f87491dea3ebae08f6909a16405f59edb6b1caeb87ef48d1f2471bc
MD5 b1b14c80783d8b7dcaffea55d33cb76b
BLAKE2b-256 ecc66b94d450198f8a880b5a443cc26cd88e7fa0e25e35c3ff841e2c8d5b7ce3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-4.0.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 76008de00689797442002d78151b8175eba46d6f743eeacebd5fd9308a0e9d3d
MD5 f13ddf3f552ecf2ab4bb9e4e42ea0a86
BLAKE2b-256 320c0f42ef592c2d97d244e9562bc3a95d96d0adbf602f3eadf6e7250a5b26f5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d90b1f6d9451e6aac1d49353d19620b74ddaf2b20679b9dbe5d98c4569d3d857
MD5 4bcfda2f2e83df1f3a6542e2c4e4d6ee
BLAKE2b-256 5818e6c067d1f18fda54a0a9ce12fe97a050eeced2dd11a9f337ddbeb3894163

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9a8291b4f1e8a5e4900aeb42d3127f3417ff2f586c9d1ffb608fec228cdeef59
MD5 7e8606ba7ce4f8100ca5260c007ffb98
BLAKE2b-256 a3e4ccb4456c1f490f5825672327f6d65a38724a6ceb28810383e6fbc43b4dea

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 270406aad908f192ff48ebd850d605ac14ed0cf95a7ed96ade85bc08751d3646
MD5 a75d9bb596a4c40f651213d495a2271e
BLAKE2b-256 4d8f5a1207d79ee50abcfaee5a3944df939844de179e71d1711f98e467e00ebb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7487fbb73f39d3d383b7f7c310e22f00571ef9a57549c67cc168ec20618b0629
MD5 1d9eee86f702921b05d207aca8255076
BLAKE2b-256 b83c0902220aaaecb5d083c010a499475066b2046d05d77a9cbf7d7b133e4def

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d06664024fa2f04a8783e376aaaebfdefb81bc9b6ae82107457a4dfac721b5e9
MD5 ba44c03df77f2ca1e126ea27f7d0b15e
BLAKE2b-256 d483e07d13b210947af082a85f92a0e30c6db6615566707644190de700ce1e6d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9326f31768b3e2ff7359568bf02e033c0d15082fbbe8ecaf008c940c6671b2a1
MD5 e071aa932d2a482bd5be7d6e96b3d033
BLAKE2b-256 f054662c33e69bd310477e1e25a7892b19050b6e430bf4287408e782e5459571

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dff7429138da0aea6c905a2a457a0c74e1e952605815d8e4f2c0569b467f7387
MD5 33f9eb464a7664c592ab2db18b760902
BLAKE2b-256 cc1a29ba84847834fe6a1ddc22b85b6faca2adeca4d3d4dae552a43ac7fe0b54

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 75d28035b4acc835d39d96cbe60df673515f57502564d526f677f1036ab42817
MD5 b9ea935ef31eb421383bd250f1103fbc
BLAKE2b-256 cf7a373c1766c29102b6b0559b8180f837444bde0378ef97c18f8b50c27fa671

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3475b513b5c3b94446c755dd45b735ed7ecd6eb641a3e94438ec8663865861e2
MD5 73c594b433240f96929c18e20319fb20
BLAKE2b-256 22b54f26a8afafc6241ce5cd1d3463a0b307b3930561bf603a7fc444ce516e6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b52b7bb9ccfbdb9826e8714c5d5b0d3e84a80ddb989184f1511dfd94efb0a344
MD5 b0b94305d83b9c3ea0c77d9a92ee12bd
BLAKE2b-256 4375b8dbd715eb90b2f1e02f6a7bd6a9deb657a92994552198ca71d63e7b601d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 60dacdac1847289f733b51f92822692316335e4ed81470a7272b15a1e658e958
MD5 cbabb45339bb170f6844480648f18a3f
BLAKE2b-256 4c8851a5653f4cc95c5117617f9aa6b68ba0b264bb9c8167996016179d139d72

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d73befd73bce22306678dda4c4c324be5bbaa3553d3e686f09017c6407b7545b
MD5 e757e194f693687f0f2e80675f983384
BLAKE2b-256 6b9b1a78469e007b849313bd62891cf27454e74f1f221c4e49bca3e2b01a94a2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 81aa64ef2a5f9a05b9e2f7b81b0e5498c5297f74b5300dc0bde9986ee8c48642
MD5 f723682764032bb524f0491547612248
BLAKE2b-256 3a4ad83c8faea744a24b44787e96fa4209c7545827eed7c472b8187cc38a842a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 12190f39586ff590e8d4218d627c899b3fe9bfe1e405b78c961c5089dc74ac1c
MD5 085a263c44cde027a9133736afdd16ed
BLAKE2b-256 af6555cd91d89457ee289ccf4be629befd28268cdc6ec4266618e9f143b7076e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3e5c4d09ef4a976769528f44e3d2002d734a99f05b47464d28ce17758dfe119
MD5 35c0887a42b3675dfdb992f0f9ff110f
BLAKE2b-256 65de8e62e81a16ebe6189f8f4c8fdebe993b373fe6aa1c4d9a4b2b97942f3809

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9bb209bb22b43dc4bd8fc13c9248522b0abda27719d353dafb8ce306e4a04716
MD5 58e8d2381eada41049dbffd68dcf5f3d
BLAKE2b-256 77e3010a3bfd422fb50a3629ca42fb8352750587f65bbf7da37b9e6cd443e8e8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-4.0.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 bf3999df75e5366e0553d2c98cbac4fcdbd74386eae6df804b915324e9d59146
MD5 5942bc8135805976a133500d89e9660e
BLAKE2b-256 55a42635dfa8a907d486debd0a0cec1c523eec9b2c1274a60bc97fad2a9f6c9b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-4.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 536d65da87025c1c59431b648bdddb21fe2583f67caa4fbf8152a685410080c7
MD5 ffac498bfb15e8dec083ee8050aa8ec5
BLAKE2b-256 0c33cfd1572c46e73f774e7d213db31738fddf84b9df101d4d24b1e069f2e55c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-4.0.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e4da73ebee7fdf64e7b320910930b9c103e740c2e8e2884e347f5e59d1f7d235
MD5 1997accffcde2785593d355f92d83251
BLAKE2b-256 4d1c6be2efe873f25e7c9da37d024040d9065818116fe1a869dff745e08baaac

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7dc35556e3d8c9644c7078c3962af9f5be573051b1e7635cd7f18547eae4a9f0
MD5 908dd2dc9406a8014d89c9879557f6b2
BLAKE2b-256 9f17e3e802ac3ca89aed1e2b4ca46a81c058e8040510eebff58cdf269b344aa1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b422d417fd4194b02fb05cd245d2eb216177cea4dc771bcc41f49a47d40274b7
MD5 e7df8ef508d9873febd52115c27023c1
BLAKE2b-256 8cd73b7eb696100c28a58ac48acb5b18bf21bffe944f19b431be36c996217d2b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 17614fb6b3dc7de27b60f8dcb3fed975d700eb96eca5fa02bc9ed418e7d38b36
MD5 5f8407b37c435136935d965ee3a831bd
BLAKE2b-256 9915e003ede36af208f2e1d5e8654f35ff86e694d0f834d827baa21d08050d76

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6bcc31a68a8f3a6ba485dd6563458348efabfe04a4ea2c29925ea560aef71927
MD5 bf6614b8c21068346a5846c64fc20995
BLAKE2b-256 199124e270f4cc95205a491f552b02d51850bfbb7fdcd8d1d5a06d0f838c40e2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 186a243216591fe5bffff871e028d9a1101a6e60ea0f40f073c5552f846eb6d6
MD5 e5364030b788db28ffdac3671ceaaa15
BLAKE2b-256 9d3d77c8d407590cb6a919aaa0106be01aa5bfacc9c35a231d139a287018c7c4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9695aaf2441b26785d831febe0ef8b26b5af198f667d55d1317d3c8261e245b0
MD5 4e8d8faad6b7ca1e00b4710df0acc6f3
BLAKE2b-256 9560084ed6dbf60b944d566bf8c4fa5e22474d360a468ed2519ae63e63c8f638

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a77526f33d2b43471a06bde6b3be0ab434d3c80503d48d99a95c723ff71cc3f
MD5 994fcd400c9b25b7484ce83d2b062462
BLAKE2b-256 300e8e189499b6ee60bfa8ee355043de5dedbd01e49e996be9dd607937cf2e1d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5886068e6161b1ab5a1758e3c19f338072055f298d25da5177019d601f08921b
MD5 58a74b51040fb2bdc61192c384660a9e
BLAKE2b-256 52377b92940e69a802b0e19bea216e36243fefa20fcd19fd24327041163a6166

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 00ce8ffc981235070d0a0a216cb1e76400ddaf9c9d1be3c376db291767b4d649
MD5 aad779ca56ad065b57e8a691b72ed400
BLAKE2b-256 15431ad9cc43d0c99461399dab678953b92a156467893e83c22825a958c097a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5321007915a513b8c176960a0036370ba3e5ea10e95d3f6b2cd1233c3bfd87d2
MD5 9d6743319d5bd16fdcdceed77d33bcee
BLAKE2b-256 60727c3d3e5d05e2c75ad71b1ae23ea8f3ec4ab869e454c5529ae535ff6c29ab

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f3c76aac43d9d6ddb23dd62cf56667851c53ed7a4317a055663d8082ec488e73
MD5 4e82f35ff6ed9556c3aa21a02426440c
BLAKE2b-256 464098a057f5d4fbeb525748cc6d8192d7f21c1a18ac330b22d4fe2b13992c3a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7f8f131846afc4ba46c054b9ebc9963c48fc95e5cbf81ac67ce61be938108a47
MD5 0b84bfe5623b5c44cb3fb29586e8ba24
BLAKE2b-256 3661b0d267f611a88a3fc8ecbcca17e522f321964bd7725579f39b9c20d2f5e8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 64602d62b2edea9298ee24f1c26f8fb0f328af62beac118b73979b94de323d51
MD5 69d5f7c9bd9f91c24e6d92bb1a74a2b9
BLAKE2b-256 f19953636ee4d7bab570c797615e687b0b4f11915e142d2dad2de1c23cbac8bf

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 fb0b92d94e25443b82797a39609f0a9b9d82eb0aa6666bfea2162a576c0a6426
MD5 ae66c25bb892519f25ee04a05d704a9c
BLAKE2b-256 2cac1bdbf222c9d5ae9376aa058f3af0b85b967dd81728df42f5d44f66e48693

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfd2e8b10e4fa7c14c63cf0f5c9c580405c21ac0221222fdc0fb138149be762b
MD5 0c2bedc15ef2cf6474c2e0641f087450
BLAKE2b-256 fe7d7e43c43d9ccb5accfd9feaf8a668d034efad5925d85bcb8ea9592d413d91

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e2217a68e034445a02b401afe6cad7ed6431cec69373501b300470285746e09a
MD5 62a09b9c6bd843fc7205d43ed0d04ddd
BLAKE2b-256 e5d4d19f66eb1556b0187a87250aede8c78a20cc2d23574d346a7500658a8e4f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 a534a8df85d3a4e1f70726b3b68d2de9e8a0a3ae8aea61f29b5b73a7ac9ef9c4
MD5 cd6aeb6932071dd2d732de5c6c9df43c
BLAKE2b-256 985f9499b6812a5f601a8589e68948885254c6f96c5cfe3a36e0eafa914c2ecc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 49c78608340df486ea5ec73bbe8304bd13b75bb56d41337309aec4c9505c5d41
MD5 888039ba97714e503ce69ca52b532fae
BLAKE2b-256 bb4a229ab296f492f61c876fbdffe5dfe140301a53ff5cbcdcb5efb9732f3dce

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 a8bc09105ca60d2b487c8a925f024757279ec92db458ca9e867503bea89857b4
MD5 9415c59f422084d6956f246a265b9d1b
BLAKE2b-256 0255d6aef17bd98a6128078b58e04c18c98539cabc03298ab33255fcc348e754

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-4.0.1-cp314-cp314-android_24_x86_64.whl
  • Upload date:
  • Size: 11.4 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-4.0.1-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 13f11fb7cc432b25670413cb24602e6a69a877822793147e763968deab26111b
MD5 78e3aa6cf407e4aed6c9d1845a822135
BLAKE2b-256 8295d324c767f62f2982048e8b75ea094f5432aa3fb7949db7174f10d458cd75

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 123c3133e2d0968710cd3b35b94d53d2261e4a43745cad8c2cf3f9103be7bfd3
MD5 ffd008302e45e2ae69feb95d31954b4c
BLAKE2b-256 3c68b84915984ea1a8c8b91fa1e7e61d45666a1ba5476980cb80b3a3ca26de86

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-4.0.1-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 2c7c3e4fd7a646b6a38a02bcf9ca3f74c1d60cf5223dd57a3224f31a2b98a7e7
MD5 f1656344bd80bd8df9e0881b1c411c17
BLAKE2b-256 8a1892974d3c6a233597144ec6c1f81c4c298c16265e9943d80bb0f50ae62698

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-4.0.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 ca0f7cd0b73aac451f732ecd26e4ab7729e8c59d57b059f32c0b923ff1c42ffa
MD5 16a63a8b8571f51bc2172e2007403020
BLAKE2b-256 4667cd3f99a1e10f6d626bb1efcd05a10d2a6571ebc53c8d5b6d4501799857a5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-4.0.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 9c665e9629dd19a57b2906797afb9be9b019281b550b4120b321a61852a4b02c
MD5 6f56fc80ead1f4aaf88964d9a5f2dc11
BLAKE2b-256 d6d5f1384897620476935f29777e75654eddbd5d9755941e4e504f5dfc2fabf0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61c330a41c65401d31250a10683d3e03069e38d5beb896cf3cbedc337bd6bc18
MD5 5ff5db05ffb3f289707cfadff2309818
BLAKE2b-256 ed2b89ea6bd4bdbcca93e34219ee08091468417737a92d8276e7739a7b94a3ae

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4c5adef9db13decb885dcc5e2940f1e04afc2d29f491f00fb361b78308082d12
MD5 694d92c17594d57a40fa521f0917f8fc
BLAKE2b-256 fbb221940c57a692ca82ccf851ab965cfaf5cfa458fc25030b38023c6bf37676

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7deefd688da4304c67d3c35fa85382677a5096e3bc267810c5b76cf70c293220
MD5 4a7f8672edd09dcfe40fd363f5c4279b
BLAKE2b-256 2c3543c062df23033537acaa8f86febd45b362c3d9160273e51592e5354f94b7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a2aa06592c6adb2f3b461b0f5eb5e353f266103309987da7dc8387a177b1848f
MD5 f11d4b77a78068221e94093a657cc208
BLAKE2b-256 8bce0e5df40deb283ec5648d5d4c42441aa412d60827e850b817fa1a9f79d8eb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a190d76567910998757095cc0e61d75e5b4bb20a8699150e438c029348bce926
MD5 02c13ff44a96d8abe167788b95d4c964
BLAKE2b-256 4bf7beee4d3e877145b0244d1280c683f53d4e2f699138b56036fe5ba0b5ce0e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e2a0e57591bb5d48e0aca8ecc422aab45b03df527db5d35b3a394e6de9ff762a
MD5 92ae5cf8182f64ddeb42808b80fbb784
BLAKE2b-256 3cb1eb4272a29b12431ec3a5797307ddb0cf101a3445756c71ab28e45d10e164

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e6af2e641e83026bf34518130a8bb6e76986eec206e5d99eb79b0f351f4e544d
MD5 e8ff4965071f4071cce84eb2fb433215
BLAKE2b-256 96017c381f59364efee3b242821c9bcaf6bd1ff1ffe756b9cbbc01a28823a366

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 6d82f0a3ebcf75b3aecfff4445286879b66c7e5ccaaddf8adb4657dacd275efd
MD5 f2493f4c540d1a3893bb7aec71168a9c
BLAKE2b-256 1c67c0437d23092564ac59cabf164ae43ab2ec69c09c90d25c7c898b5d15d37b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c8a23e214ae20d9a685f0ff34d268d5f09cf03ea712166494becb29ff3f27efa
MD5 c18c5c02507f8dfdaa79a5c3fef1a5b6
BLAKE2b-256 e4f4cb205dcae4ee01a36972a5eaafb514bdf238926ca960d693670000165045

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 8b9dd91fce7ab16c3f71c731ec535af619e974178807e2a6a83e2d24bcca1a0e
MD5 ad6616068848286c2364bc2e3f0bd682
BLAKE2b-256 f85379eecd6d258311821587a2e1813b6fc565f275235dde758bace4b614091d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2f0f778e96b8b6b439c46d287287c43840290b32a8a2ccea67ee58b1acda251e
MD5 9e5085926475d8d481a4916acdba90fc
BLAKE2b-256 443189a1250768dfaf155b3c245ccec5a2469d5bf1a9cc04383ed6f70122af42

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6d5605f5e7bf22a5750b3315852f43618ca3c6e50adf882070f027099cd24305
MD5 07b96aef8a1cacdaa53b73181d6b0f5f
BLAKE2b-256 d7dc078f2748dfa4ffe8a950fda8551b0c9bd2751b7d863385a0a0193ebdb616

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eb3526c3fea08b4a2627f282c12db99f614638ef6dba3af2f676fd44d2f8475c
MD5 f08189e160ff96390ef53eab3bf62667
BLAKE2b-256 6b61b950f4cf48485ef3d7583289b34c9e55830d792dbfac4685c6227fcc906c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ce05837497d6aa297f1ea91aa83c3365e045a70c4c6da24c28f39622ae5bf12e
MD5 cf4f8b1225bc10b6c712bd751ce4781e
BLAKE2b-256 218432a0b9b394c1cb43bb52e5dad56437b807bcd0e9657e32fdc3c45f7bc3ed

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95767197195289df7394d25e1bb6732baeaa67833d29059ece16d619daf509e7
MD5 dba773a6c73bd9a3615fd16639fe5672
BLAKE2b-256 48433d7e3fa28ee0f45c9d0ab45fee03847d35ef52315ccc28437aa89acc1d59

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 40cbd4cbdd78de23a41a5824d169f255c0cdf72739b08930a35146382608875c
MD5 c7920d77e338607c965c076b1c18a509
BLAKE2b-256 33798b3efa0132d964eaf577934822188f03a2c9508f762a405012e9e6a8836b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-4.0.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 aeda7c7e2b966ad1a9e9c27b2f4ff9e788a836eef17287579894ce48ffd75daa
MD5 dce1f3ba6f9725d703f6fe45c51b9fce
BLAKE2b-256 4705d8f7ac67263ca55568fc056067d187d121cd449de640e06f64275aba0d13

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-4.0.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 13.5 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-4.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9f46e13015b4d6defa7eb0ad3eb8110100b9a536725286c680d643c38de63f62
MD5 7ecf4e9812210f16eb3afa69785d7a46
BLAKE2b-256 0589f57dac6f81c28f7f530c4e068bed8fc5774539fd50445985ec803f10cb71

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-4.0.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e90e56bb271ec283ed5b9d755dc03e791ddbb7268662b3369fb88a96206d85df
MD5 205e5dd5f21afcdd559a401f4ff29163
BLAKE2b-256 63f9828fcc5a231fee7c28695a29d65b894e3f5e1831d76a4a126a84a38effef

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 430265aed9d490cdaad67a4d370a6928e1b286c174317d3f279a1224b361de9b
MD5 de2d991fcc38db30cabc69aea998ad2e
BLAKE2b-256 a1e65ef9119e66c0302d874c1ae1bf813854138d2af0cd20d3568c19af06782c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 21f9a344f92587fe9c23604eca2fafa556cf098e2e6b8816699a06c4e057ff63
MD5 1244bdd03515a388fd9b7cc5ee890a9a
BLAKE2b-256 f8c162ba71fc683d8b60ca24c68f8e942213385ed71cba884ab4dc449425065b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8accd24318a23443205a6a44a63d15a59a47c094e251bc5647a0545fc92d55c9
MD5 8a2f862dd33e1803e2dc4a26ddf1164e
BLAKE2b-256 91bd66e91cb72930356200c0453a0801c581dcde4fa9f3c99e4f3ec8bc1383eb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bd1b51737af762ce11e9800b06a16e5625dbcf79145ee11275a51753d9e96821
MD5 e7675949f53e9e2abe59aa5fd30af7b7
BLAKE2b-256 b48510c7220476e8f7838a66431ae8d41585b6e6b3295185b30087f2067df71e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c10e2dde6a7e0f9f2c311fce2c982ebb06a3be63793d9b41761b414a3a652cd9
MD5 431cc2ae7cb1a5c285a11eb05fc81a6e
BLAKE2b-256 ec5cf3636150afaed756f3fb32934e5dbb6545fa266f131a37b38d4666946351

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7279aa885f4251c8d26266560fc6699b5795befc74aeea71a23f9d82e3417ed3
MD5 983fab8bf380858e4b5e6be82a424d27
BLAKE2b-256 6f23e1287a413ea171681fa0e34c40f3af2b436b020e49eaa45b7f2e8a66220a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb112dc54ef2975efd1c8c4c92216e89ec72c6f87164cee306ee4e222dcc148e
MD5 12c290978ed01421914f4ab93eba4afe
BLAKE2b-256 d7f546053e6444a797378773deb500e11867668479dcaa5c0a6d180887b03320

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0e15080cc323bb281e086476ee045616c845c980338b93a75bb049c99eb9e07f
MD5 c1f6015507481b94f8c35d452290397e
BLAKE2b-256 e02b97d9e13ada19a15a291418bd2c5e6369c720d865431cf9c69ab0c910a524

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a9a4c6d34e039ddb98cd456fe857d0268780a615eba057f7161f9d86db8903e2
MD5 59696f1327325b24ad15b6efe43b51b0
BLAKE2b-256 d70f6e217183f6adbef62b25a3136af2d710631ec1610b855d2131cc29068942

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b006127579a18ea5eff3b250132d3ea12b5a22b4f850d1023fecbf8fa229e09e
MD5 d87f0e93a8e84df3f110325b691afa37
BLAKE2b-256 d8676de3b26ddcd67297f90122cc8b15e4b3565b206fbf17319b1983b13c0885

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9f47258fc2f4a00cc298fc7081d674c829a69c21a67ca0ea1a33dcfbb474b8aa
MD5 20180f81708d92af7c131fc750eae376
BLAKE2b-256 5b128ec218c07b3d43240664e4989a19670c532bea7ed24c4004dd4a3e511c22

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 adcb2dd9cfce240ffa6f87162d82aa7b189862a296f0b592b37c5f4a0568f121
MD5 4363356477d9a5452990f2042f9b49b3
BLAKE2b-256 483e2c3f5487377a1662f9d87d15798fea94a1af41212c76a52ad4e70a0b8a81

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7a364425879431c8961cfb4f07025de820932aa91b611e1a65679c23abd1158d
MD5 8da9034af3b30f54129300a906492e29
BLAKE2b-256 7a97c2566750ae5d8ab135e0e56eec8214a1d29955280a48f164a0b0172983ed

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 8b6f864302c02f9a87a9119417a1c411d15376d5480fa3ab37fe8c639c704a9f
MD5 cc9bc138619017fbf9496145bd2005eb
BLAKE2b-256 0e492c8adbca850882d97fbcd01fc6143cd7ee61f552faa422cec2e357d9b2c0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95e5fff44efecdb99326ac9e1dda71b823d0c973afb00be906cae29f3a747f3f
MD5 94b4a5b4ee324d65de337b7c55ebd1c7
BLAKE2b-256 c6a1be0ad9f96b9fc8adbcbd17da3965ed509e717a50cbe8790b5f280496d7de

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 506d9bd05f4aa178d13086c72488106d35b1e4e26a10c7a8a70c9ec66a43d7cc
MD5 0f913db7eb04eae01da9e49cf802d885
BLAKE2b-256 f11ff943624e48b92284c6af21f0515d5dbdf1e27138ac3b5400583ef3361143

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 59a778efa3b617a87313ff1bcba14d92420b7f558f903df2f01b3452a4ebb6f0
MD5 a3e38ba60605866e4d8225dfd6f14758
BLAKE2b-256 cfd633d32afc1b5ac2d954c4afc83049038f993d5b3b64618a2c2b3d681cddc9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 f6cfcd09e5f0aac1648e4b26149328ae993c923b6c74b32b17cf5325e2519203
MD5 c78ead5f881c82317cd49f6e2c1171d6
BLAKE2b-256 1ed7a400c4c156bd5c3421f91f79aa19794d07d34415787c8c39d0f0258f785a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 ea026273564c722b379e223cbc6651338716f2305e584ab2777af9de5898f9ec
MD5 6738b8f371e74b107492ca2d9c792345
BLAKE2b-256 4c3c1e0e38741c8ed599b3d5c35a6aa62278d1332aa7d16db3836ce2c700ccde

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-4.0.1-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 06731491d5fe207c9949fa8941317e4110b9d969fdafb3502beb74a0ae9d4470
MD5 18c34bfc76be55028a8f2e81658f0699
BLAKE2b-256 845d724c5b4d722ca476d26878ed497cda317b0196a837d61b41624948093b43

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 bdda345de21b6ccd044387145bc19290601ec10bace6b1a049e3757347498262
MD5 ca8b8bde9af13dd568ce782df8ec3fce
BLAKE2b-256 e9726a176bccc6358717440ded79acb38eb65bc38b44257a980936a785bd231d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-4.0.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b535276043e4d1e2432a6ece0e3bb29c903cc0db9bd08bbfeeb6706f43ac066c
MD5 f53a351c974f487705d26cee9b6f2a05
BLAKE2b-256 9ae69b7c6197966b0b45f8a5cb9838812b77ec6948a80f281b344478fed4bd8c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-4.0.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 13.5 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-4.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e8825d6a56f176eff3386362350e957f1fecc6eaeaeae2a6022b1d319af6f596
MD5 fcbeb1a8d31f39a0811ea13f6c30791f
BLAKE2b-256 da420952e0be72bf33b93bbfb6bd9c111eab6a765fa77c3d0cde64778cfa2395

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-4.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 18406800d67d8408eb809d630fe6d8936ee7b6c45c216997cd60b8a5abd07b80
MD5 900cf5a5e430d2e93405d24d2821a917
BLAKE2b-256 063d81fd9eb55390e46b5f7ab3d9785fe9afae0105f2d8181dc5ba7b1317cb79

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3fe3d79242c287cdfa6cd6bc8be233e1211f4df21d48456dd462ddae28a72b7d
MD5 1458f8754c2696e6ec21c89f92e75a0a
BLAKE2b-256 163248647bd11669e4a9d6426bbea62538e0e6e04df4ccb62ddba4cfbb3119f5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 98cc89c2278faebf9add83343980e1ba6a7183f6f59c92ed5161334900dd87bb
MD5 3d16a0151a86bbdac3863a4b80fb9f28
BLAKE2b-256 abd355afca3e39d611afcb39e078a9d4a4ec056789812cda27bce3274a7abe5c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2159bcd7702510bf687608d84a7b3af6d23f3587d96b7d5e5a9688a8c6428ac9
MD5 4384d1470e7929dff25aed39c9bc218d
BLAKE2b-256 208dfb3e27743834f5a1e203c92f23136051a49ab1c6babc1f9ffbabe55a2ace

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d273d50e28c32fda880ec334cbd219e42255296600943edaccea9e7806000df8
MD5 6bb595d5877bf044ae97bbea4a3f8033
BLAKE2b-256 73167e329ba4f64ed12291436bf64f972aeb17df7c9738dafd6d0821befdeac1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fda33cc2ddd3c77d531765978c168bb61e6a0f2cc289d167cc71cb22c80ab4cd
MD5 611e7f7aea90f0f0553b1b71d9e3fc04
BLAKE2b-256 ce5cd5bffd14b9faa7ec3efa87db1f4dbcc5a54a2f53abb8dd1f0972df135fc4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b533ea7b8b8c6649081b20b5b76dd55a3275d7a3813f0b285a74ba8a46824381
MD5 5e4f9d00239ad359ba5ddb7fea0e7ab4
BLAKE2b-256 3999919c2a439306138ce6720e6f8fee78b2e3c5f9f9789366d362321718870b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f2da8e32c857c37ce963357ba9359340b5ca65f4ab1ac04878b551e8bff4b6ee
MD5 60060c9f973d10064554da18180bcd88
BLAKE2b-256 869a3c0b0bd991722ce9d0572772478878467914dfa6acf12be7cb4245c41cd5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5cada8b2ee97dd541c76962015f347ec3161c279b6e75e86357521a56ccdee05
MD5 fac46dcf53d46ac233662d96aa428610
BLAKE2b-256 f76928641d27c6602c30b2e680f9d23ecf26fe8e83b4ed7a17557188edb34e16

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 790a8a5bde5ad0d758d31d1f1c535e36f15dbafab3ae547775a8b87fed0cfc7e
MD5 8e99f4fae8cfce3738f13fa88c8cedcf
BLAKE2b-256 1e3e16241a553316bc30d946c762b0cb3cf5a3bf9b0c7bbf5c8b4fad0ef40b81

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c3984e69ec9055218b318c7f9fe72d791198dfb8017288cc07afeb4d563a4dfc
MD5 28afe572d221dd0b11094a78e20e1bc9
BLAKE2b-256 817c2f9768ff088ae36d3ba21f95592a843a7f738c8973de6f69a7800be6e028

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ca2b971d5e8aa69fa663f04c81f2104c75136e6e1881605ceb40180e7e1799ff
MD5 9946b52ff7c0c895472f7d70a2bc7ea2
BLAKE2b-256 9ea5423bf5140840be0dfa962360ac327219344f26b315bf6978df7a5b46a86a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a246da2f9aeb63341c12f454d9cef4aabbbabda4b94d24cba6af3a8d3f6c277f
MD5 e036e59b6ffacc9cb5618e24445e9ed0
BLAKE2b-256 a914d016d55b4830cdebce8edb435a5e234472edb3762725a8f522ab3654bbe1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 47c08a4b735d0bf8240d6a4c3874ef7025118ba17e71fc61b9037c7e9d69c0d8
MD5 9c69b3b91d64a5aa8a2dce5693b65e98
BLAKE2b-256 df32680ce31220b48e609d63b6f8c6cf7a26d8c116b5472df4ea489b1e3a0d0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e2f78af688a81e7b96784689cc0477100f2532e22e8b1a5c515e5b751d79bee0
MD5 f874fa1ddf9805de77a8772bd2fe51b6
BLAKE2b-256 cbf9a758764a335064acd4bba367b5bb15da753036babb06bdea0afa964d69d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 935684e8a05aab0fce4d22bdecd7596c3063cf126822d035c8dc95eff6653f5c
MD5 16996f4f6568f2b64aafb48f6878e428
BLAKE2b-256 0cdb62111147e61e3d5896c3f7f18a3cb996532a1ee2c6ab362bbe7fd06461bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b240dbe177dfd6d65e9c453e7130fbc5a8612f9a1808d8922a2f37bca57deb0e
MD5 92ce146b7f11b228d0be82b86a63e2ab
BLAKE2b-256 265a8313721c8dc3563104235172004d45f572fb42ed18e032d073974634f9f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp311-cp311-win_arm64.whl.

File metadata

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

File hashes

Hashes for xxtea-4.0.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 87f9f777855bca83c4f689c8c11bf8e597631286d4481f22636665eeadcff0f5
MD5 680f63665744d988b9350301d8a79feb
BLAKE2b-256 c8c2af90454101a1f722b37f4fad03f559a73e1f6d35434f2bebf73b6fd2d861

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp311-cp311-win_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for xxtea-4.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4ea906776a6af7aa611413e3df7ab44e9ced7c79d5a1fb71ef873a002d2a2d31
MD5 9633b61327cd7e4e9b27bf6f2110b626
BLAKE2b-256 6ad987cb5ad4a8ff1f7f76d8d41a64008b297d90010e6171987c233eae36638d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp311-cp311-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: xxtea-4.0.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 12.2 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-4.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d5aae70b52557ea7b465e8dac1e398142094798112530f3981f504a1176d0d6d
MD5 fbe9e667aaf0fbf9dbab24103ec22377
BLAKE2b-256 b5c23cd6ae9544c9d5896aa1f9b671e92a1951897b2c6529b19da48b70c76970

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp311-cp311-win32.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae9a065e7b302e6d0bc180c9c5307e16f93c60041a5cf8a36bafffff7f7209c1
MD5 99f2bc2e8969f23a90ffc5bf582d23c9
BLAKE2b-256 82c6e97162085fd64e2ff90d07c02877e2bc818c393d54665e3abcb2d7bb488f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b5f41dd637421ef5c8e1ca942b5998b7c88f68bc42e2073f8b56749f540b7f9d
MD5 2ffbf74d071c2804cb02674d004e1cc2
BLAKE2b-256 7f45beb7978ebcf190de559411482dcd6d65129d88e5dd16f96b538edfc002cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp311-cp311-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 139b360fbe2e41d0e80bd728ab4f2ab7b33dbd3e1d87d04b8a4c5057563c006a
MD5 d413b8399ed4777878612ab8ee631aff
BLAKE2b-256 6b8ecf4f25be48ba8ee6648e9ea0e3ac89d991a6a14d083ae31f318f2b8e662a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp311-cp311-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ea55a5fc5899e5446cdda3f02dd0b93ac6ecfa623d608a5ef5a37ca05abd7e99
MD5 48a8f14d44ab719ae80777a24e1f5fca
BLAKE2b-256 a8914b9ca3699e2d53ce9b5eac1443426f2147a0dd02a9e5193ed2cddaeeccb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 43e384d8438ebc3d1b55773df455057404925bfef1258e23a8e4684accbc5f29
MD5 fe3fb5529878e24641a2dfcd10b0914d
BLAKE2b-256 6b911c10bc810295e899e3c32b4aa95b8ad4c5f8c1a0b66871ed5587fa2044db

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 863118cf3ee1abd15dd32245adcfd53f619157853bec6803201de273af213ae6
MD5 799aa195cf726dcd0ac5f76b6e1c6be1
BLAKE2b-256 bb23b6c2102f00779258adc0904b40cacbc0a6a38e4dda35f17154b08bf2a723

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e49899a07e833d621cc552e38bbd6552cdf57ae3d6963be3ef0c8171f7e672cb
MD5 7d040fb4c10150fd975ca93484a84430
BLAKE2b-256 b75564b855ac1f9afdf354927c02f6492ec3b911750c0ec14b769b45ee690985

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2ed12f2ec8d920fbae86f8f7576aed7bb4b1732e7bf1ac28d9e46b0b6318c291
MD5 5d637c09b0057acb656c0c59c242da24
BLAKE2b-256 fe044ebdd9a760da8ec8404ecac014c92e1c63ebc1d996bc65700f387d84d086

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b822df5b383ff80129134fcf5605235eda4d1a20296d599e4ba49f2b61b3ce24
MD5 685d88aaa33a53ec8ffe3a1858fb6624
BLAKE2b-256 62ff8d368d0dfcee37781e7ed0a442463e8312760bbdc91f086d7dff1ba02596

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 523305b393b72a9f89bd0abc1e8de9730823064e32eb20a3ead2010034ea6603
MD5 efe2972b25e1b6e2374538084d468bec
BLAKE2b-256 1bd59bd1605318fa3055d18602ef6a72a547659922015819050f45cc2fe2beca

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1b2b8b376d978d7c67237f1dc9a6bd0d0d1c7815baa5c8fd4f2958cdf1ce15d7
MD5 7acdb4f371912e3233b024cfa1df532f
BLAKE2b-256 517266d2a95de0e751d2d4eff864a38992a1f00cf9a3fa432650f871ee46e074

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 777325db9866b400815c1918ac3e815b0a55112ee83ccb19cbf0743a63f3c9c8
MD5 c25f3b38f3808db99e5448520bc13af9
BLAKE2b-256 5f71853bfa1d2d8e71d17037ed684d4610b114e654dd23799a5ff3eea0467931

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 61c6f950deac8e14613c6e0469dde0c299c8900b94905b687cb95bce8b4f8563
MD5 538af3218dab4361c73ad3acd6286e7d
BLAKE2b-256 48ed303feb6f06c18153df110ddbb1cad1f6668e5d6d8122812a50cc8f81f844

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7ef710ae0562cc5aa40c9cd9e3fc8cbbc3561ed7ceba462475732d3315aece82
MD5 7b48052a8db7127dcbef4812dc697ee9
BLAKE2b-256 e85746297cf96aa4baf0e183b5b56c63087776d8d5fc756641c39b7f57d21e6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b33634fe054cd187a2af7210e6c65d98a57f82b08cf8cdf34d70fdfd3da66a2
MD5 2db1e7172e5edaca65a4563c0dd22200
BLAKE2b-256 756f483e2070514aadd793d3d056552ece33cc6eb1c8e0d46912793118de3adb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ece7c066fe04774730e5adea0d5ad08886b883b49842cac99f5f1ba9d3bdeed
MD5 ee24fe36f3ebe21a9decf17de039c629
BLAKE2b-256 eb4f339317b437a0f6455e0cb0511936597836c7d54473698b9f43f7eeeff79b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp310-cp310-win_arm64.whl.

File metadata

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

File hashes

Hashes for xxtea-4.0.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 0c1a69cc1a9c8a25ae79bd308e6b34acb35ea6441d10312596ec7c727fc224d8
MD5 b07eedc737a6fb6f8b194bc167e666b9
BLAKE2b-256 4c82709f3dde56a14b40eec4c2b9139f14f167e7c1b8ac432e454242f2efc817

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp310-cp310-win_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for xxtea-4.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e8baf8eb27a6c83348e5f210f846f02ac32150228b41f49d38e809576c9e1e02
MD5 5f3757d44006c2b867f4748548fc1c0a
BLAKE2b-256 ac13127784981b761b9ca1e9dad5b8a5f58ffc9f527519af41802eccdf4374e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp310-cp310-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for xxtea-4.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 101e7c85d613dfea8b5b7fb2720772c6c989373c8051306804d007cd8731b319
MD5 c8f1a437a9fe2411e57ee3821926b40c
BLAKE2b-256 e163ae56bd8122695f595fedf4b6e06239b08ad3b8324559717166c4c1d41d76

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp310-cp310-win32.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 38847d5729087d9abb46d471de77ec09bc16f1c5382ded8b3903d1f3ff51efa2
MD5 0c6231ffdf63b421c9a5132d8dcba3b6
BLAKE2b-256 e54c09f14f24fcd29ad8180b16e02c5328a24abee0c11aa9b1a1caf512da12fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 546317eaad1901380aa6befe0ac1490bf5b7aa11333c78636b248e521fe1fbf8
MD5 69635443158cd624d34ad8235b5e24f6
BLAKE2b-256 ea3fcb8c38e60e1a9a4e9433d4dc727a41bbd2bc2be3a2edc9e473da9593e36f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp310-cp310-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a3d1c21e252f3c1ace355f152c4fd469a71130378b63dc4fe326b114ac39c769
MD5 cdd4f99337ddd300e120850d9f65392c
BLAKE2b-256 4e7a51de3348921680feb76c10150923049d283d9f3172ef94b0ce1c3da0b759

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp310-cp310-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f6d7b4f7bfd228cc14b5f959d6c9ceafaf4ac0eaf2cdc8cb25d34e2ae74aeea4
MD5 f64966621857d3029f8c50dbc1687fda
BLAKE2b-256 6d6519365053a361b08dfcaa209d0caed27df55af7acab6802fbc0627a92ed1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e530c795580a778b88f102f9d04b69aad3c0696d4863c1e4fc044773864ea0bb
MD5 fe5a79adb43a98a2941463ae787d9ff8
BLAKE2b-256 f8cc979c755ce034ba629092dcd11ee8d31b09c0ac2e0e1052e4878bcdb5399b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eb491b7c03d124ffb38d54263f8bfc266632db22122d614b0e3bf7c3629a277b
MD5 613dc8692856c7f229d09c1577a4a60d
BLAKE2b-256 06b8104605cc651207d9975af99960066b2fc2461ba3e3fa026bdab257bb21c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbdb8fabf010e3109fea6f4d0522df42c7d1a57db0dd0025ce06db4597535f65
MD5 8048aa2b05d9a5c02c55a25f14bad386
BLAKE2b-256 b6fc4beb64d904b0e82644626bcc764409387640fd9d1143e57deed760b4c2bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ffcc94ea23baab300f4348402a29275600116229bb0ce7b7b6f06c279dac6b4b
MD5 8398a8672cf6b31ffaf5bae58148225a
BLAKE2b-256 d255ffda8ee81370f34ae47f77edcaea52fe9f85c379cb009ca4113849a32f85

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b876696bce9e2bee87f175ccfb16e7e3b9aaaab3578d67f78f8545fc32f3e77b
MD5 7cd53e5703f9fa09e55876dbe5862d8c
BLAKE2b-256 a34c94a65f4808e6429101496d47b3a14fb909157099656e87088ccdac1e0392

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d53f62829a5325523e652c3af12a2ba7874b8274dffa72438adece156ab9d3ab
MD5 5b01aef725cceb754b42819850a92d29
BLAKE2b-256 2ac3c3dc0e8255acc02bbe218e39847c9cd4af2f312e580e3eace1436b7ede06

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 05c37613d8e62d43cc75bf41b6d572511faddb34feef4b315cdb97bea6dc0f5c
MD5 256223903eecbde1a4b12f5561cdccd8
BLAKE2b-256 d7f4a97fa844b60c470fab105289e26f219fde6469afdf6edabf61794a56ab88

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c56c56b6e0933df45d36ef6e00790f3d2aacc809fd10dc07f95944a5d7bc33e8
MD5 c1e6bb59f5eaf87a92e88aff0e4a361c
BLAKE2b-256 94af7b55a6ff3edf1cf330e411495618f2beb9f67c2c668d62f6c3acef5a385f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8e2b305e37f397cb006cd621c1e30956a6bf86d12bf7fd78f5fecf6bfbb82d5
MD5 7535596a04ec4048c72a07002c397160
BLAKE2b-256 4e4f1ede3d1b96f200c635b8febd3da3f5db59f9140b132ba28f16cf810e3be9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 637a21ee1b2a0d1376968bfa1ffd5d860ccf4b1559c6699d30d7a666f8c71cf5
MD5 364c2574e2c1820bb7c14e8f00b11c74
BLAKE2b-256 e59fac11bacbd9754b91c8c1b2998d4d407a90f982df83d906f8d9a06176890d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e84bd05d2b9cbed12d6a32a608342940132e5107f477d1e9ee3fb7973ada599c
MD5 6601ddc8d563a72da56e72b2c1ed6848
BLAKE2b-256 13addfcb2358ddd8a1b971eadd96c6142468d9116d16cbfe37a63eb785e57a67

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c85561f2744491058a95857a266dc09ae5878454bb50523aca5805ca0ebeac5
MD5 1135cccfd2052b2c6b3ed067aee89932
BLAKE2b-256 e9c2afa085730f675c1a7a06667a9cdeee65dfcd83b46c69e0c46ebda9c7c05f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp39-cp39-win_arm64.whl.

File metadata

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

File hashes

Hashes for xxtea-4.0.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 93578a306ffaed24b1e8b26ec0dddd7884a401f965606d15ec05337b694dc0fd
MD5 024cf4a3a52933399dde18f24ccb5632
BLAKE2b-256 c342177413a3232778718d2f2e7a4aa395bab8082b32d5481c823b98ccb6b980

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp39-cp39-win_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for xxtea-4.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8e65d690a8b286bb2195c19f586a3bea2b7583034d9d2ea874afd39f97d5ad7a
MD5 f3f36298f137760bfa618d894cd70753
BLAKE2b-256 cbc1719aa67aab157e1f7cd40a79217c96e82e4abd1a1c232f6c053951c5e3d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp39-cp39-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for xxtea-4.0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e5a44c0054933bf2a802f6fae232b0c5a4e0245aba244629ad877bc97a653d54
MD5 302e68e4767e1c7e8e7c91fe2c8e1124
BLAKE2b-256 7d92e3698a9deb7995b89e224852911631d567100e294b05f6c179ad427e2e90

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp39-cp39-win32.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: xxtea-4.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 32.6 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-4.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7c12ef6fe04d724387426318287493f063dbce89d0500f31af3ec605855658b
MD5 e152aef0d9cc697adb019f2b75c25a22
BLAKE2b-256 45b76bc5c2d7ca802efa88cc5013fb6cc0659090484f97d4360429e1a083911d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

  • Download URL: xxtea-4.0.1-cp39-cp39-musllinux_1_2_s390x.whl
  • Upload date:
  • Size: 33.7 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-4.0.1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b203ba63818804214e54ef6d5f2fd139eb6e1b57f1d7bcfd82b13d0a06b8e1b5
MD5 2451b62726f7c05a48e6975f22ffa302
BLAKE2b-256 e7e80f425096bf9cb689569ce0e3537db7170e3d81bced79ef5ae52a9d9add84

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp39-cp39-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 26ab05f89a859c1faa51896ea2f78106404384d48d939235101c8c5ac7620d7b
MD5 ddb2f6447e8d86376e6dd2c1d14fb6ac
BLAKE2b-256 7cedd22967fdec9b0b8b93c6199392079642648f73bf5f7ccacbc601cf4ff659

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp39-cp39-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ede5d85d710b530b4e6c78c35611ea1125462bde7718214301009c5f0b55d617
MD5 b3998e1fd5d1df4486c3b987cf5f2a4a
BLAKE2b-256 7a13ba12bec056e46733f8de6b867cca08f6501f85a15b7f42aba8880ad3d62d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: xxtea-4.0.1-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 32.4 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-4.0.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 09a9eb6979118ed19f2333854ab42ab83b5214206a0ea5cb779143bac866f5be
MD5 a1d060d014be7be9103d3cc08574525b
BLAKE2b-256 06777b9c1f45964c7cc230bafd23c70fa39af0ca54f1044a91cf7626b8f52cd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: xxtea-4.0.1-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 32.7 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-4.0.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4b7833efa5a4b6daeeb7364d1f8cd06a4dd8c73c72e1ec776c85fe5f0a401fbc
MD5 553d48c117069626c88338f2c436325f
BLAKE2b-256 0f30da2bb9a1ad4aa9fd1a1466501b2ccfd1bbdecc3abc80c5adec90189cbbe6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a49784460481168439d882687e24ee9b2871399e810fa7f20c196880626529e1
MD5 f84de9a2e9deaa34ec0197267011721c
BLAKE2b-256 7d88fdd7fe1346ef914c98ec0c102a9a6b5b533bf74eb911cf6e1fae4d884f9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 233bd14c80e12a51802db3655a504701bcead89a7a258eab6f50718fa9d5e8f2
MD5 e03dd205be5079450c238200464d9e4c
BLAKE2b-256 d0727b6f9342459405aafbcb9bcb4d6b491dcaabdd7e0eef5af09b70f55a3c99

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2cd9ad4873e92e7e4bde76cc320f6468f83f0c51d33635bcd3376c5954d309b3
MD5 121ba66804d864eecea136ca0fc1831b
BLAKE2b-256 331a85702fc97f7d2be88dfeb05e3dfb265379f64ff2c72269e8c523059ec09c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b58e631d76e0922bbc4530dd1560b95e5dc7006e26ff3a997caa9a1a424f5cd0
MD5 79c385b85856b816026befa395106153
BLAKE2b-256 b3cfbad529a304c25eff1071126a1dcfa16f0e1656bb520fea1ded97bb43e7d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 869a3fadc788e6b7ceed941b12ffa642620dca6c1c2d36f347cccc25cda72932
MD5 54ea50927b31cbb0fac052a46a79014a
BLAKE2b-256 3c2a4e7eaa6e3376c1f583f27381e8d6283a4ef3a4ab82dea1cf059219052015

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c91e1e346555b3be7f334268557ee8dd06a9aeaead6817e86f4629467b42693f
MD5 b778fa8d0ed674d6fc041d7e627dd1a1
BLAKE2b-256 a6b16a20ea30e9e7fb005be39cf5481d61cbafcfef7e3fcaba6d8ab3f78f2d20

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4856c8f74b59cbbe21ca6e4a666103c0389acdbb0a92ec34758b53c6f87153a1
MD5 14a0e3934a005295b46263b2dd461285
BLAKE2b-256 4716d2df93d5566bd28afb4b1b2ad3848f39d9415c8454b63be1cdaceed5db68

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b90e62ef1ecec1d7ff32172240a1e9f6acf2634c6e47ca26be38cdda33f9d9be
MD5 a6c6334533aac7c08cc371e48db57f89
BLAKE2b-256 6233f083963b6d46b7119580d220e8bdcd796819d0706574d71d4a7411f33ec2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for xxtea-4.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da89459d784e78523bb00e5f280c8f3001a5f25e1bacfffd591a7fee12d5d50a
MD5 f2afe837baa0a161b3aa26d030370e90
BLAKE2b-256 230e85273c8259749bb8e1559df99c30a36f43e999a4cdfe8f42af64b730924f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 af14325a1ca1444cefa8de16ff8801c8b248c2c72dc8f84581465fc438023412
MD5 5b939ea844bfe530e95a38df4464f50a
BLAKE2b-256 c45b68048245784cd2e69c25aadb90d173b9deb82fa1b7f4317cfe4491083d14

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

Supported by

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