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

Uploaded Source

Built Distributions

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

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

xxtea-4.0.0-pp310-pypy310_pp73-win_amd64.whl (13.5 kB view details)

Uploaded PyPyWindows x86-64

xxtea-4.0.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (13.3 kB view details)

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

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

Uploaded PyPymacOS 11.0+ ARM64

xxtea-4.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (10.0 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-4.0.0-pp39-pypy39_pp73-win_amd64.whl (13.5 kB view details)

Uploaded PyPyWindows x86-64

xxtea-4.0.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (13.3 kB view details)

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

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

Uploaded PyPymacOS 11.0+ ARM64

xxtea-4.0.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (10.0 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded Windows x86-64graalpy312

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

Uploaded graalpy312macOS 11.0+ ARM64

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

Uploaded graalpy312macOS 10.13+ x86-64

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

Uploaded Windows x86-64graalpy311

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

Uploaded graalpy311macOS 11.0+ ARM64

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

Uploaded graalpy311macOS 10.9+ x86-64

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

xxtea-4.0.0-cp314-cp314t-win32.whl (12.8 kB view details)

Uploaded CPython 3.14tWindows x86

xxtea-4.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl (34.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxtea-4.0.0-cp314-cp314t-musllinux_1_2_riscv64.whl (33.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxtea-4.0.0-cp314-cp314t-musllinux_1_2_ppc64le.whl (36.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxtea-4.0.0-cp314-cp314t-musllinux_1_2_i686.whl (34.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxtea-4.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl (34.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxtea-4.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl (34.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxtea-4.0.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (33.8 kB view details)

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

xxtea-4.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (35.1 kB view details)

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

xxtea-4.0.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (39.9 kB view details)

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

xxtea-4.0.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (37.7 kB view details)

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

xxtea-4.0.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (41.6 kB view details)

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

xxtea-4.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (35.4 kB view details)

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

xxtea-4.0.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (34.0 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

xxtea-4.0.0-cp314-cp314-musllinux_1_2_x86_64.whl (32.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxtea-4.0.0-cp314-cp314-musllinux_1_2_s390x.whl (33.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxtea-4.0.0-cp314-cp314-musllinux_1_2_riscv64.whl (31.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxtea-4.0.0-cp314-cp314-musllinux_1_2_ppc64le.whl (34.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxtea-4.0.0-cp314-cp314-musllinux_1_2_i686.whl (32.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xxtea-4.0.0-cp314-cp314-musllinux_1_2_armv7l.whl (32.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxtea-4.0.0-cp314-cp314-musllinux_1_2_aarch64.whl (32.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxtea-4.0.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (31.4 kB view details)

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

xxtea-4.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (32.6 kB view details)

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

xxtea-4.0.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (36.8 kB view details)

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

xxtea-4.0.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (35.0 kB view details)

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

xxtea-4.0.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (38.2 kB view details)

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

xxtea-4.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (32.8 kB view details)

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

xxtea-4.0.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (31.5 kB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

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

Uploaded Android API level 24+ x86-64CPython 3.14

xxtea-4.0.0-cp314-cp314-android_24_arm64_v8a.whl (11.2 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

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

Uploaded CPython 3.13tWindows ARM64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

xxtea-4.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl (34.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

xxtea-4.0.0-cp313-cp313t-musllinux_1_2_riscv64.whl (33.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

xxtea-4.0.0-cp313-cp313t-musllinux_1_2_ppc64le.whl (36.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

xxtea-4.0.0-cp313-cp313t-musllinux_1_2_i686.whl (34.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

xxtea-4.0.0-cp313-cp313t-musllinux_1_2_armv7l.whl (34.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

xxtea-4.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl (34.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

xxtea-4.0.0-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (33.7 kB view details)

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

xxtea-4.0.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (35.0 kB view details)

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

xxtea-4.0.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (39.8 kB view details)

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

xxtea-4.0.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (37.6 kB view details)

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

xxtea-4.0.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (41.5 kB view details)

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

xxtea-4.0.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (35.3 kB view details)

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

xxtea-4.0.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (33.8 kB view details)

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

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.13+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

xxtea-4.0.0-cp313-cp313-win32.whl (12.2 kB view details)

Uploaded CPython 3.13Windows x86

xxtea-4.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (32.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxtea-4.0.0-cp313-cp313-musllinux_1_2_s390x.whl (33.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxtea-4.0.0-cp313-cp313-musllinux_1_2_riscv64.whl (31.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxtea-4.0.0-cp313-cp313-musllinux_1_2_ppc64le.whl (34.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxtea-4.0.0-cp313-cp313-musllinux_1_2_i686.whl (31.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxtea-4.0.0-cp313-cp313-musllinux_1_2_armv7l.whl (32.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxtea-4.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (31.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxtea-4.0.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (31.3 kB view details)

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

xxtea-4.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (32.4 kB view details)

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

xxtea-4.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (36.7 kB view details)

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

xxtea-4.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (34.9 kB view details)

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

xxtea-4.0.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (38.1 kB view details)

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

xxtea-4.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (32.7 kB view details)

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

xxtea-4.0.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (31.3 kB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxtea-4.0.0-cp313-cp313-android_21_x86_64.whl (11.3 kB view details)

Uploaded Android API level 21+ x86-64CPython 3.13

xxtea-4.0.0-cp313-cp313-android_21_arm64_v8a.whl (11.2 kB view details)

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

xxtea-4.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (32.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xxtea-4.0.0-cp312-cp312-musllinux_1_2_s390x.whl (33.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxtea-4.0.0-cp312-cp312-musllinux_1_2_riscv64.whl (30.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxtea-4.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl (34.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxtea-4.0.0-cp312-cp312-musllinux_1_2_i686.whl (31.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxtea-4.0.0-cp312-cp312-musllinux_1_2_armv7l.whl (32.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxtea-4.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (31.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxtea-4.0.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (31.2 kB view details)

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

xxtea-4.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (32.4 kB view details)

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

xxtea-4.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (36.6 kB view details)

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

xxtea-4.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (34.8 kB view details)

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

xxtea-4.0.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (38.3 kB view details)

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

xxtea-4.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (32.6 kB view details)

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

xxtea-4.0.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (31.2 kB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

xxtea-4.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (31.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxtea-4.0.0-cp311-cp311-musllinux_1_2_s390x.whl (33.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxtea-4.0.0-cp311-cp311-musllinux_1_2_riscv64.whl (30.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxtea-4.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl (33.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxtea-4.0.0-cp311-cp311-musllinux_1_2_i686.whl (31.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxtea-4.0.0-cp311-cp311-musllinux_1_2_armv7l.whl (32.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxtea-4.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (31.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxtea-4.0.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (31.1 kB view details)

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

xxtea-4.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (32.0 kB view details)

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

xxtea-4.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (36.4 kB view details)

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

xxtea-4.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (34.6 kB view details)

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

xxtea-4.0.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (38.0 kB view details)

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

xxtea-4.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (32.3 kB view details)

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

xxtea-4.0.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (31.2 kB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

xxtea-4.0.0-cp310-cp310-win32.whl (12.3 kB view details)

Uploaded CPython 3.10Windows x86

xxtea-4.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (32.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxtea-4.0.0-cp310-cp310-musllinux_1_2_s390x.whl (34.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxtea-4.0.0-cp310-cp310-musllinux_1_2_riscv64.whl (31.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxtea-4.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl (34.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxtea-4.0.0-cp310-cp310-musllinux_1_2_i686.whl (32.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xxtea-4.0.0-cp310-cp310-musllinux_1_2_armv7l.whl (32.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxtea-4.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (32.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxtea-4.0.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (31.8 kB view details)

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

xxtea-4.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (32.7 kB view details)

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

xxtea-4.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (37.4 kB view details)

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

xxtea-4.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (35.4 kB view details)

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

xxtea-4.0.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (38.6 kB view details)

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

xxtea-4.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (33.0 kB view details)

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

xxtea-4.0.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (31.7 kB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

xxtea-4.0.0-cp310-cp310-macosx_10_9_x86_64.whl (10.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

xxtea-4.0.0-cp39-cp39-win32.whl (12.3 kB view details)

Uploaded CPython 3.9Windows x86

xxtea-4.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (32.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxtea-4.0.0-cp39-cp39-musllinux_1_2_s390x.whl (34.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxtea-4.0.0-cp39-cp39-musllinux_1_2_riscv64.whl (31.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxtea-4.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl (34.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxtea-4.0.0-cp39-cp39-musllinux_1_2_i686.whl (32.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxtea-4.0.0-cp39-cp39-musllinux_1_2_armv7l.whl (32.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxtea-4.0.0-cp39-cp39-musllinux_1_2_aarch64.whl (32.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxtea-4.0.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (31.6 kB view details)

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

xxtea-4.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (32.6 kB view details)

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

xxtea-4.0.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (37.2 kB view details)

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

xxtea-4.0.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (35.2 kB view details)

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

xxtea-4.0.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (38.4 kB view details)

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

xxtea-4.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (32.8 kB view details)

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

xxtea-4.0.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (31.6 kB view details)

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

File metadata

  • Download URL: xxtea-4.0.0.tar.gz
  • Upload date:
  • Size: 14.1 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.0.tar.gz
Algorithm Hash digest
SHA256 34869c4158a3c9af5b29d4be629f8e0633a52a47b006a2dbf63aca58d4935ebd
MD5 7be618b72411412665c730f5aadc47f8
BLAKE2b-256 5c1f33328e59e09add9dc9c0b7e1d92d2bcfa10c1acab351e876c901fe41e1d0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 76183c3ca16ea3fc94285dcf4ae6dd03c5f54443ad761dcb59d39c19c7ba69ce
MD5 eab5471d0d03a25509d7b9b9d5accc55
BLAKE2b-256 d21eb2e0590b1a9d1b252d3a699dabeb685312e15ecd74cd0624860e505a3584

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e110ecdc5b2dc2f587dac40dfcc46fb25459be3b9353f44a7c5c740983f1e6af
MD5 3cbb5f8ac9253c0e1940f5603b018ea8
BLAKE2b-256 26f409ab088b0245db5bd3a003e6c754b3173f64da0851b18a7b166547fa0d32

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3fa2c17c0b40f284eccbcf4608b516644253fbf768c6a384f9d711f632ddcdef
MD5 ca5a6430643790667df4255355d40e5b
BLAKE2b-256 efd46d38b31f914fdb8829a61a12575576b51bc6026737167c0e7c15222a0f81

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5f9f5fdb77e73655cbd56cfc1c73b81e9f681b745d8c14626368f5353e151e45
MD5 e96a77840b060fbf6c95694fd37fce08
BLAKE2b-256 dd9de65847951a4b775df53412d919cb4f0f017c583e05a1722b9983bb9c25f2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2394351f6f426b93ef2f21f769671c75885295d90db288b69c9c01ef4923d30
MD5 30da91d3a3032a0d5f0fba76b1b5e159
BLAKE2b-256 c33a8a987fa265f0a34db4f35f33123e8e9560e641f067fc84e1fe817c693cc6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4be17c4f7f8691ea4a989b053719f389e1c8767b4f15f2bdd2866fe22dce2ea6
MD5 f2e1d8ac5faf61982570ef323e38f79d
BLAKE2b-256 db669a82118eedfa4c635f388091792c7a25983d79321ca3426d7534ff4fcf2b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1e3dba001211e4868973c456946ea2ee0de3d519d06c879345934cc8cba81d80
MD5 8b7ce4f6d709b32cccfdf95738efc4e1
BLAKE2b-256 a783b27723e9f09c836338ba0a104bd101561933dfe78a8c9aaa9a08dcf4e07b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4ebad217e33632d0458b9c3527734707a87f09f6ac3acfbf3f20646f26e7f6b2
MD5 23e68b6db043c07ed56a670badd12746
BLAKE2b-256 43ed80dc864d8a28bb63acbe6f5a02ef71acec2f046865e118cc26e8d0bc77cb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 aeafaa19b9428b8ccfd7cef128d5cb6320c8d979a667d563ddfcacd0b2e8f62b
MD5 a552b3604fd194783cf137bf6dfd32a9
BLAKE2b-256 a8fd272e00025fe8a356242ca78b24568024852b6d256682d6b80cf4e62151f2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 1d5bc9e102869047ea86ffc7214f9ae67756df899a78d24ea96dcdfb60813349
MD5 78c53185e60c7d85cc4187f1bd0e95d1
BLAKE2b-256 bb35501cda998747bcde7450224793f35cae9ca47ed201a65b8588a23c0bce50

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e86280b00511b5732a8c44d1f176385537edd7d9b344c0096da890354613f323
MD5 cd05a8c48d1ac294d049952b8b3d7a85
BLAKE2b-256 b0d29298e303a7600c3ec2765900fcd5dd08e81931fa0593fa94b49f574782d7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 979330b81994d8790a2b866b11aafb635733469ed19d8e36faccc90d864aba06
MD5 499a2d98799d478b9f346196394427b8
BLAKE2b-256 7369f965f4dfa381c977c16a1d9e8dcec2226fa25426547322962afd50086efe

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f4775cea5d2f8c86667bbc496c281ef278cf104e88d70af57ccba7a43fcc25dc
MD5 796100d79dcdb412e697b7feaa0414e6
BLAKE2b-256 e7c4efd982c22e73829ddfb07745a920f9c6e646d276961a5c73f5989063c26e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a3b94fdfd1c73029f1cd94553b9e3806114c18bbdf91c8211e7bba7ffc92623e
MD5 5a5cf3c88d97c29b27ac1a7c7f019658
BLAKE2b-256 012f7622c820215eaecd9266e8727a06ae185fa8035bd8d2a3368a3ded1529d0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 5199a3d53f80ffb10fef254a02b2da0546ee57dc07783bee0f09427c401a3e82
MD5 02abe2c82b8702bdb304cf0d273f9b56
BLAKE2b-256 4df051c9480bf60d8c7bb241978e061d565295cd830874cda3e6666bafbb6b10

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 8e4c6ab5a8c9941b347ac068b170e107fdd8851e85e6cb66bbc96b30419b7d23
MD5 d177199ab295410a1b2319b08e1e25e9
BLAKE2b-256 d7d5fa766206fd6e13f1597f1ab8a8f8ca3119b50b10f1e298e3c7a583dc2d81

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e4179f88ab67dee305e9da366fb8aab4589c55b6f56bc05c397e64647622c93
MD5 d2a33b394a56d3c63febbedf611c7245
BLAKE2b-256 ea88172b252c6d7eed302feb143185f4e049051e0c92bdec28f61ae265ad0d6f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 19e9d07a43f91c145af2e7a0e84a091425d32c87b282318217b9df0bd15bb83f
MD5 6656b4b3f003cdb58f2ce373b61d608e
BLAKE2b-256 0d2de5e3ab0b1dc91201ef60fe9dcf8e0c4af848c2de00582c3a7c289e3b242d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 c88d01f9b15126821f8ad53e5f4a09c4135a0fd1b751229abf3c684e794b7de0
MD5 bc1cbfbb19e3dbc5422d0fb57daa8d49
BLAKE2b-256 7c85b4a39cf0bd45a10a77d4d6fa75fe4afe6d51f94985c5538fa5a9e3b13a93

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 27ddd7340a2ecb1af79fd13e80f0b6cb86d454845e645f9832042ab342942195
MD5 4775f3bd776f208a0968116b9e677a4c
BLAKE2b-256 2963df4a643dfaeb376c2e39cec30a8af3d46b77b751e6399d9e80728f81f06f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 44ba64af2e5e65ec74a0a19ee5a94d56795e5591740c327b1049781e00593992
MD5 ace19a65a4818992202d7b668bcc7106
BLAKE2b-256 72054bb3edd949261a1c783030778ff25001cbe4b7d0c6f20d3c68efa08544ee

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb6923de849c86f19f257d335d67531014fe6ef45faa9a31201dd8fc0fd9c0c0
MD5 77b7ce0c6f2481ce71ff0192c0c320aa
BLAKE2b-256 8ccecf456153821d1d4c9d8c5d9305363be0eac3d38891f941b49ac3c330b821

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 93e7217205ff9fb1c6222a3ea31d90e7eb4385114c1a1391483cad243b0d1a5b
MD5 8b3e26ef186d915f95f367d332ef8582
BLAKE2b-256 529d5496a095a8810159b400ca67fa9a31b7b10b02b7fd6c73a8beb3fd8421b6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-graalpy311-graalpy242_311_native-win_amd64.whl
Algorithm Hash digest
SHA256 e9437a414f4c5d106c616897f4d1b8904bf542f8ea8ed37e704c882d4a028485
MD5 e8e310e064261ee5b585905757c319be
BLAKE2b-256 339ca1c52f46bfbf3cb47321b9b238b7b8ba9848f526e5fc20b6f591a2d0de45

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-graalpy311-graalpy242_311_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 63a4d934cba8eaf59252596c0d0544d78b2bcfdba0c4ebd8e5e3ebe34d600371
MD5 4e159af5ca3aa3323b3cacc47516d793
BLAKE2b-256 b9bbc64c5b6be76ba34ed4272d3ae9b2c0037a47d9801a40ba37568498212313

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-graalpy311-graalpy242_311_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 de2f41c597f23afb1b518fb7ddd07189bf89b7c2ab0ac1d10f5d6f9ced543cb7
MD5 127104f1fb32258ba655b4e9b5f20cdf
BLAKE2b-256 e178f60de77f15592b94a46515ac02dbcd0644e56c460e50fb152cba17376d95

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b9d78386ea4d3f803f0328ff169eb8d3ef4cfab3051e401115e1ac19c5a7a6d
MD5 9f831454f5737e20481c35db21d71dc3
BLAKE2b-256 b9d554641e4dc6590a7001275c1756c0296e6e05ef009936071a0a06df30d6fe

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 42756fbd1e9d402cf66043af2bfaa5ee8ce5579b7a93821e9043b9118b2733a6
MD5 496c1c770516f6bb52c8d17512026f07
BLAKE2b-256 da6acf6f39b201dac24f521bcb7773908fca8c887723efa85ab0660e3d470b19

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-4.0.0-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.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 f2fd8467bfbd7155cdce3f70d3f9add462da7c1dabe128c168944eae890cf85c
MD5 260d962b61bd3eec8fd9233df6820c0c
BLAKE2b-256 e002983023447b9a5952521a0e72f595408f9da764cfe5c7e10ed2c8e6e93d1c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-4.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 90e519f4d8a92c1bb24770a0c50e2abd777363164f548e17cab7e559c0076b95
MD5 ebd5d8af58df3e21fb427766afbbf458
BLAKE2b-256 d7e8d6cb53ce5c31f5052f0b93be02d21a01266c2dd2bea23e95a4c5b85237ad

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-4.0.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 12.8 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.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 88f6a967ef17370884451a01e6a54d759763a392a150f597da0d1a45b57cda6f
MD5 35f63824b3bc39bcc45773a524039327
BLAKE2b-256 47ed8d217383567c610c84ffcdbaa69b2bf7ad226c07741390fdbc0ce9ac0aba

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fbb1b4cc061e53b15cd279a7914534abd6cc515232455b14e4ad817ea5f32804
MD5 dcdf1d46739364229604ac186e96f755
BLAKE2b-256 e7969ebbdbd19a0e79b0f6ec66e10e8d7a3fb06d2b16076f3688de83927303db

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ac7ad3f9bc7c57d8b4658c13d8899ad2c5632667cfed325fa886106bfdec0053
MD5 38ed343d591f90ff7c909997ea6b360e
BLAKE2b-256 c9db66f91780787925ed77d9e07297b7e13d185b9a543d8275ee4d9c35f57aea

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 43c3f10a3a0ada27c313dacafb21963557cbc8512627467a10ee68744a5bd65e
MD5 35d43747cbdc26d14e7541459a0c07fe
BLAKE2b-256 41f429c82dca97d9de6deab5af02fe4c6461e0af50a69fbce7892cd37ce083b5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 fb4b997f70e205d5b50f4103d00ac62691ab22c07853d535c4ec1861370d9f5d
MD5 74eb8470ca3264bcd5382d5c02e257ca
BLAKE2b-256 3fd4e29ca2ddfe2fe063bcac3b573c81445af362df44c870c1bf7fdba9956a55

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 598f859833c00e18860cb6bc62fcf8455c56d155877ae66f7f51355ada61d99a
MD5 c4f1cd52818808513ea17d7691987c7e
BLAKE2b-256 17b39020abc86b15f151ee2d21fb5196719c70bf6f817c9efce8de26a0fe6bb0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eb43bf12b7293434d4b8ae90003bec8caaebde3fac21236039026f3317e56699
MD5 42709261daa70c2920d6644a4ce2b9c5
BLAKE2b-256 7b9b6e87afb35497d4bb80fe446b9a4e38e5b41e567396c36c10c5f059c83156

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e48e88fc1d0c1ea4da35a468fc65f1354ae8b3d7d4847dd65705807c4d36669
MD5 cbf73d9561de976e91be928d9e6f1e29
BLAKE2b-256 889e7b4475c99b3a45f081611d296172feb67f8c8fe8af1c0d263d69cfbf4bf2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8ba17df9a98469f49871d7412f0071c3704050bf8bcd1e8357503c7aeee9f346
MD5 f6b0cebd77c79d8074f36a31f3904690
BLAKE2b-256 1a0865b95c589605ad1ed4a6728e5df7287b443028f89e93a69e394948f6e2ed

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0a6c0288309603ccf0b279f15d19615f3b53903b3f8cc046ee9174b8dc63b7fe
MD5 d943940f80ff5ef96784a39c4b994fb1
BLAKE2b-256 34429dbd9f169905142c883350914740055cea1e959844242313e4b9725e8e50

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4dfee578ee491970c54bf502f3d477664ebc4ed3248f75a1903d67f3fb63776e
MD5 65d88081bebb120f5fd33945679af3cf
BLAKE2b-256 2cbbf163b622aefef904d0c8ed8d6b3275ba10de9d4e56fa6a408209a7a1e345

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8bf63cbd77d0bc3abf4015662b9db0a6116aaf21eec566957d885293a0d4d072
MD5 8c36ec9e16e8e2a396a78967374a2177
BLAKE2b-256 cc4b8cb0e925b6d44689118707595b8ded32747d39de9ef1c53d2c599ff2c1b1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1660f1aa9fd0b39142265d98431a2e2c9200eb5a8c902197895e8bca94d28544
MD5 3969896b9ebf21f442596d662cdfedd8
BLAKE2b-256 4f33321cea78a75656487a0721e87a0f7b03a2813d4c04c2b833ea9f9de8af62

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ee8f014e12c326acc31848ecceff1591d29a5bd06ad3d890cf6cecd7b308ffac
MD5 457ddaedd4b4eeb184634e38485de682
BLAKE2b-256 7a1b543fdab31d2b44205d7ce267b20f0361252effb4da70d409fa355276e200

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 3f10baeb03a87dbb2247d8b2300d95066488deeda344adb6686fca42ecbe2f1c
MD5 ba7d3a3d09bec0b6c6bdc71c1671fc18
BLAKE2b-256 f60d7dbbcdc8cae5fdce185ae777fcd4dd314bf95f22861dc4783ead78418f09

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a34e6913d0b3b8341dd835a25049ef6beedebbb52d8d7e812e4ebd068229b87c
MD5 b896167613315161ca70a2974f258333
BLAKE2b-256 d11cfc14e62c26343e6e6ba575e2ba6119157e32387995e7335c0c949ec4edb6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 460232dd619f996da25a5f663b2c908d950dacbc72ad2fdc25f5b03030d94379
MD5 19f3e12b4b8f5b9f41f377b52b53a3eb
BLAKE2b-256 5f3f430c81323a32db90433b510e93ae5722a20f10d4426c326fc05391b2c99e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-4.0.0-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.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 5c53629faa40e6c13d948fbc6d3a8cfa79abfa874510333e52af92485332a37e
MD5 4b38b3424ef1c74a0be955178469bf0f
BLAKE2b-256 cd19b195141f48412c75c4015a08a71f631372763952eb2622a957d4d09a9363

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-4.0.0-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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4f2c49f878b44d1150b96ca34d0477be2e0cb286a267f20de9447c357b749394
MD5 638e58c14ca3bb432b7a3e06f7f81d54
BLAKE2b-256 66892a0b2bf21ee11e40da86d4e7e1421b74a027df30c22504f692202c3dd89c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-4.0.0-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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 05fe4d441cf0fc8c979c81fb576906b4262a7690d60c848c9f53fa574c3321a0
MD5 cc7f55efa6cccf1be36ea8a13092465b
BLAKE2b-256 22bb94daa2d6eda73d4e4f1ccb1a39a590fad2b585130e6416478202364c54a2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 86201cb37050156986f840de7835eec449f629c693e680069ab7df3e5eeb99e0
MD5 ee575cbcafe9a6a7ddd918dacb757407
BLAKE2b-256 ab41afafe7948affd902ca327b842d34f0adea29d0dea3020bec7554b4ac979a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 26686aa57603f0df9a1d71f4133bcc85052e6bdc2f0c15182b93534b54840b8d
MD5 6329c8963ace12693789a57b545745d9
BLAKE2b-256 5ae61cdcc7517265b272f1f298216ff2a2b2e665d690ca5cd9ef58a832887876

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9d087d415f78f06ee78730de6877b1777d1f6c0520b1b34305429db0ffcacb68
MD5 abf4a26897cb0d4becf57d313f29dd5f
BLAKE2b-256 f681dd14434ce67fb21c1a758ba7bded648fede8d75a64babf0961970f6d6aca

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 eaca0c94b3ed72e713d94b20bc391d7d94689fff17a77df348fced04fc3e500f
MD5 7ce2b246be62992b54f2b378b2b1d70c
BLAKE2b-256 ee52b20f8cf87ed12b082d51f621b4a100cd5c25a3d63348986a94fff8b858ef

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 49c9d8842b18e94d08d86d64aafad0f992a21d80868a0cf388162ae6d15ddc46
MD5 cd539903d395644c4c29e1f049efca30
BLAKE2b-256 97ffffabc882db16a18ba352577459ddca4073e3cedbf33b66fceff23aacb067

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8535bba6568967398e0a1c7bbe3dc1c98afb0cbfd9efb9f363605919d4578bc2
MD5 b32ed35290ad896b2cda36d3c36d3628
BLAKE2b-256 4ae54d12945bde8bea7d65f2b89adba2fa05853b3d493637f3c6e872fc3c0666

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc355c8e36688d52784295c341d482868f186781532ed958212e9dd3f7191305
MD5 e8523399e987d9efab811b93facc9dbf
BLAKE2b-256 ddd64862a344c615602c582daaf9323f2a1dec129647d3c273cc4e1f26ae03a2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 05351aacc140b583f71b3992934725d870d9b3cb6bbcff3951af2e5b0f31f900
MD5 4df39db32e3450b7d86cfabd62728018
BLAKE2b-256 f4a1e2b61e334399ddc4680f918f4c29c400d9525be0e68a6f511bf26de17da8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 56a69c137133933390e72569ec45d062da3728e11b2596bc5893d8089a68d0ca
MD5 0122fb32d9c55e45b6d45374e827df67
BLAKE2b-256 85884eb6d72541e4e7a25acf6c299181300a95069da81e630e4660b3e9060bf6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b2956f2fadff9bfc6b30c9aa784ad8fedf6e69276addc6c38964ab3b77c796ef
MD5 e319399c4020e2cb3c68ce5cd036996a
BLAKE2b-256 3f058e16b5189c3e4111a5570ee08cfa3bca787d4ffc26819ef45c1cbce8f5fb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 25dff74f810340b6c7a3ccb825f2a24741df2b476261718e177cf0e50b0cd684
MD5 57c29b87186cfdbaacc1df886736e2ae
BLAKE2b-256 cd35ae20c1885c3ec92c3a1a268c3159eee626c2de891284335a4fa57c6275c7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d93a9b2567a9c215e3eb111e2eeeedd24f341bdaa434e87dcfae283f7acfa7cf
MD5 dd35a3eaa00ef974cab0a4c9c569a98e
BLAKE2b-256 7a7333b17071543c96b4a076e17ed0c43d628b8393681b7e125c0bcb1abc9a22

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a8ba1465a0fd740a2cacd95e9be9cc2ac7a5382b69489e32fd08fb1b11f9799e
MD5 bce8eabd60b5bc07356da4e7c4d5abca
BLAKE2b-256 70e0415a74975ec3ec38d8fc63f326fedc16934a8a0c80a69f5e6f54df34911b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d72b635b67eebd0377bf6cfce47852f73f2421a743f86190c4f88d364c1ffaec
MD5 beb5db85c6083ccc0d6764624f021374
BLAKE2b-256 db5b638877ede94a632a38b9a6800e384b8562112de7491a812419bfd8bd1bc8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43e5897293fd17ca409a1b125e3923f1ee7564f8a2e2311ffa5e4c4840b93e51
MD5 85552c04942efaa0041e2442048cdf7a
BLAKE2b-256 936a4c617d36e0b2d6a197b4c0f94aa57ca2e6575608f7403abe8a53c6dbf4eb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6649fd4eb28b7709e147597fff261c9bd6f58aeda9bc6014f3d050f94f6bbd00
MD5 2c93235da57840a6f6db609a9cbb2874
BLAKE2b-256 2e24cc7e32dac39c73bd6c7efe1b1d48c14cea6b835dd429f139775977149bfc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 c28cc7a1a1466cfea7bcd5fd7ece860cbf1c0d2d60087c6431923ec1a3a81220
MD5 2d29dafbd34693dd3af46d5576a10fcb
BLAKE2b-256 c39e1b23d28d5a7479a5f9a78b6a57cc811bd9a01c776c714b5d72ce33142076

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 732b35a8471cc28e3cf636bfdb46c0cfa9b34d369d414749e2edd5bb51dc5327
MD5 2c85cc8e04870e214af78cdf88a96490
BLAKE2b-256 8857d5a44ab0a0b07f601f83c8b8389edbc2bf871636d42fd03364179d932832

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 c33c48623c0521074163cbcb1b4d97876ff664a1037a03ef46e91a3104744b1e
MD5 6bcba80be95e04888b487d45d7f90f71
BLAKE2b-256 a72ba3895221bc16cff3d36b12b86260cb48350be16947af34da6f21bf7b8d2b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-4.0.0-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 420a5e1738b0cac01c44bd487a4a689b97124064b6bb36691f184689bc831c95
MD5 c1c6632bdd3fb10334fd30fee235a337
BLAKE2b-256 fe38cd2d0956bee8e546859459d54fa20cc8c154921d1ca2a1a298079a802516

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 0f7d182b0bba6927910056af1eeaea2c4472d2d78b24ece8ee60f69abe582eef
MD5 ff84557ff80ffcc9a17f203645ea1daf
BLAKE2b-256 8599a8fe59822925a8977d7886f8b6c01851a24543e0723e7b238f51d907189d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-4.0.0-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.0-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 0b2cc6547b176de1a49694511f706f1c6076a7bff146a8221ab0a1bd79723397
MD5 207f960b5aa3e3ea8facd33745a0f8c5
BLAKE2b-256 3fd2bcb103641950dc21146e078288136d14b6945f609f04fdd98029da52891e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-4.0.0-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.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 fd3525e198c776a7c0c5e2c89f88cc40a5ea57fb4f956a60f65277ae18987048
MD5 af95865cab47de2f228599d7c0cf1b73
BLAKE2b-256 221aba9e7d0d790acafaa3d7d61b9cb904deab7d921838a6c959cb06322aec20

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-4.0.0-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.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 36a7d59ccd2c898808a172d7086e5ea9a8054cc681b2bb577177529e77ef8bf4
MD5 e2b5a927733d6d81f7a8691082337d88
BLAKE2b-256 859be9c53db47613161076746acb912bcbe399bd84b042d5e2c78f469e8807c7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7cdc44f5769097ba850003021813b51be63c07a1de7bc1138111c548e17a3531
MD5 c111e7910b06817df22ca7816bc11d1a
BLAKE2b-256 8e9a1d4147e1600fe797fa5a8979b90525f429f0d9581dfc4d8f823c1eb510b4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c9ca623e39a6e6c1056fb795db3408fe2172ae2fe2564f367e39068b4cf58dc1
MD5 8341c63cad741a07be00539e6c8d7f41
BLAKE2b-256 4218be65a085aa991242c6b69cc48706a61647f232760c24855100fc3139fe8c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 817e9d96cf58006278dd3ebab86ad5e92608ad4ea013bb3738069d6145613e4d
MD5 0b757f89e55c59cc313fddf57bc4747d
BLAKE2b-256 c85d6d2f453c3eb3c3f84558d3bcaa161408d6a37ae250b75cd52d9ddd73a476

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ba5206d84a4f5a34c39e52c44b7fa0b8ca0edeb7f6095ec1b7c9b7c0d4ee125d
MD5 9215e60294e2e5d9843383e2a0192dd8
BLAKE2b-256 dbe19a19fc63aea022c9d205c91b20f08f0b8bcf9930a94b5004d08531da4c78

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 45241a1456215cc8c88d2d35f3de23913df3c3efc578e3009d3c6f621d1c4aee
MD5 8263965cc2826ca993768fee0562f3d7
BLAKE2b-256 17dd833a9ae6d8c73f0601514a34f9bb46bd8855cf22886e95617fbb345d439a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d9be491b72c6f223782c83576b4382049794621d5da1f6809d928054b2d88883
MD5 b91c079899a4a2b4882e12d8bf408502
BLAKE2b-256 6c32d639ec727c4b3c93a6413c2f2cf9be720bbc239f1996e17f4199a061a7e8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 063479678c55a8bf5d6d6ed374ac8db5b19755c1656d5d9ed46f646866ad46a2
MD5 d65c6f555429fde56fe08878427460c8
BLAKE2b-256 3d2332aee71e689e8e03c5d0cd45687ca2f1310b57400dd7e96953af560642af

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 62b175308f1aca112075c047ecb6d8dfde5f7797b15f2131e83883b6e65e1002
MD5 bcdd6af66d5b3ccfbc2062f14be7310e
BLAKE2b-256 ff61524218b54fbd133ec3f6b991e60a96c6486567ea878658eef8c9e7439d6b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-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.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9bed49b6b076518a0af2dd659e690f975b438ac53e8e9ed872685c17446ea779
MD5 6df390263cfe78da8bcde7d3a897c1d4
BLAKE2b-256 4b53d0f8c690e174b87deeb4464ef800c614205fdc6d1bd35d1e739635469689

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e38d3cef5727d2e3ecbd825b699e69519861f924914e57bdccb3d22661b6b5b5
MD5 3f34b9dcfc17d8f28be927d95de5b643
BLAKE2b-256 0c54f23b3b6076514b3fb63ce84b787114f54bc7df44ec164b42ce7d27042a2c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 16365c0529c29ba6c9cf2f93283843a9fee9dbeeed30767cff8563d49c306fb0
MD5 01b7b89fa7f73df2323382db8a162bf5
BLAKE2b-256 0542ca26f9e030a3c3c7eb9e71d0f329b35d62ddfa1b3c61e4d8cabe27e18054

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1983080d9d18f3d2e0c544da105550d4a7d79d0cbb4fb806095c17fe04025258
MD5 a2fa80bc5116c860f05a0ba643eb6af8
BLAKE2b-256 5654821c82366feb774f5237615847ed24372a550eedd03d3e6668a79f0af907

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 64fe21e8ea5ce5a805c60a355ec232b66e6071949d370ed0e308deafd6ecb035
MD5 e39e61ee88c7be9b97ff36a03412503c
BLAKE2b-256 fdacebf1a198561f9242c150895ebcf46a3d42db111eb645576fa1bf0fc02d38

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f0c48a272ad3f9ca5c88518785221fd13a74b2c08d81d504c65445a3967b42de
MD5 132f837c77094b8db66f80b5e887c30d
BLAKE2b-256 a5fcb0b942a2f76e9c609599f87c74f4e69c495883680f68ad5faf14f0a5455f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f79b0f7c0c8f2859ce83917079ba0a543a3a5aaedcd6a4cee4f560485760452
MD5 31ccabb3d170db941d1f4b3fb17a6b63
BLAKE2b-256 053cc5490452ca94c3ef9f81422df245edbd3bb4f30facb541bf275a10a985c1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a60c8584b5fc41aa5ac03132aef86c315b7d9d8d9a746ae847494ad3f85c149d
MD5 a5859b4c326ebaa88ee3138865cf9923
BLAKE2b-256 1fb038f6adb7efcf5f1b6ba2ca101fce437bcf2df7e6925691c4b8e28a76db4f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-4.0.0-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.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 83db4ce8cae442857869bdb13528d9fa3518f701dd08cd09cc94ecf81610c4e5
MD5 4825fece664249b503e86d124c8a5fbf
BLAKE2b-256 042fb9410daf84cf7eb7c1f29bc4290d3f4bce05377d92c1829e57f85cf504c0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-4.0.0-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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1f1b95b5c9ba6c5bfe7ec03a78aca3c1be75ad1797542703faa360576725ba2c
MD5 d90a5fc6c204f53708d7362737e41177
BLAKE2b-256 f51efde745a494821273a124bf5694c87ff785105ce61025b4775105b3f860e6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-4.0.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 12.2 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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 fadbcf76bc2694dbdd58697a23b06f36d8869b34d3bd2a943d67cafed69f280e
MD5 d002b7df5b6d69cbd9fc30983535c360
BLAKE2b-256 1242955771b2b11409c89137b703143ce1c2a9beb5793d9fd345c14986459502

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 418a5db547794952cd7fcd6f9269def833bf65c756a6a2e06b574917d325818f
MD5 c3ca905e81a69f0e32d29a22cd4829f1
BLAKE2b-256 b3fffb382857a1ded2ad73078fbe42a9bd2ad704d47bf50dc3e13be6e46b0f52

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0f7bdd13b0c8c2133a64dc8aa8deeb10c499f17cd52ebfde7851321d50ba8997
MD5 5f2bd4ea61776bf309058f262e344adb
BLAKE2b-256 3230aff3b6dc66aefff26023a61d05f21354755e2cdaf69e7a5f4551f5485761

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 76f180be1dbd276f45d28ce659b9cb9446f68156bbcaf0d5e63ea153a5557691
MD5 fc586558db5e910bb3adbb729c63e23f
BLAKE2b-256 0e383072a53bd46157545222eb112aa8f77b64007632e9e76086e3dc4851231e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 39198992a69a59e085d96d5f311f9883f49446911b02ad46a551ad1a8d23620d
MD5 9fc24111074405481a8ed0c2ad10abb6
BLAKE2b-256 8f967ceb5b2031f0bcd49712b61900c941b7b6fd38a3d566dc2623f8529cfcd9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8b87224145fd574eb30c63f2200cf3eafd145ee06789b1a75dc51f38268a211a
MD5 46b211076f40fb8d64998ffb22a0d17e
BLAKE2b-256 54fe6429122412abe5093a0e5d2f180fd03c95554fbefc80025b4ed5c7fa68fb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bc1eb24c5157b706f22223ab8cfe385dbf6c4b5143239ac8f85f4ea5658c5136
MD5 451f5af56e81080eb58611a8470af410
BLAKE2b-256 25f9f548eeeee3fbbc504160a304f57adfa485642f48edbe21c889a05c6de6d8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8bd93376faff02379c3bace954f6e003e094abbc4a05a845192cf4751c1569a5
MD5 09e79675ca91358e5670f629c508b6de
BLAKE2b-256 f9e9d02250fd97b41e0b08c3fc165faa5622094492736e7edd36c7b6c96f5bf1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 66a2d26bc6ea9e1233a0e6177b02d2e796c44d75d310ef37d14a17e97dd1ff34
MD5 249fe1dc909ec9d7cce308ebd0ba36a6
BLAKE2b-256 a01f4899db35db51af2f93ecc4de4afd4795eb368f1069c9ba3a804256685f38

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 45b265f4be78372aeee967bce514cf023a6fdeb48e2e64506d17777b2453b844
MD5 dcc1a89363fda39d08a352e0cfd8855b
BLAKE2b-256 0e845a0f1a3578dcab66d1ec66e2bec190ddcfdac01ffa337a254adf827bee33

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3b6264a473415bd74b425565c49c9d0f98e69738080cc629ddc8496ac670bb25
MD5 dfeb205d51dc5d77960524ae770db603
BLAKE2b-256 c828d878231268c03186c8651ae47bc84d540596aeb98bd65ce3f75f4f2f41d9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 eab7c23459a99334db83baf872e02ebfb1153516f26b84012d6f5d1952a4c340
MD5 bc1b0a90d79774bfca0fcafa59230894
BLAKE2b-256 5b5862dd2b4fd52541bb92fbe9417408c8b26f3fa256ec135c2e1e99dfd1aa7b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f83a3ea34ff078dbc7a8169a0c4dbb3d36435fa83e208ee9c8350406c5543459
MD5 01e03215e8dc809b3d22e5d0e0c46df2
BLAKE2b-256 5144fe282ced98544f611fa9219b7f1563ab8e32d1ecde9f05321ced7b8fa59b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6d5efdd07275450f86868e114ab904d1f9bbfb086265e3818a0d815e7ac635bc
MD5 07c7244ddf239843fb6720daee3f9811
BLAKE2b-256 5ba3916faf901112866df13bff612cd347d6284f4c1b644b7697eb582e5f0faa

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9d6f2c017bd024837f60282a85baf66746642bc6229877e91cc81c8d1fc368cf
MD5 6aa3cc04b28f063a3da96f309406654c
BLAKE2b-256 21d24e092450b9ebd88944b551142f733847f2b6b374cb22ac05a1570febd51c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c53430ab2e13eeff517578b754f37c99582ae51ec731e5f57cb34c938f264bc
MD5 22b33b309ff4563f197e8f804cf64b0e
BLAKE2b-256 13052187c48ccfc846861e25ce69dad6ca88425f4a4655e2d9d3c0831f2a15aa

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 af1ef1359f05af7ea80fa1ab1e4f5feab30e3f3e5ea328c091a0ef4192d63b83
MD5 e774d34398165363d9da6b3eb9eb4e32
BLAKE2b-256 b42da97da9600234855fa8c1fdaf7c2fa2f2fae8d105c9004e7aff1f0f19e416

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 06eeca6b3241c3cebc64a6b312dff68b15a0202f4228fc325519a12f8fd8105c
MD5 7cc0af484c635b46f2f5c6966b481c0f
BLAKE2b-256 49593ea7a352f4fe802df9607e66996ecf27cc194d67bf623ceca383d116c8b0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 38bbfbb1680bdaed8749426ea199980ea921b82433df7e960e7c46ade24aeb77
MD5 1cb838ed32e3644a2dae4b265aab796c
BLAKE2b-256 da8668593118c96b392cdd31f20da714d31fe5ae63979e1197ddfc92ca53d513

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 6c213170a745a35e924100f6982d41d105540a4dc18d57868708d5501696b4c6
MD5 2337fc77ec81a97bda2aa35943650aee
BLAKE2b-256 0ef17de9feba5fcdd0ad65e25c0a801a9dee218546939b87452ef330e5dcc81a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-4.0.0-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 2515e28ae566fbb2581500094b880704dc22f3f1ca9fe9b866736dea0fece2de
MD5 656ff69f2e6f9ed33c524b901370b5c9
BLAKE2b-256 6b406202547324cdfc69f614cd6c5ab0004116e5e893b766042a4c9eb22351da

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 9f697d39c66fadb8b77e7e8ff4458b3069bf07f2ca6ffb0541efbbbe8c37c7d0
MD5 fc8bb5b5c698aa64282023f56711c328
BLAKE2b-256 8464f145bd90071e3b46c9f03b412e57e443040dafb9f88e37f4e599c70ea659

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-4.0.0-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.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a8ddc6e836aa1e8cbfa61769bf5c3123bf22ea40cde767ff75e946be90006c13
MD5 d39bfb871783412beb407608ae046076
BLAKE2b-256 8ea0412a33b6985f89cfdfd583635d294f2610389b2e93c09e5ed44eec86d49a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-4.0.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c3d305cb757fb37ac1deb27d1a96d58c4283a81a41836a02a58a1ceaf6e2d7b3
MD5 4e73ae1091489a1cde7f36f64e6f43cf
BLAKE2b-256 bd6b1ecc384d0004cd3b67ca704a632abc83ecf1ba5159b86272650fb5e0883d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-4.0.0-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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c098d7a88b4cbefe8cd2fdc372a8ef8c710c77c85afa1034b8f123f53534f298
MD5 e3f78d03e81a3e6d662983de0e0ecfcd
BLAKE2b-256 d61730ea3614622733b31da792f8124eb957a40231708da5269ff1fd8970bea3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1fdb1d356be89d9e9816b626c0d02005f213ef2f14fc01d3318699871caeb0b8
MD5 d9f4d32f1c247d531aeae9a1a6e8b218
BLAKE2b-256 3641564012feba0c0539255af12b29c6b14e885d8692c0baed0a40eeeaa30e5e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 52f9029c3c7ce7b7783518473bcbb69b5efd55158083def26c2ad67f89f37c6a
MD5 01f4db84a089de2941cc5608a810dbc9
BLAKE2b-256 77d5569829edf3547d818b9fb0c8c0b33b4937aa673367bddcc4183a8c932797

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3335ef9f96ccafb3d75cdb047688ecc7419050b6b6e5f0fd573ab637b364becf
MD5 f9b43e6f2eaeda42140296956d57d486
BLAKE2b-256 51d47cf8887aee7fe22c8aead46a791aa1fa506a6dce9d79bcaee4730ec65a49

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0bf04caeeab38900ac002ea05242a4904953db083e53327002ba5a34b52e3248
MD5 7226eaaaa58fb38561e1bb6e57c51c5b
BLAKE2b-256 c6406b2abb39d7c50dc79209f7e1afc56d105ad8c0be59e7c0996e9ddd326201

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 df44298b9bb5bbc0fb94eaffe741915ea070ffc12c736eecdf67ec7b95d05c97
MD5 6a9fd3ea56b10d47b8f14a505a4c9063
BLAKE2b-256 9b723e507b861bdaa535e44356816492beb0be2aacdcd66b1f252f37b0def3df

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bc0e843731a3ecc13a2043d55b5101b6908173a09a5a4f2e42cbdc6bfa6183cf
MD5 f599a4238741a5f7f8e7cc9af9741c6d
BLAKE2b-256 fba7919b158d4a0cd7f5ae4459c08f707c8e732d537722969f848580544a72f1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f1ec9711c8b1dcd0f98be28f020f22c0c57d291fb8dccb0f12ff3e6428ec3eb7
MD5 de2888856a64c9a3246d1fd52cb930d5
BLAKE2b-256 1eb733cbb631d5c6c7cbdfc10979d29cfaf014e0ba6f324df90d74dc18253913

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7bc4c7af239261805af7390b343082b680bde78b3106eeaf5b2d5ab999c8603f
MD5 c36a33a0e39f8fe9262e57d96673ef5a
BLAKE2b-256 296eb4e22930316ddd81f0d5384322f69e12034aba5301aee161fdaa65440cd7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 08325b53de74080056a7abad2291afcf340e90787d2dd95fe3ead1a70d21cb41
MD5 3918e77aa50da16cf9cbe8ca6d943e4e
BLAKE2b-256 13993ab1d6bc5ee2d7eae434cea05a59efd4c00ada7d77106d1853e23e67a946

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 009ab6c83ac200462a26f5eda47aa62090d817a0fa1b74c8d2c3479bf022d22e
MD5 3b3e08b3bd727f1f420a3dfdc353ff7d
BLAKE2b-256 4ece59a4e882d30ff32c6c452cbf20a25e17d7310e0192eb1baab5e812f4a1fc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d0466b258e4812eab4adde564949cf5eb13018e5d06f9538d13e659f9542437b
MD5 4829f6221a87e96fc3ff4aafedd3bf20
BLAKE2b-256 a6b74ab3aa840226438d4f06dce81ee2be3d1c0805948816327afcf2987efa40

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 bc37ac866b275f39d30905989bc1e669d1ef793898133eff62f4285c74e86332
MD5 b69112fb356a9584f98d93dca655a764
BLAKE2b-256 fd4f8cbf3672571f807d1c651228f180a5e3c7065bb9d584fb92d183814564a3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-4.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d4f8d0aec81cf63a07ac21882a3ed7d0a38f05a190c1fadd09ee991cef44b916
MD5 245aa3df9885704953b252241a2c9410
BLAKE2b-256 415c282e554f1364022cb737317d15d22f36abdd2083a83977811b6d9d3c9829

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7b7c7ba5b553814d512a341264b814ac0a15dc2f5dd208f8d33c5af85e3b762b
MD5 177b4ea4d65f88c46227672c805fb6e9
BLAKE2b-256 3e61ffe4e0c0131053994ffc6b4381a97792c4fb1014c60671ccef56fb668336

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f39062b4dd254262abb3cc543314bc8c165f2412afe83e22d82d416f3b44aeb8
MD5 05044d0c38781e03c3348c8758f63fe3
BLAKE2b-256 fce9a3d2ecf9242ba0f483cd856b0dea557b0439fe302e37f0ce5e28fe84a878

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 91018f0c1ed68375adc01888e20f7e430273bd3b7a64649aaab2525839aa34b6
MD5 0b7e9b541efb42dca938115c32f18907
BLAKE2b-256 fe768e31a2f8d1ebdb076c4ae5d8ec5b1ecb1652df03352915225badcafe7f72

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: xxtea-4.0.0-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.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c95995ccbe054b1af1f6bcb4cd0f80cde8035bf294f8cd87d8743eca22038df3
MD5 6e20cd35658fb513cf0685abe3f2e038
BLAKE2b-256 d40ef8af62c6d7b3de7218e72987dd160184bf2650a1d9e6a1fdb64bf64f78d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp311-cp311-win_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: xxtea-4.0.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c46e6c6f95fb84de0eb74ae5eebad02efe2492e22d32024e2ce3b4f381029154
MD5 357777c75f964c2a51ea02419c0407c7
BLAKE2b-256 1d1123c15b34b2869e18c3cd6e3541f32acd87b4d789a2e595d26e5ec5e99290

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp311-cp311-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: xxtea-4.0.0-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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8b45c69577d7f3b8f1d1eeb5d3009697a19f9a9790d60550d65b2f057d41d048
MD5 55d9f7c00de6b7bb28686659a743dc70
BLAKE2b-256 8fde295c58d7178ebe7ad07689e5e76190b9b619ff78ea92d5b9a1e44f4375b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp311-cp311-win32.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36f62a9130d5bdf68b5b106d0c17adc0c711f52b01eb75c4325e71b012909158
MD5 727ac5c72db700e2691085cbad8dad50
BLAKE2b-256 f4861e43f4a9c39432c3e585b0200fd2e2239023518e86a30dad9903d1469a5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f26a8688c5883d0ae0340f3417517294e4d8cf79a16912b43417aa1b9635b734
MD5 03b7ed1c882e2255b2ecf03ed6e8519f
BLAKE2b-256 cc90d16f94fef5ee2f5a780559f9e4f2fada704fe4494eb45cd9827c0a61d78b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp311-cp311-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 df815820b27a1deacd60931abae1240570b35386f3bffe2b0b211660ab7e3568
MD5 40cad0fbe7e6675cc61c82662ab9009b
BLAKE2b-256 bd74f4d2341cb6b38190a4d153b385832002e85be0174988f39053b1bec3f748

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp311-cp311-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1c3908f6aa701bd61b82f1005b2908851b9ad484693657290211bc65c55c8b33
MD5 042c1432a67851684c326860c1cd8e7a
BLAKE2b-256 5c73620152fa0a57e03b77524c92a94e8ca065d2aa065050f39e5e26a91e30f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8f4c89dab7c37be256b7b83f66a7629f504566449c37a716e76b8f9c6347792c
MD5 df9f0d93bdfb9e1a5afd3321245e8fad
BLAKE2b-256 a8fe127b35a9796e1e081dfd110953f6eba59ca115876e6012727571c6604b9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a9ba60575bd148694a35fc0bdd64a71626fe54499ff3c5069dc034e4d96d1bbf
MD5 695fa0dfedd71c5f102d069aa09cb808
BLAKE2b-256 accb013b4423dcce8362176d9a941675fcfaa4f1d1e1eba1657186de8ed76cf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 877bc6e7ae36acd1469cabd399a01dde485c96e53f3130d512eee8123030eee0
MD5 6ffe445e452a85da055279f81882802e
BLAKE2b-256 9d236cbb0336595465eff19a0d4ee0c81a37dd44c5f4764b042f0a7f5241089e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 9784842c8e8a7faec6448de79d0574c7cdef5902f6e640961cd1902c654a9e58
MD5 e476cd8b82f751b4ca0c450b16947a5a
BLAKE2b-256 a099b3eac3997277304c3d80b7d3393c2c196fd51f5b36ef3fd145505a92cff3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 484276130f92250b96f486586dba324d5da1a834f421327ab4bbe368e281705c
MD5 e9787856091e2d6c715561175b23a26a
BLAKE2b-256 bf30523b670cc3f736e3724aac007394aa3a3f31452f0f10afdb96f8148a6116

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e3f7a9f9c31345297210413c6e2aee3571da01af8544e027ba3bbb21bfff9f7b
MD5 a6b7908914f23df055ccf5cfe51713d8
BLAKE2b-256 ab698e70666e2529f6d2be4c7b8cf1f4670a980f26ab393f7ccab7e12830b289

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 60090b0421ebbff200f9988f90bc514ad49a9102a2bd310119491ece33fb7df8
MD5 59fb8092c6ce89752f3750dfe86ebdaf
BLAKE2b-256 bcc9c1541bdec133d1586e80b05b4ef593acf25821462976c5a232724e7dedf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4cf098fd46384b3dfc4f17ec78b6418e12d0f188135b89499b65e562843339e0
MD5 2560d81fedb6c2f4003a13e4c112157d
BLAKE2b-256 9890827eaedee61581853edef3a06c2d33bebb9715fbe3dab84ca30cd94655e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ab76775a1e52b51d7161754c3a305aceb1cf0dbe29fec041df6879f0e964d6c8
MD5 ded61e71442ce56a5a3fffd3525bbee2
BLAKE2b-256 0566e92b67e21f14c0e529a47ba597290b24b50b4f60cf8fda96a0dc3cbbec39

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ef99451997908a75d9d658437ce16122c786398ca2e4a768775858457160b9ba
MD5 d3dcba18ea38c1b339d684668551c9a5
BLAKE2b-256 9f23c7b9c05da700415be80292d6c6640c00826412b7f7efb22261b59e0a6998

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b228cfab4096c48d8e3164fa7e3fecb8b2e81f43bfb4454e5ced8d6dcd9c344
MD5 62a8f9e8c56d279242d8c4311d33094f
BLAKE2b-256 eb0f515e5b6b903a02234e38cfd9f93c6edc66ed69d148962997de9435e15f6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e9fd53e45649488998d213301796ed574d7d3f3eebe76695ce1cfe9b1f9043d8
MD5 5ffe4d817704952181dbaf8c011011b1
BLAKE2b-256 3839a931c93b4f0eef94a9442277d95c24d1887a76953f74c2546512612dc7c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: xxtea-4.0.0-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.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 58e284b2f73580e2ccb872a3c803633d51906f042373f1fa4b0811b83774b2a9
MD5 383acd32213e91689ff07eb1cecb8b99
BLAKE2b-256 c3e7ba114411936ff5d15a2add3bebd4d60eae6c54239ded3fa6dfd65b4685b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp310-cp310-win_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: xxtea-4.0.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3e75816b1f2267fc6fa84aa350414781b0e0e3627ad8ac7e20a2e66b4590d74b
MD5 37f8d48bedc0498d8b886e1c53f9f28e
BLAKE2b-256 dc4e5ed1be35676afe505a710d509ea914cbc324fd44cc220a1ba949575ff8de

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp310-cp310-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: xxtea-4.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 12.3 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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 21a142d335e476028255acf0d7cde5fe55d2e70dc475366e6852655e355266d7
MD5 85f2b21d1da9dc48eb2f58062ab20ee5
BLAKE2b-256 98b648165cc5ddf1666de69006453870afc5c346aa1306641b4cdc529652198e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp310-cp310-win32.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2cb0212c707ebc88a3449adbbd06c399037a024e5a99165f2141fdbff8f07c3a
MD5 0ab16595e5a74007907aaf41a92bf258
BLAKE2b-256 b2b4fe4d832c26e691a3a87ff72e6aedddf7fa028639cc9f3ead0f85aa88a50f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8d7120e1fff55d9d2530e12e1e301c07808e5ba06b7cf2b0c3890c4b2ac510d2
MD5 fef612c28a755db27856ed1755c79481
BLAKE2b-256 5600160ea682697527f2eeb9f8ba664998a33747e0899564061d9c12c2f0372d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp310-cp310-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ccb4d0d9b307d3b46ec59c7dafd6d4c64cb10c5b76ba460142e8fea731b83d84
MD5 23141fa87db179d2cae114b2123293a4
BLAKE2b-256 4a63f165a514106945059d35a254b081682f64443115725881a1befff20c5ae1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp310-cp310-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ff45374744ec239ac72479ed297e999705ddd4f9ced682bdd4ac859dcfc47c54
MD5 f5e35024d3f20be49c5dedf58864d34d
BLAKE2b-256 a96d8208bcf921f5d985ffc32f4ed40ac5bfc0812f5417eb11820dc0e648a9f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3d0d30bfcf37be1ee12f964d3b5e58cc980231e243bbf45273cfc9c794440961
MD5 640352c50998530470cd3b7c12fd32e4
BLAKE2b-256 4542e1e7c8a1a55a446ba89591feec9dcb172963e6b21fdcd949a427396532cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 62e7daccac3db385c3bee4e18c9aba36fc3fad8e16ef034e9561726da711ba85
MD5 fd554e968c9c8ec6625af5b1193b6f93
BLAKE2b-256 b85c3c64fa7f784c5ab4c8d2e3608c917c63c15674fa5d1ecf108f02e8c4695d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d3f53e3ebf8e4dde79465616a547508a82c45fdb4b5ecddc010fe54a3f479ebd
MD5 18fa3ace486f6b591a689e12af1a907f
BLAKE2b-256 ce993f3b19625255068fda73b7fd1c5a4a717f9fe91690b3104be08e3e4f3b1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 42dbf86ef1488676eda995a358e0abb1b0189edd9f6c065cd5032b59d021e9c8
MD5 cb3b643e25ce0d8316be3952f4ad3272
BLAKE2b-256 78f96fe8d17c8509c6f01ed5b3c3424f55264f90b5adb8319f6aa55003ac402f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4424b9b5dcfc83fe388d119486c3b559dac486dc0adecc4fbc5571d803585dd9
MD5 bab1ee2fdea5dd0fba1a245d6413f1bc
BLAKE2b-256 a06554403663891e9bfa161c7492f956feabf105518428830460be939e036ff1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6a74f65bc0e976c9576c9554afe925ac49bd39c9440fb09f9576f04ee41cd77c
MD5 4a7fb6946a69a5000d5293c8eab1ee3d
BLAKE2b-256 dc37bcb3bf0ed63d8f45bb493c5a7498ad5146cc8f9903485e91ee14ddcc5ad3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 049e1971499d0f759a157933955528eaf37be2963a74b5de12dc96187addb6f7
MD5 14647e2a20dd93281891e5e0b09bfd5a
BLAKE2b-256 53bc49d4356800e476824f384b98d284fd3e4f06139b9309d0e326e45cb90c69

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d9e039839ec64bde7ae26e54553b77fdfbbea40a712a9d62bac2edf51083035c
MD5 0d4941d0f1cbd53e02834d431c5dbd65
BLAKE2b-256 8169e0cba68cb9d396c25dc26a3f1cddec5df9d4a7ebcf7a7d84ecec2ee34848

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8241734a56ada68db0e9fa5f571cea396d7730cfe345de35aafb9b0fee1afdb9
MD5 c4fe16b941b9f93de7059348c7191683
BLAKE2b-256 3dfd5416fe5c4eca5a981dd44d875a490f33fb38957a009067432b3137d49f1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 432f6b633429b27d780335ac3a6ad517f9ab7012e10731921fbde54a8daa31fc
MD5 dadbc01c19d1730d5a86f72fe3c967fa
BLAKE2b-256 c39bbe8cbef64608893cf0b2dc2d44d0e14908a0bc000d9067e7113832943c07

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a6714d300cd3ba30fd73996d06ed8c0ad77d9bca89d2f78f089d6e171b77c76
MD5 38841c975a5ffec00b87c25ae65c063d
BLAKE2b-256 75f5519ac2ed8141efca025b15263a27ebbfbee7f5b5475de6d8719e2ca37dab

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ce9ca2a450e613cd1c1447c9f019dee5edf04766b0b68716d2f5aebf503fa95
MD5 0f92a86fecd6cb383d65949a7fe26fa7
BLAKE2b-256 9e87247e0b1522998287bc86b7eb9fcdca921fd5b1719c3ca3a0fa228c146225

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: xxtea-4.0.0-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.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 a6c70217500182471ba34518f06ea803f7115562f57ae3389ad95a4cdd50a295
MD5 c223a9d41855a436611f3d3ab5697891
BLAKE2b-256 9438e18da608ff8c458343f2e2bf46650dd33609a05ed3860a1b03c2c6506154

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp39-cp39-win_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: xxtea-4.0.0-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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 84972f67a349a6fb048525dd0c7bd87027a71e3cd315131024d689e145a2db27
MD5 3ce9c96b7f168a21d87c9b51ced99fae
BLAKE2b-256 3af51abae9d6d1ac8bb0ca228b506360ce8c2daba015107475a669d716b2363e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp39-cp39-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: xxtea-4.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 12.3 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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 aa5e94e51f4af37911bec0aac7202954a849eec5d698894e044aad3c78f17ae2
MD5 1aa0065b2ded6ae7510a57c4386e5ff0
BLAKE2b-256 41af5d2bf12b3dc3d2065dc777480deb809c3ac2bfe83eaad355482da3602a37

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp39-cp39-win32.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: xxtea-4.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 32.4 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.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64e3e045987cab49862e772090538524eada6d2f58e9a72ff52006d63907227d
MD5 c2609a37e0ed901de56011d308fac261
BLAKE2b-256 9b0e8ca0fded9e50a9716636b8725d0958482266cd8dd8a72730d9bcf6cd102d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

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

File hashes

Hashes for xxtea-4.0.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c3b52b020b97aae5d584993f2323992ce2c87f48467fe7975828eac53172c9df
MD5 4f1e7430d39e0d0a6f2d05b4464b6043
BLAKE2b-256 863cce9fe3562b96600ce9787f26e84926c15ea3c7cf45f2f9456547fa7d6c9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp39-cp39-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e0d1509811d1d741084a47102a16fa05ea6c87fea1941432d03be4482fe057ed
MD5 68bf0953924493da799600addef28c27
BLAKE2b-256 11bfd596efeeec2cca4b61886fb5883fd963a0ca45de4f85e04943210b2c9b76

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp39-cp39-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e373b16c99521058cbea11b8efc69ee014afcdbf9f3c6bbd79707d917d65d70f
MD5 6996fa60fecc27e8f101b1bc96de43d9
BLAKE2b-256 9d576999baa397ad162eaacee5d133085bdb706544096a3578e5099d2d895714

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: xxtea-4.0.0-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 32.1 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.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f179785cab56e9a6efb536914260ef893174c555b7368a483e42f8de2ed958ba
MD5 b23c3bf7c2a009827a8225f763e87e9e
BLAKE2b-256 ea4d5a49c202884d5277f65f03012306e03fdea72d860ed78ac1990ca6eb2e30

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: xxtea-4.0.0-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 32.5 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.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 24f60595678eb3a064b1ecb195eddddab4d39f72507652dda582c074e200dab0
MD5 798a9d13311227d72a5ba1a75092838f
BLAKE2b-256 a03c32012d38f8f5f226ddc0076a0bae8569447e28abaa0190e19388cd88040f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aad1d86d2bff455f2caf6bbda1d88500ce48f6ca74d6727b62bfc46ef2f37abf
MD5 5a8074b9769973357ec0a634cffa3606
BLAKE2b-256 e9bafba4313f5e9aac29d678aa2498fd91ece3026a6ad7641f7300e869cae520

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7ed709c7ebae48d1295451dcbe4af58cd0a687c05e6d70fa8fe54b3606767377
MD5 839e169dfd7937a1cd3511e0b6968f19
BLAKE2b-256 a4f0322339b0d4d6a5197a4e0961e3d1d6a74378397f44c55925723e27277020

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d63ce66b050bb28fca2a4d3f25d305ed3ed00c00f7dc9f8cdc429126bf59d248
MD5 ff190fcb9176b0163cb3dfdf0060f296
BLAKE2b-256 d18ceeb422a98ee32c1574dec1902eeb22843c6567dd4ca622d29ef766ce8886

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f4f48857f26ac80b2106a979adca410c2c6a2e302858fb73497eb5a1f4c54ab8
MD5 a449a462728a305c319f1cd5cd04faa6
BLAKE2b-256 e591642925d6c0982df8d1f6ef5264db5f541b073b379eadd87f4ae3672300fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ad23c9f5009be84f575e81e1287a3ccb85b65bfc0d46df311116b33484c3102e
MD5 d39e9337ebbe03a5af80079bc4ac9e94
BLAKE2b-256 f2cc46c8b78367a365aca3c4ec43b18be8a1c844f6b066ac75a1f1fba0ceb604

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e64e4ba33b603ff95788fca2be3c5d4175df36bef39de6f7cfa20f828cce7040
MD5 0903cebcef2e225d3d520602112fd096
BLAKE2b-256 fe4f1be365088af7dd5443744b8c7d689ada8c8082869f50eb4d65a11a955ea7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 271243bb0fde78e4aea21db02535a8c3169e52174c0fcf3fa49394f827fab8ea
MD5 403ed4376dd1e66099269a41cb02a105
BLAKE2b-256 4fbdb40642edd0a5ccd761b46ce0087c4586f157515e4658a64dbde966a2c460

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 533bc26734f4b89aea116f90e484f5f1f4f958744df734622f7d48ba7869e827
MD5 05746a4ff33d830ae8024cd518c7f5bd
BLAKE2b-256 22a635d1384b1441e40370518c74e4e813e65d29f30faf9338f3703c4c75bb06

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: xxtea-4.0.0-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.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4825e2f1463d7a97b853716adfe2de40050dc0b55899e0900a8c2411e5f7bf53
MD5 fc4e2d7d3368089fdb000891bc1adebf
BLAKE2b-256 5042894b8ffc4b0462bab5c11f7e4788d4ab2bca96040ddd9b8e308b934c1698

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-4.0.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-4.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9a170c8a66001a060d2aeb41331649497a6a084d3905ecee70a005a94f746d8b
MD5 b4d6a341eca053df2048508845fcc40f
BLAKE2b-256 e9870fdb5fd63ac4c97f9ec662aa9af617385e30a5295e669d84a3a1d27ee423

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

Supported by

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