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.0b1.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.0b1-pp311-pypy311_pp73-win_amd64.whl (13.5 kB view details)

Uploaded PyPyWindows x86-64

xxtea-4.0.0b1-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.0b1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (13.0 kB view details)

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

xxtea-4.0.0b1-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (12.2 kB view details)

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

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

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

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

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

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

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

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded Windows x86-64graalpy312

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

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

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

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

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

Uploaded graalpy312macOS 11.0+ ARM64

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

Uploaded graalpy312macOS 10.13+ x86-64

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

Uploaded Windows x86-64graalpy311

xxtea-4.0.0b1-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.0b1-graalpy311-graalpy242_311_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (11.7 kB view details)

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

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

Uploaded graalpy311macOS 11.0+ ARM64

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

Uploaded graalpy311macOS 10.9+ x86-64

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

xxtea-4.0.0b1-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.0b1-cp314-cp314t-musllinux_1_2_s390x.whl (36.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

xxtea-4.0.0b1-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.0b1-cp314-cp314-musllinux_1_2_s390x.whl (33.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

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

xxtea-4.0.0b1-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.0b1-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.0b1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (35.1 kB view details)

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

xxtea-4.0.0b1-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.0b1-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.0b1-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.0b1-cp314-cp314-macosx_11_0_arm64.whl (10.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

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

Uploaded Android API level 24+ x86-64CPython 3.14

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

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

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

Uploaded CPython 3.13tWindows ARM64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

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

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.13+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

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

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

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

xxtea-4.0.0b1-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.0b1-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.0b1-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.0b1-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.0b1-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.0b1-cp313-cp313-macosx_11_0_arm64.whl (10.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

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

Uploaded Android API level 21+ x86-64CPython 3.13

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

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

xxtea-4.0.0b1-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.0b1-cp312-cp312-musllinux_1_2_s390x.whl (33.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxtea-4.0.0b1-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.0b1-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.0b1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (36.7 kB view details)

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

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

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

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

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

xxtea-4.0.0b1-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.0b1-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.0b1-cp312-cp312-macosx_11_0_arm64.whl (10.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxtea-4.0.0b1-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.0b1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (32.1 kB view details)

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

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

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

xxtea-4.0.0b1-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.0b1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (38.1 kB view details)

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

xxtea-4.0.0b1-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.0b1-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.0b1-cp311-cp311-macosx_11_0_arm64.whl (10.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

xxtea-4.0.0b1-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.0b1-cp310-cp310-musllinux_1_2_s390x.whl (34.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxtea-4.0.0b1-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.0b1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (32.8 kB view details)

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

xxtea-4.0.0b1-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.0b1-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.0b1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (38.7 kB view details)

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

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

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

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

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxtea-4.0.0b1-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.0b1-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.0b1-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.0b1-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.0b1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (38.5 kB view details)

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

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

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file xxtea-4.0.0b1.tar.gz.

File metadata

  • Download URL: xxtea-4.0.0b1.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.0b1.tar.gz
Algorithm Hash digest
SHA256 5cf1a09a0b93eef597ae20bc5241111ada429b6b628760b825e69098f81d7970
MD5 53b8ead4cd3b09910c5c218006a94fd0
BLAKE2b-256 c4de0291d1c0a921d95ace664c957a2fc53e2b9af91a195e6d10c034e562c557

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 930a878d016b3732ac45ce63c0cc8016245fe76b8d3c3204b6e0755efe374aea
MD5 3e13e6c7b648987c3353c8c6268940a6
BLAKE2b-256 73fe868bc22b3f7113d94f6057024a5048784d12ee749d4fb43b4b8915bc2fba

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0b1-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.0b1-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.0b1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 885acef9d94453947a6a482385c1e11bf7548c3cfadeacb848cf811630a0c210
MD5 995ebaded750385a5e6462da13df8ea5
BLAKE2b-256 4c8c3ce0a01fb8acea8143facf4fa299766e2b2d3940e11539e627f4b71fcb36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 25b1dc9a1c14e25c900ea20ddd1bee8267e331c171ac93907620fb465e682941
MD5 3ae2dfb56a9e6f3de56ef2654c5dd849
BLAKE2b-256 8f0f2beb65dd4f8f487615244d1cca5cc75ddabab9629afaf5433fa4956c9298

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f21715a3c97b910e1c12cb9915b079ec8e6e4576db21a580630d53636210393f
MD5 679e2a0f8836aeed61d7f40655d314b9
BLAKE2b-256 7727dd5c7e9e257e7573b5f3bb561859c4dee572ffe4e790d50979d29a888406

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae3a226022a2dcd23234410c730012268236957a3f544f67200c392b0d2af469
MD5 d5179d0c3b6471c877cb89cd5c0a61a9
BLAKE2b-256 6cae8ad0e7fddd700712a9d9bb4200d657f42b3b32c05af87d826c84e7f93ded

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 43f2ec93ad2f35413793cb6f42987c190ecac30ce851b04cb5cfc26da65c0e55
MD5 27cbf1d4b745fc90e848f8784805fd68
BLAKE2b-256 58bd64b3b1cf736e5b29bc6a814841e7a1ddaa163b679281ee1088c02470c90a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2433225903bfd9a00e69deafda60ff04179258dc096d07a06dd6ea1eed4a19ca
MD5 ad29bed6b281efd7ccb7d27b403629a0
BLAKE2b-256 f1d6b884d874194f74e03f423157cbd03732987956be4471fce81858b9b8dd07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f314b72a493453267b2d0281f39178735cfa0c9ff29e5a6656e99d9b964c929c
MD5 05ea6f7c165b9b836f724ff944b02be8
BLAKE2b-256 274e590dade26a0b1199f491c286d58370fe9f05b59c6d200da602ea99f3beda

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0b1-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.0b1-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.0b1-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 816efc047f0a80dbe23c6dc0ae2a6447058c4abbc160334acf56bc96d135b40f
MD5 26e6a3ce7026739c1c5dc31e3d43c4f5
BLAKE2b-256 896f0ca0d9935e1442aca63054682751833f71ab5145f67aabb668877e6f1b50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 dbbbb163063dd18c787da807bcb984ec7f39282ac9adadc364111fa9aaf44f46
MD5 7d0a7d7aa31849fb9ec8b3153c94e77a
BLAKE2b-256 d9a650e9469a3aa081702c86764e3f85da1d3a5a23e3df7f0f1bc1968db9d22c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ecdd18ffbe4cd92140f1661462f0e5f842954891c7b74953219dd7c5763456d
MD5 497936dceb63346a2d7e0b785d22f5ff
BLAKE2b-256 09ae9e139532577560e585ef0f66a45b8dd00011ce56a39acf3a7087af5d593d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 757a244a5812bf64c969a56db77dd5de27ed28346a4424ccf6f6e97e491c37f2
MD5 1e2d960a23d3812eab56a89864df4d37
BLAKE2b-256 de0f764b5047bdc28d8a1431d36d39fe2d540ad3aabbf3462e99ccba53d60ab7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2bd2d33f69641f96e962055458b6bf87933a8e19963b953d3aabab47b8cbfa5e
MD5 18a8b312c728136140721469c4a0c018
BLAKE2b-256 e3694197ca4ccc0ad75d2943bf896ca3d55b1342b3587baef908f03bdede8694

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 297416a4958c77b5cb221ded1fb20628e360d1d90f3367d6a6d03984a28984f0
MD5 b0047c7d67e246b7e643440db1005d41
BLAKE2b-256 9bcca2a6fae93447be6ff084daadc036f4787484abaa524c2b5a382f11850c71

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0b1-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.0b1-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.0b1-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2e35974efe616bca253dc38c9f31fe5d3ceb9bfa4283985a674f1e4eebb9ecba
MD5 bb3c413130ed7f38fa137bd0c62f3548
BLAKE2b-256 1651e9f37dc4c2781e982afd5aa400159f07dceba42e9925624b57212de63686

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 57a81505c2348a7f3b87a3086caf36c67b6d0819b63cb77bbd2d39125b529b17
MD5 d2c02e1f54d12d63d60de89373549d7f
BLAKE2b-256 aa69712f396553f16a5c8b3bf509a34f822c0e9b8314fa917bdff4e54a80bde2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73c2f438a247b12dd0e9ff117fcc91d17f738d05eafd25656277933c503c1a95
MD5 e7eca4302617a15d2fa7cd615ce7a128
BLAKE2b-256 e25994e73e31a362bf5e5813494b62e0c431622bc51fd84855c1ba703374585e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 25e6d9819e7640222f7fdaf99d6d088b5e872c5b279ba6725ef8df5018026ef8
MD5 ba365507978c77a8801cb4d1307ec36c
BLAKE2b-256 7e17d0a8369d590e545df3be7c2ff7e7f7e1e52a3c15a4a2ff9da7ddf914ab4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 9bb81c6e2d64e19d047831773869d26da1e2f388ada07b171ec97d037ded448e
MD5 e47b5f6751a6cbafb0b417b125bdfadc
BLAKE2b-256 080dae1389015e52734f13aec7c2403d83699429fa775a95a9c8cb2880f2376d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f532e4378976cee131604c6c382b6e9909c74b4061c8ae2d0bb19ef6bb0ccbd9
MD5 f9fbec7aaaaa04156897dde31a84ab2e
BLAKE2b-256 bf5a5b3455f6364f7cbe69010ec6261778fc4045dc2b15e101f90ec6eb9fb12e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0b1-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.0b1-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.0b1-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ad9f036168ee038e5a35a67372ba80f0585c9250ad2bfcece6ecd80aa3efb854
MD5 649681ff8518ab61d9768a4cced5c561
BLAKE2b-256 df5d364fefe5a7c7ce142e8f6415c418f4c782305cc10c246180bf52795ce114

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2ff3e3b9e1ccc3cd67c494955f80f2f19199de4b0b739364306cafb65553ec4
MD5 bd722355fce3b8b3c8cdfab15264f54d
BLAKE2b-256 7bcd6bae31a01dfc1558db9d8a73c09054fbacaff90409788fa97faf5a922d63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9686bd58fc836764d2132352068cf89367a737c2a77beae4526399cdbcfe34ed
MD5 d21709da33cf6b8c51e0268d28979fc3
BLAKE2b-256 bf0f47990971d6bd5c8239656582330a8bc8710b1cc98fd10f4aedbbf8787bd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-graalpy311-graalpy242_311_native-win_amd64.whl
Algorithm Hash digest
SHA256 823eb90c7b0b6638ee8857e89e7d7aed8d06fa52b65e784207b1c8aff2ca8da6
MD5 92f56e22e9927392b2648eaa33398a4f
BLAKE2b-256 161be9fb73f94037396caa0fe308e23cd91a9a8b5388cf689d92b2ab0fc43215

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-graalpy311-graalpy242_311_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8ca4b466070aa9a8898e6bcbd07f52d87d86044d0beff4fbdfaed4096dbd1405
MD5 83f4a4d6a104bb5f225835ee22bd2f61
BLAKE2b-256 80c7be08fb1af3bab5081d8fd82dfa51ba7f61d4f4c765f3d8503d0df16e1b1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0b1-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.0b1-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.0b1-graalpy311-graalpy242_311_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 9a02cf028e6a2fc88e855cfd81bcaf8ac16f7c49ecac43f89aa97c55a63eaa98
MD5 76a2ac93fcfea73aae83198b2ca923c2
BLAKE2b-256 6c1e82a41c573f1cf2a820db2dbd8c7e1b95e1bdcea3a3d11650d6602a0ea0ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02e7bf300e10abab850832d52a1c5127b24842d0a11d4ca2181cc5bfeda95d48
MD5 3c4bae6049e7f94d9052e96dc213c93f
BLAKE2b-256 da0a8093f1861445c8b265c269caba06cb0ab1e0f29c229a384685ffbcf9dd94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e21b06c9bb2a1e6be4d421cfbd265740b9ecc02bbd804e58c67cbd69790fcc91
MD5 8ba94d79df1eb2ead3e51fb8feef9ca0
BLAKE2b-256 ada8ee1d2192306dec1b06451c9eff87f23d198def90614af30e108d206fc506

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 3d86d4d505a07127b1537a656480553142bbf7637f500617e04e1d4f1d7c2fd7
MD5 97e07cfb52f86007d624d974ee03d2bc
BLAKE2b-256 d9ffe8000ea6d60cedecda996e643d7fb6abadf5c2291ab72710c326b49ddaec

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 bc29c2ffc80202532ead25118aadaf557358281ab9c967042bb54403604ca684
MD5 a83d320147d646151749f7b0e9053552
BLAKE2b-256 3682a909cb88a4d21a5d011433b5e944055805ab1bd9e3ad6b325ead9e77c7a5

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 1a27abfb04f347abe1c7c65525eb0c3bf8d4531183b1cb0ffb03b1e82c694d5c
MD5 028f3e59b430526d01fae3609d392835
BLAKE2b-256 1d32e5dd12407a962a69b7bee45c18e1bd4995fef79e06c14a6e3a023b215dd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d3cd5a7f38462efd386862169e24c7a62e3a9a7a7b4137c166984d56f5a8750
MD5 ec8605d548c680f4f271d7935cd5e899
BLAKE2b-256 11ab1d8d0c7d2e5a882a1bc2f4fe8832cf3c29c93aae0ea716d619ca0df09ef8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1544b1f2a766e188dbde78bbc56d6ff65c061d55e62c42fb35ef6bbc4f493d66
MD5 2f1ad13dd227124caab525c2e81e8df4
BLAKE2b-256 5810210d0a22429365d6b364eab2537babe14b6088bdc4e7a0b2d7c5cfcdc391

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1a067426d0c794f9f4816d281561d130694a909c5bec62f6a07f0c7c0d9d9234
MD5 0bc3c0fc81d83d432936a9b022574d9a
BLAKE2b-256 51c0367136699f11db154578743da3dc1c505cb095f8332229c77d8fc5df36d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6927de821c8705f222daf2efaaadf3e1c67b6fc0d2a7191143e4e1747758632e
MD5 dab2c35833c59fe7604af190e770f9df
BLAKE2b-256 03bd71ce7f39028b7eedc8f0a00c8099864be40bf9770fb524d25fb61e3c3a27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6501c93e8dea4547818c10042f7ad07b4759d8a78f1d8ddee0478e0cbd9125a2
MD5 df82f9fedbbd9d79645938b5ccb5ae7b
BLAKE2b-256 9eed67fc75ac066f7e354b50138647802ced32ebfbdfea46919d3a2b9efb6376

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3c05496ff82ae998744b869f6cbee7191cacc9593ee30dbd8d66d88a24694485
MD5 e904b77e8db34139bc0b2942f6c405af
BLAKE2b-256 25d8386ee94428cbbfb1c84d7d7dac828a375fc27b397e29938943c785bf04fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06a60a46edea16dcca8ebcd7ea200f7d74998915b2b954a2c5c8433790aaf537
MD5 83e44d41dfd9c7236e66c972186ee695
BLAKE2b-256 0e2dde689a98db170b9d51d38712f64fe5ab1109c8480fdce55275f179615aa2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0e98351a69602d75ba9fa419cf8281305dde1bbbbdb3e0579d7d35c59f45d536
MD5 18a32589f10212369ac26f2dbd7cb933
BLAKE2b-256 5d3b40482baa321de2ef5672eea8f5141ec16324398d470baac17d679c46f031

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0b1-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.0b1-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.0b1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c4c9bbbd87181dbb19677463ba4b90a5e1a7fea396b2a533fa89b021df5178d
MD5 09d3a72f3c5fd0d41fa7e383c8df0807
BLAKE2b-256 da93e4070954c45d0ba7815e5768d70d74aea1357ea9f327be4da028915c8608

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6aa2bf0fd86c7f5adeb3c55e0d30ae3ec63f15412f3ed86acf132c273167475a
MD5 8f816907230d8fc9d0a2d18b5a763952
BLAKE2b-256 1ef1c499f099ac82fe25c7f054cf12c0292ec4bf5dceea99c93400623f70f5f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 09494e207dd8b7ecbd1d2588a902fbb18fd75eeadf7724e521f3c6ccad49782e
MD5 2a1cf127be1513991f691cfdf0a4e120
BLAKE2b-256 65526a8342153749a4acb509be2259ad975d4b9c058d00dc27b22db9219ef9a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 69fe41930275e288b23eadc471abfe6ea3cd6d80be3e0ae2938460eebdab4949
MD5 e4404ba00ea2531dd5e109deced0aa0a
BLAKE2b-256 cf2304d5c06a9e9cc9dd3b980a78d79a2df8a75f09ef0cfcf2f437094d7a7408

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 980ea2d0ef62b1ccbb3a8836a16a5a821f5cbdabfce57cef3242c6770561fbf7
MD5 71cf09b172ab50f2046982a7be6c821a
BLAKE2b-256 83235839ec4e76ec21776f72d326d6aefd9aaeedeedc3b7395c6a2844da53858

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 bafb52b2db7b0a767c500861e5a377e06eb1938f25334fb83a8b81400cf92b88
MD5 5c2572aec4d8254161c3f0126b738a4e
BLAKE2b-256 5ac007546e0237940f33089904bffa54845fa5c3df8211ef82317dd07332b838

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09ec0c38e8726398d80aa8d8c26d0239cbdfe066fdcd020d19c60bf7338fca22
MD5 ca58edff26cdedd1431e42ff2ef9e93d
BLAKE2b-256 eefa968a5e90c817da237ea839d9efa3a17fbef370ea6a1d05954f9795668ed9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cab62e3370c52b9f687d75cc12aa68c979ac35e4498b06a6f8f00751237f6549
MD5 b5cf4b46fca089ef60238ec51ee6a9a6
BLAKE2b-256 132195aa8a8485ccd44ed0439c84ba0b9e056384017c922280c19c6e72972130

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.0b1-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.0b1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e18d3a4e9c5203e089fff54187d8f7d139e64ca46e819a6c5247a10947be659e
MD5 b62604ff3be42c48b480b236e15c9c70
BLAKE2b-256 d2dce843dd1d5b91cb3d19896d7ec45d013a5d6768bc2fa7a4a67f9a04d007fa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.0b1-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.0b1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 844108e62401bee6d69c24672142fb250c6d648c18e42e424e46bcb011acf895
MD5 66031f2e0062deca771a8b4651232695
BLAKE2b-256 76335136e803885a4d267a73c3387f92d91407b71ae5a06c7954fe41daad1763

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.0b1-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.0b1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a7bc517312dee4b76ad40867f35ef87373cf9016f85fa8637392880e28904d50
MD5 8dec20c1d38cb8b45a17bed0988be4bc
BLAKE2b-256 29bf273df217f5fad8bc33b2555a4407fbdce8387ae59401e6319f996a81cd0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0394479096238f4a58a5b4b15148948e6e9e0e4d7f9681bce69bb673d7293076
MD5 c50b58753e44ee7434b7492e39b42998
BLAKE2b-256 73e474a75b951734a265caf50b648d8a38463780e8a2dbacc7c6a17a078966ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ad4c40784c7c75cb3fcb1a5c9c9291bd6612a9cebe58731829240d32b3c3175a
MD5 6f96d108356983361363ee5150199fdd
BLAKE2b-256 8455d5b9589b50dee7f49d141814f00ffc4f9fd5d457a37b0039de7e095d46f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 12553e0385be291fdef628b34b5151a58850cc647243c68ab8c0a96c2cc6431e
MD5 fc6857ce30276aa393f6f5211bfa64e3
BLAKE2b-256 71587eb86c7134e7db3cb1d9285c3f78d5f092c9f49f9fc9540e617241788234

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f9631c2b6c6a28755d624db2d7da53ad375028b846cf3caed0908fc6578d2eaf
MD5 4958c7046e7895888f7b38a631d61169
BLAKE2b-256 63f916dcf9bef4624f9aed19f9106ec57cb41586d7ba103dd50591be78d2b440

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d6dfcf49290f7e16c476904129633a4d8de5a31616ac37b18f663219c6b35bea
MD5 f86a2f4f99ad1993f20bab60268c0943
BLAKE2b-256 ba1eb7905d2f43d043bc33b2630c9c5c6ce838d09b10e36140dbd673ba5e722a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6685d21fd09deb81e4b6232491607b7ac7123e89ba8a70b00f173ecb61e7a4fa
MD5 c7046fc32038e4c59cd70501d26159f4
BLAKE2b-256 33fb683ee0cc31925199ca890797f961ab2b4ac5f356917110a64a8577964eab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bc31e9d71143b0c5984067a66e40e10139b4da1079de036d2dfd0636e0e4b6b8
MD5 d782ee3061c4e14c8c36f304f920c60a
BLAKE2b-256 9f0dba41c1d1c3c38fdd690bb3c8cc0d9cc2558c5467dbfc455b40a8dd5f3fc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5d4ac6243ed8af329f3599483e0ba929b204a4e049edf7d5cc912402ee8d8e6c
MD5 26e49482bc4c0e9159c41d05ec423367
BLAKE2b-256 adedaac2c5705dcff67e45e8e3e8a4ec4d1c4721b8b5d801ef9aab993749036a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0b1-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.0b1-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.0b1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 070593f261222dc75f29cbe57dc5005b295c41f8cec6ee680b5c0984482b70c2
MD5 d3eac9f7076266a2df8339d061cc2610
BLAKE2b-256 fd2f4fbb9f22d5bd72099d18d38981a575a7ee4b0386bf424972c1f8383713c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 744d47260206d8c8744782833856c1fe4343191e6914bf522d0092df0a8de028
MD5 e3401e272275042a01df32712844cb90
BLAKE2b-256 0ef134aa9f22d19b6c0e612785f9b0fd2ef568c92124fb9677527560611e452a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 dfae3a7d5b8cd2a06fd3da5cae635ef6d0258a87ced56f4fd6b513a52f1a0f19
MD5 7d40d25f940176fb67cbfb4d5152a668
BLAKE2b-256 92ee1cd3b544db65e61b5f5d08a6c63b6eddd095f99180fdf8d61f6dee810d7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 abf95554130a446ff304caa3e2f2b66e1e024ea83b699ae040964597a1855b8a
MD5 c1061af55cb380390095dada8abbdc48
BLAKE2b-256 57e9b383dfe602d7b2fdc4dbbaada43b7a5ed349c52af4beec895a4ce173228f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5e4aef18dec9ebba90a46e409f99ba6ea5e82b30599c6a32f6045522069ea361
MD5 e0191bee3ef89c5e531d3a8ef9092694
BLAKE2b-256 8b8951d6f49de7d61cff40e57d61e5d6202f1bc32004ff4a168f7e4bcc159453

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 bbe836331bf53463059abb3be031ade903c8a4d21353310e571691807797a68c
MD5 14738ffd538d95c5391579e5d46848c0
BLAKE2b-256 b7486f33f6eee308f42db0f66edb5bc8e033faeada151916b07aa715994b4f61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bd0b158c447b12f3cd0e5201872e45fbabf1a96c4de4f76fa745f99bdb47467
MD5 7df0f42367b8e82083aa3a5e9613a663
BLAKE2b-256 574d53c4d2ce721ce6b9d270c80136b5189730944e5fa1b35fd947e27561e490

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 235343a81d2e41f3042554e0d38973459d8bdbac3872f1c61625c258bd43bf5a
MD5 eccf7bd6c3825239b19f7f1f3be402b0
BLAKE2b-256 dda0a8d29768d8588173b104389fcb7700d3bf2e72040ea5c2c8521ec0b6a1ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 af044f28b9edd49719345bef7db88bd0fcae5ba9695e1e7d1a7e93c1bf26f3c0
MD5 1f9248fd58dd97124d1cd30415d0618f
BLAKE2b-256 a512c3b97d8a69ff4b0d3354f0828cba50b454ec2357f8abd8aa1a7b6d93ae5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 12ed61e54d69d8fd6a4037e83b0377026567f9ffd22345260b4b916c50a6e72a
MD5 8fc9d0f05189d073cbc7d63fbfd4c799
BLAKE2b-256 e76bb19196c8e441584b0a9b25cb0c4bd8b0c56749d67c2b7a6a89fabfebc3ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 05dc61977f108c8f6a0ef74bc4e035c388be3d7d59b9d36fb5736973a33c650c
MD5 933dc6242937c91057dae92974979590
BLAKE2b-256 7b11767914c4d7186e63e98b4da8c5831832b5fada8a196a93438856de07cf7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 4e720e6f78e4d7d943f423f82b8f28a5a0de7ba2f57d897ab6a96e207516f93a
MD5 9f177a29f98459ccf45a540ea400ac15
BLAKE2b-256 1ff3c8e40d92cce3d85cb64d443b9a1853c7271a8c1b6073e77b76872fd5cd5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 c27260896e2ff839d91ffa7d39a3b887bce3b6bad8c6b3e6e88fec1291a52941
MD5 c3120add581e004be4b9214f178a9cf6
BLAKE2b-256 93351ddafb0aa36f3b25e563caf2babe418c2f0cb3b0697baefeb8891d843085

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 b08fd353a6718cded35b951fd0d89f97655d8bdd19fb61002eb7733bcc5d7f57
MD5 e9add68642da4730187f5dabe12dbd0f
BLAKE2b-256 019b136ec6dae8603e6367184ed446d5079f0c2ef0b84ee1889c72cbe255ce70

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.0b1-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.0b1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 bc243b8551d78ccda12584370a9cd316f0072e400131866cbadc3d54ef720333
MD5 1f02a23c41921aa17853c53cf3416342
BLAKE2b-256 f09e2b38044845581cd006723c4ebd21482228113e940d658b2ed9f09b01111a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 e00d5fe72e354f751a46dd7870eb794fdfef684ba8fe6caa370e803100f61deb
MD5 811c01b131feda1f09d58a062b902210
BLAKE2b-256 819c609e3d5e468fcb48b5e1b3de790c278ab648dfe802345673aa4fd69d1829

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cdd7056993557f90b68aeb07a1d0d2adeb871ed62828a268f22576d6cfaca682
MD5 2f72f7c7417c1982aa915c3fff8751b2
BLAKE2b-256 ec4efd0d0c44bc9867fde6b34ecf2d88967d4681a7d1293f0404087070f223ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 48fa16bf0f92c236189de704b2f72213971f60846b596391c70b269ce25f01dc
MD5 d6d9a3c70ee58b911c3c8082706cd505
BLAKE2b-256 a1e2b560bb6816aa2b6f388ed5b37d25096c378cf0c11396ff6b4176275f3ab1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d734ce92aa4e4dddedf13167f8901b5c65af0931f77f434ca03656ad959cbdac
MD5 fe677e53f95db0c96b483bd5cb5b814f
BLAKE2b-256 c5b48bf9da95f00a127e8b0c49e54d6d661da8bbc2ce1bcb056d2fd717d1f298

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f89a699edd0e3ab475e4c6f69b6ff68aef2f9b6aa1bd2444bd7e280c43c2a577
MD5 f75a596d96ec8ae3f028b85e87bdf1a9
BLAKE2b-256 98da012f3659f3562a85b9ed1f2aadce93f69bb7f44e92b7c9b2cc50ff32e39b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 479b4fb46e94e4e6edfcfa48f1a0355e3c1a4ba047bb2c05cdfde4d36af789c9
MD5 8727995ce3e7b7f0dd0dd16bcb96cf3d
BLAKE2b-256 eacd0b1d90a1efdcd3fc22628e6921d81c0e294633d93f8c5a227ca8db2f2742

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a5b703f7d606cdeabc0d6f60e59934049eb3087a73ce4f676ce644a6bb633525
MD5 cb9a74bf18fdf9d4fa64ab4dbc5a4e9c
BLAKE2b-256 7b9de6e6e54047178dca3683739cd8cbd49940013e966a4843a2dc3f8adcd206

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8ae66fe2dbc8273ec3389b142c4856733d65a7da854f61be789c4577620e132
MD5 3660ce63e372a64ad8d5877a11e24a9b
BLAKE2b-256 1da4d47b8498f9f998ccf6749d00e3b6377d3c9960823a9e6b8fc8fc27cac7e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1830e8d369877d1a889dbd855d8586585bf4a5ccb2f291501d63eeafab84740a
MD5 27cb8f569c559b9d9ee0aae7ae404533
BLAKE2b-256 713b174f5f7c2bf60a7a3f876142baebf9b96115dee16e620d5a2379605ac689

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0b1-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.0b1-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.0b1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bc85a56d6440154b42bebfcd5c7ca195f7a0136a08d99e99d652811e9faad5ca
MD5 40662a438604962f5defe5c831d4d5c8
BLAKE2b-256 ceb402c77a8af662aedd73dad3c7408d5580fc1d0a962656626510406dc7a423

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 85f161a858c5f225e68836442efea87fb19309cdd50b941eecd33323ac52ff6a
MD5 2a219b7eacb1ca464222ad2371995801
BLAKE2b-256 74716e8d1f51203d1418d583f75c98626bf05f256a098c1560962ebf3a78ecc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 61a414a7ad4f6b714a751f71d757bcfa36c9f337094ae82ff5ad410ffc5ae417
MD5 58c5f66c847b6ff68b5a2176efdbf01b
BLAKE2b-256 a112071c151072b34702e0cc9f93d45de1108739a122817c3f5c64e0e0cbbdf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f9a80e2a9ee8411ed598475e2f046d14da80e60a997af34cb44328f2221ea768
MD5 b42da8dc1535f99b42c62fa1419f54e8
BLAKE2b-256 1a6fb760f47b6111897d4cfefb0da434ef196b6829d371d157e9502045cc819e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 716f4eb3f9772c5066f694cf55f093924b2837a4cba9e88704cb48461e574d13
MD5 7bb83b0372bc4011a06924c3d55a24d6
BLAKE2b-256 c31e22d7ac1d381238091460e1c40286fa3981cc68ec3a49d106755468acc9d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a22fcfd030b5627dce90f8f13a495790bcb4e14f5f98867ab520a693c9ffc171
MD5 c161393ae149b4259068b6ee15ceb850
BLAKE2b-256 17295b985cc790a3efe2e57b5724d15f9f0f8ac7db77d3888906fb5c873c08f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee9c1e4c263593f122e6f984ec7b3b9c588a167ba9f5492b8b46428854229481
MD5 af2f994c0d810d0e2d8bcc62858cc3f2
BLAKE2b-256 6f279a5e9ccda58e84a101664bf3636b3f210af4f5bc34164e864ef0a1f4b15b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 10370c6a637fcbf12984d24015690fccbbff4b4738db128e305bd5b02fbb34a9
MD5 9ca9778d58e3788192d248b1f94ac71c
BLAKE2b-256 e0a45ccad07e54720c3068a93d10766dac59bad9be2dce4879f9c5103de57119

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.0b1-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.0b1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 0028802dbb3e3e8147b9a3301ea5f35564515bf0834f60cd515d72a7dc5ad5cc
MD5 96d9b187666b9b8302340e718fb32107
BLAKE2b-256 8a3fc8a031d703206a2fd321aeede362672ca7c08a3c43c65108b7049db18f0f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.0b1-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.0b1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 13acffc0930f6025fb50d54dbc2b0daa7f3ad7e2a0cafcb647b451820442456d
MD5 b4c5b98dd0f08aef9673a91e27ac649a
BLAKE2b-256 b012a54303ed34a52334791e833dcb3055d0db48a677d4b338f57a863f280e9a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 86c6cfe85ee14d8ae56a237912c20e171d16c355d0cebd57a534209b1f24adb0
MD5 36144a5f50343da3e45cdf059a040e10
BLAKE2b-256 05f2424ab7a16c9f161dcb1e17030412964f48ad3ef3435bdce0679ac7066af3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c7c9d05431981c33219974c3c17047fe8874532776c5ae02cdfc2f9cc46d659
MD5 224a6331af382becd535b9e01be19f02
BLAKE2b-256 78c86514a4d1f56e29e530382424c1aa94dc6b561270ca09bb10b9faf172dd99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 91199d51bec1516206a288f7cb9c6a939e9768e72d8a00a4aa1c042e1efa3dbe
MD5 f43d12b59ebcbbb1e94e1655663687b6
BLAKE2b-256 16dba0e8429bcecee0ff166efc5d02d57cedbc8329e8992b930c3571a5f68aa5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8bca5369f6d4b2e67ffbac2a5c31e975d39085f50bb264a91a4c2f45ead6e521
MD5 49be60d9dd04b35bf88a23b46649df40
BLAKE2b-256 f2e59751cb2a03f98e555b2c05618cc1496f9180a1700c4aff9cea2b4bbfe16d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1b55e824f8580295d253e20106e8db482270cb6054b421458a88e4af2636e4b4
MD5 4f114f13ec08e1a43c90e9732b5679dd
BLAKE2b-256 ce0598e48b6509cfa838ecab4541dc4ff01113d74581c16bb1d0d70feb0e62b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2e2158e6db2eb7ac0e2544f0ee3e933073a36d87cec8a13fd72e0136c9d79540
MD5 451721fad9afecefe6d38d2aa7f935f4
BLAKE2b-256 8e44676bdb675e125834e5a368d291cced586b51191a3f7dda28d558060c728e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7921487207e01dd24d2f519a3408101cdf695da138e558036941469cd141551e
MD5 04cfb07fa076eb9c42ee6fa13a06b6e5
BLAKE2b-256 4455bb6be69263733287f9643ad2b3a9709bd0f88ea7d753dfc7fdbee40d329b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 69776e37b45be2d6fd78a4473fec0985eab53acb74bb2f68fb1d7f98f118a6ae
MD5 b74b56eab00682ad04d6be04b6e5078c
BLAKE2b-256 0d0616da73f756ebe55a915847a3ac137c7b1fae9a46a590eb6f588f77e50987

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8979a2e7f20d0f4bf779457dffd0fbe21ed8c8153437b07dfd46dc6079a4218d
MD5 dd443e25bae99c44b61588d84cb06376
BLAKE2b-256 f0b5d357d470ce83c4e552e3934ef36fd806e3ce0b1c06b4fa8997f38141fcf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0b1-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.0b1-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.0b1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c2533b707cf507e08115606a7fc9c680ec5f5ce0ed0656bdb264095fa82742a2
MD5 3299afacef2605a707237a375629a339
BLAKE2b-256 239279729b155bb0ccdaef887941bfb3f9b785910d62ce5fb9c520e8983d3bb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 48b7c502cd6d069162b04b7d6b75e6294d75b93d0a43efd919cc10dddcc382a3
MD5 c453acec056a0195ec74dab7accc8c12
BLAKE2b-256 3bf0b20a7b3af2494ed9d1b3abcf7da9675e8536a4242a3493e7de23cd0bc151

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6580956af86e80835fce8f6c416f520485e82328d92fd77415dff653cf42fbc4
MD5 519b907e911d2dc1818ddd643f749ab1
BLAKE2b-256 a4d0fd9f67efd2020af71fded1b4caae8c07a06379903f4ce854cccd2887f4ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 af4ef8b600e7da8e2a57b3aa07bc1c446c552cd542deb516b55c37234e57b5f6
MD5 ed76dcd5e0e63399d7d3e586457e7806
BLAKE2b-256 d233e0d5eccd70f32ce22eda5c35b41c924a4462844477c089933b1d183a6375

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 27f556a8eef448e74394974dc0098b9489ce6155a4a327edb9c66a5779576a52
MD5 c0da3a5ad13e400c3a7a56eb2fcb872f
BLAKE2b-256 8fa08e068e914ee09e95bd23b52d4088ee0b73e71958bed2ad98cc0fbd2dbed4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 912e02c37ae92c2c9a0a2bd662d82518a0ba3f99c6743db0bf3863c45ba02796
MD5 c3afaee0c3c4455e77887c4d2e2a385b
BLAKE2b-256 bf224d7a844f7da993589684f88b3b900d7a80173fd500304688f061ec51feed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c8c07800e50689b72ceafa8c8b8a8a69d09f7a56f5bc6c86a6260068d12b836
MD5 16f43ccd01fffc2769fad63f8b7e2dad
BLAKE2b-256 72b2171b6af0765842f97ccab85e8c22b2311a49b361a52de100ac7e56bc066a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 33304518d0a6b204f6928ea9df70b85bc3878f33d9a32e13d77912c64d82dafb
MD5 50f84640232ba0eeaba3f6ce20669b4b
BLAKE2b-256 2b73a9c9fa4224f11ea5db15acb8686d5b339159918d9900959ccc277552f46b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 5668c72b984e7fd8fdac985a0a6a0712321199591bc0930d0f22056adba163cd
MD5 e3cb8e43a9d1269e2089b60e97b66623
BLAKE2b-256 d9d7f416bbfd87d0a2b9f5f7581cd42fcb5aad8bd25c1522cc4977717b8d950e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 5a65180246fd58b784bff8fc46c136ba8adc7c3b7ee667791ed729ca7985cb1d
MD5 eabd5fef91b71d24b124f889fb2ab0af
BLAKE2b-256 9206a8c1e1f8923e74f9909098e205aa55b76ded4001873a4315cd1f0d3dd07e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 ddd89d0cd9e4e55a781a1e0cfe770d27c331e41801798205d3748963be29efc3
MD5 7d37f746e6dc2b3c28056f0d7585d8c2
BLAKE2b-256 f385eedcf734f80cda27592236d75f00d3a2f1256763106acb6bb612d8aa573d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 1ce238b9ab88fe47c4b9ef97db9da8a1e58d4f91b6067d4ba0487b89b656b609
MD5 43c7b19e14650e56ee9460f135fcf134
BLAKE2b-256 8c281e563bcb7324df3cadf183190f040ac0fa3ff9c77c62544524f3e5fc96c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 bcbf4c284bb2d83b4b6d26455f4c1500c6ab5ab3c3f409be41039b36a6e597d2
MD5 42670d01cc5c61b8e9db20970b42ae83
BLAKE2b-256 f547b1623594c4ba83c4290cab5b0dfe51f121067023d5ff2fab2a5b7707f14e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.0b1-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.0b1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 f31cb5b499f6cd296c4521768e7147d9724ff4a2f93ad565ab8a0f993ebbbedd
MD5 9a322737e26d0e3dd0b4179acb76ff4d
BLAKE2b-256 0cc745a7f734b5b2f35f753a5cbcb9b35a9b2b371735ca01bbdcebacc3f77ffc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.0b1-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.0b1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 60fca36ec75b675181f369d1f0548ef8ffd28e3d1553d6ca6f4a5a8984dc433e
MD5 2c7e18e4d3d64598fc259fc627f687b8
BLAKE2b-256 5b7ca5d74b6964386b2bbef867adcee69a767ee400c7671befef79fea344448d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.0b1-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.0b1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3492f21110208668a6dc62d5e52ee790a6f3e2d7fbdc30528d584b13bea852c7
MD5 c2af7888f449553afa1a6b250a9e0358
BLAKE2b-256 3e73cfc60572ff7444b62c41d15fc60248a9e29ecb0b71abc500e9f203636fb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31996c8099e4b3b735424e5318b008d6b78beb0a8b19f4f94fd31fa5d6336230
MD5 8802fd446497fbacb2e6eb35c739d6fa
BLAKE2b-256 734eb1d33008d6bbc6f9f7d9371e0d297e602d5ff4a853da89040aabeeba10ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f153c978ae6efd77fb40044e78a503938dd3f0e68262921d37632ab4e1dff1f1
MD5 28cf59d5eca2e771efe3176a1f1f5a59
BLAKE2b-256 da1c5a9b9d7188c0ce2ca7a0699c0458194177ca1287676c0f2c4853f9faed26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 cf6c4c7e9bbfad9e2502bd8314500171a97cd8c4bf145c5955b82b2afa28c038
MD5 3e6da1bcfa55316a9047de55ae641bce
BLAKE2b-256 88fdb8777842861287a82f89784d534dd703fe271fbea42a25d929113d432d82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e2bee6a502e799706f59709e586a370a52f9ae8c851876821d095c11e92bdee4
MD5 6a6270df9e472c7d64554f9860db5ecb
BLAKE2b-256 91cecbaf47f16a7f82c75ca178a45e1d583cd862a2fa32df749dfe9a2d0e8b47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b21b8c896b79886e20b032a34a436531e1594982e51d85ec9d3b574033cd04c4
MD5 3150be1e5432d632767b29c58e573bd3
BLAKE2b-256 6d4f7965c5aaa6f40077976fdabeac3ce54c134394a4878609d5586de8a1de73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1092dccdaa5769011fe5610f8d9f0a98be83b0f59a64946c455b487910bf0c8f
MD5 cbdf3efb58b18ee49207d1b10ffd72e4
BLAKE2b-256 16601562cb3f277a0a08f959d106e5069294db38c95c628bf819392653014a4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 22795d9f0d37e4e1cc3c2415d6473044a0c397fb84ce180f1bbd6301d17d8cc2
MD5 58da0cd86405282a77df32c4829c559e
BLAKE2b-256 ab7057f17aec2b06b271f22ab5b3c45f3bf6524d3d92c4ba144128073418db99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f7f24ea2896997f01a90767d1c6824000708b244adb39b4271f5cb39e937ddd5
MD5 b18a7391379a661e3e1f2d5ba30308b4
BLAKE2b-256 daaf27ab1ff23bd3d49a1d7d8f5f6cd076a929876442803f0dc3ab32ecf3dbbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0b1-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.0b1-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.0b1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 89b58dd5d84377691d88611cda0c12be6cb7899ea5d34b5cb55c4377ea2fc0be
MD5 d19bb142cf8529592af918d3e34551ce
BLAKE2b-256 97af088a3eb291c6b40c13534385c49eadc0898ee6fff9bd12819c48665c2839

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 04d907d38b98d706a54e2b44551cca4822b6e753dd002cf89ee0dfd522e74402
MD5 d098f7725baf8164b7c49ecbac92340d
BLAKE2b-256 64f5ed122cab191ee240bc1488e99918d849b51f8a9e1c82546b96b104a47d36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8e0ad152488083e9585da0e2c481dc33b9644ce59bd6c3930105c01baac5be6b
MD5 82e637cdfe60b94090a0b27513f99e68
BLAKE2b-256 820874c01bf734b242f6f3aa2261e960c4080b979a5ebff63f8fc9e7c38bc98e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1c34d5df13cd720a2cefadd8f6598305526d45657d0f35916c01a0e3dedb16c6
MD5 314012fc1ceb3a543b095d23b55dbb9e
BLAKE2b-256 b106753117f335c0e14d0d618e1073a02cc7da71f7e540d69407164121bd27cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cc370984e8a19a602c4e993ce8bbce333e1a06e417fbcf1b3c0afce19868bef4
MD5 022126a98e065e09bf26402ec647c093
BLAKE2b-256 f22bb8b31e38944aea4991ab261f108f3700030def84f151ef8fa6ba20a423a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a4e0024b6d66df7b4b550f71eacffc24b569afe68f0579572edbfffab33b2abd
MD5 de23d8d330f16b0695176d6802f28cda
BLAKE2b-256 d4327ca0bcb8fda8047dbbbf19a787932656c75f43d80dba6371529104f7049a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c993272f8fa3940e2ba5975574122ba7f3d6d0e85b6eef50d96c3e7dad173952
MD5 ee71573586b2585d56a4c0afae4bb577
BLAKE2b-256 565afd860fe4eed7c84a26c8d1eb8cc1d39385c5c3ef9302150add4e5db3e0db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9446d431a3b2959adf9bf985af2a8089433cc800e4d20027b7a858c9ce16d395
MD5 939d7514d3a105c54fcc8223e87a7329
BLAKE2b-256 9b15d5e45d2719dd39a0f15bc39e44496e135472610e5e7942fba6ed7b80163d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.0b1-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.0b1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 cd49f9041fdf5463db5828a9f15ef1bdec64c203de6fb3a4f1b80b382d087579
MD5 466212df1ef9ab9440a410423b2e8eee
BLAKE2b-256 f5a14c1744b570169fc3a296ddf2f4b829d42ee65ffc1022ef8e2bc0f632e099

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.0b1-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.0b1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0582d13cf4f03ffe5b01738b14867963f104cd9e6fd85ba23e95cabe1e43d586
MD5 c9ae3cc4a3634e4492e36316ea93a5e9
BLAKE2b-256 e5a5784375899cc9e3019ca47d86f6cab48ebf15f5b9c9bd069ecc10e74c809f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.0b1-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.0b1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1bda9f62721268b4a9ad7e6ee592d23702f5a20910ea52dcf9dc7a2a9dd5d551
MD5 9a97fc42bbc8e88ac38217b8ee8e96a9
BLAKE2b-256 5c17829c1e1872c3006f2d9a5b29be730c7c1cb85a4c69f018dcf86d9a7275ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 729f709346a9c2c5849c7c7ac35a562ceec5ae7ea67fdf8ffd06a1d7efaf5c38
MD5 31f9d43d449d97860bcbb1d59b8ebf3a
BLAKE2b-256 96888a9fac987d7daffbf3b2c67fb4ae17d96c14b0592c5712b6ba157c5b64b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 02a8165e0aac0f53f00a93d66a57e996eb6e4f57955a9f605d6930d40993d4ff
MD5 7404333483e8249a16a9edbc78caafc5
BLAKE2b-256 bc6aba9e3f2a484daea7e2f5b5a301d25abd925684d541861cb8f4541151486f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3d3a8cf8c49014df213699e77db0f7b86133f133f8acea502f738ff5e78b6e36
MD5 16ea5b51cc7ddb11f433e28c8a97aa32
BLAKE2b-256 d5bffad401ae051bf7dce0f4018d2fbb20f473d106e7922a81b7e210f25e50a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6f20428be901927a29beaa2a42c169aea69dc0e8feb6a9a90c805d983d9332f5
MD5 8eee54e80d6b42a6c190ff97555a1f73
BLAKE2b-256 c2a636022742bf94f7d39635619dfdd671a08f746f0162d0711a66c5c754dc70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 27ec7b6ac8093a298bc25fbec2cd0fb9796180f34e23cfc0caa55b3e3ce22114
MD5 a1e3a4eea23cc7909d48f2cc802063cf
BLAKE2b-256 d82f87d3ee810790cbb25aa33cfa6930443e7d563ce45496319e3ec8fdb69770

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1cbcfe5a27691a66c2612448864e9e9a31af763a96bd5ee8026be4c3caa22e79
MD5 2cbcf32dbeae8310ba998e78236b386a
BLAKE2b-256 7ab28c6b3627ad81bb7110a2e5a82158f3ab2b91922b4939bc04f019d9573c3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd86ef1cff895c24fc18e6a2c39e2da5261447c3b3835a31564f7353029dc1e6
MD5 3aa228401a2e8d6758fa986c78875a7b
BLAKE2b-256 789b81fb3fecf205084deadb364b72623d1e96590912e88476433c01e27e837a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5fb8aa53368c412e9f99a91aaf8426925e47cb22c41fcaa568500f2bee88fc0b
MD5 988f2f3f0f9ee0742f096d576041486e
BLAKE2b-256 58025a817c1c80b3c9f5dc79d26b67cbdfdf32519f16b067d5030256b9e0efd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0b1-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.0b1-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.0b1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4dac485437bd46f623ccc3d6030a90050c02382fbdc1689db0ae5d6af6b293a5
MD5 30bd7259c9754e7224f709b81799b04b
BLAKE2b-256 23eb74650556088ed42eabb818aaccb415ac233ae15df967e5d3eb64d6710f13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 457bad283b562e26190e72cb6748668c8f404b2b1942afa9b4254f950fdef71c
MD5 6b5ae1144462dcaa41d09305833432c1
BLAKE2b-256 622155bf7c74c41c187374591d5126f855e7e578d74187110355f4d99d2bcb08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 93a6d499789a53a51c94c8407dc11e1bd5a3de2d7c26a263fddd64cf863b158b
MD5 fc90fc081450ff1dbbed9f972d4675a6
BLAKE2b-256 34f6e72dd74c370f8a5672a1cec0db0341327b398cf37994000d32c7d979d58b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5c444e5a3e5e74d42c34500d762969af4e676787c326c56fb1a02136e82c890e
MD5 927e3fab122cefd9b659cbc88de01326
BLAKE2b-256 c305e7a8053eabbc1f5567996f3a3d6afa965b56dd311a7b78c3dc2d1f7f53dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3bc8d279328d7ba5437b564470b54a06c55bc9cd49344cd4f8c1f38ed426c21b
MD5 a2954ac93c782d6bf75be7041a49c2bd
BLAKE2b-256 21734782fec80d76afd74ddb6cba0d0051554369b36c4781aa4e1a87094d4837

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e8eb006f453039b1d1a6ebe4c846361694455885e469a86c54b5046ee6de03ba
MD5 846f7513335da0a33be02bdf2139e432
BLAKE2b-256 257d1a701cb32d9a257e3b5921df6ae89f632078da33a1d3221bb0abed7355c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d67d2216197f90e96b8afa6b1d49e9b2530cde265c9912377166daa02fad8c8
MD5 485f1eda4e6f796d8699d4670675bc00
BLAKE2b-256 3c28d6a59e58e68b3b19e43eeaea22c5a8a542044bb1f2af9dbfee3d4391abda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 845a61866249213cf01ff85502b0552ca07d8ff88c78162fdd407be9a001f6de
MD5 bc31d2401c48b3ecc273d31a638cca62
BLAKE2b-256 0e2beed00ee72bc03c685166b53148d2824f8afb078dada7cf25a8849a7c6654

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.0b1-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.0b1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 cda0f8aaacfce84ebcb3d91ab6adafced92a34f3aa3a606f814f8ae9960edecf
MD5 12f3fa1449b0efb540f64e16362aa117
BLAKE2b-256 721a12e71a4d7cb00bb4caf04241cd22e57d23dcb2dc95d1c0ea4c8fd92f430f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.0b1-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.0b1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8c8375f3994c04e0695fa232bed71ab047438bd90dbe63c8e2a25c05e0db27ca
MD5 2ce484d4171d35c65d59154cc9a86002
BLAKE2b-256 23bb3a3a9b51c705e72e9b4015295bee091abeafbb756ae83d33cef16ba64674

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.0b1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0d72d1d5cc91f6bcef7bdcfbbd929121bb471dea9ed0e05429074c235f647e35
MD5 7041ff9a67200d22a66f3e5252318ffd
BLAKE2b-256 61f800ef2f188a7a8a445ac61af7352b0f60614030d7923d5b95e510bb975fec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f115a06e514b51390ab1ad1346926d5636850018fdd0b635e988ebf1fefa40f
MD5 1ab3ea4569eb652a794f665edd18c997
BLAKE2b-256 04a2babb6f7c6bba745b6d329ced4ab962e144142370d0e95e0f910af2931edb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b25bd62c6058f53894c8eb16c8ac24a1635c0a0247e543f3a7ce7293cf5d0f23
MD5 1fe713e77a39e4bfb75ec62daa4f224c
BLAKE2b-256 f5851550b2a62128309870b9f6c447f73b1a7dfc89aafe82331760d857137176

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f99536dffb689719431c296484e39d8c84f3910a3b350cedbac9efb13dcc54b6
MD5 76968332fb11236f030388878ca06be3
BLAKE2b-256 ec5463494bd24c717e1d7c8ff8129050b8b1ed0fe34e803215cab7fb58ea17b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d306bdc4b23159c81b4bac546a838a5035aca272b0dc02733cdfbf28792234df
MD5 da4e579a0a37a3fc548e77c69f24b134
BLAKE2b-256 9233e68dcb0faad82934e62d506e6d53dd3d5f551280e45dace440e98c134f61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 084da598deed118b007867ff7a92995b1b0d486ecd59f614176e6b269d2c5c95
MD5 82c1c7e5d9e5d165f8d79cc93df03397
BLAKE2b-256 30664a5b4829c6a0e4664482743e6f385d3839f6f40441eb77fbe3f25e775088

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 51e538a8d0202bc9bc18f9e4c2bd17623321662388132e76043a7492496082a1
MD5 a2dcd34a4d91812fc2756238050181f4
BLAKE2b-256 ec7752614e61913fbd43291602a8d7232872886f4ecf489e84db34b5c7ea521f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2fb744482bad89eda7519d5ed9e79a6632c9911d9a9bd734002b4f7caea9f356
MD5 c02aa304564c964ea4bb171dbb4a4596
BLAKE2b-256 93891dfea4685c84c85979acf4912ab00e916a8a7601e12ba581de60ded7bd7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4159ba54585758c7e908c74f8caf8bac6087fda77869f1435822629e43961fa9
MD5 5a036271141770c0ee610b0b34919590
BLAKE2b-256 472f0b23bcd6b35d9bd0ee745c8449eeeba93c46eae98f0f8f5b0ce32c76d85a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0b1-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.0b1-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.0b1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2a8be9ee69a0f857b02cbae1d99fbf8412e060c0eddfb1937f5b5ab57694c1df
MD5 115dd74512641753829faef24a118134
BLAKE2b-256 9eda2e26a61ee531ff74d48d5d97dfef65d1fb8924b41781c8a3e5f8a801c15f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e966c10596f135c2246d1ffe7bc3df4eca3e9f7526ebc05c0c1ac165b47c4415
MD5 1fffb1f68599ac58f3380d7e6a87141c
BLAKE2b-256 d6f10d4e385998b2ae2e00c4f3351d443dcc48ad4f108c708b337d5f73b042a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b1a1aadd968ba5bdb8cfa422e63783df44b7cb3ea628ed5600f1ba336a5f0f0e
MD5 0a5803de7fe46f5db8aaeae2f349120a
BLAKE2b-256 b9b7555cbf1e888e730d1c7534332df9cbbac171043a6780c96dc51a10be35ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c6c53e16b74721f242ed43c78c7f6c9b41d370211e81fdda26577bdcacd666e0
MD5 eec7bdc6f052a67953d2d3e05b3cb492
BLAKE2b-256 c080305a3c56423df4fbb1614c156846df54b40dc7bd27f72c19e2a5e59add34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a8fcdd5fc3f90dd6a7e2c416e5956deb790d322ed6b1643f5312d298990b833c
MD5 0fcd95cd8362d865b00748705134e273
BLAKE2b-256 e0a1d7ecab9e14ea0d24a78bfb1a288d2566946b0d7d433d16494653f0fa0978

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f0c11f6b18b72928c653ab258cf3e23e0ef01b19120f4798bc80f4c3d26e64a3
MD5 b7025d59ad3c040bc293dd0c0d692be2
BLAKE2b-256 72780927743a701107fc06d445c12fee27c0155983fa5779dec78525f2f3d78b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 814cb2f2b5031058d5d6dbc90ee0b6dbcb2eee061e11501245efff76635acb10
MD5 36a4456e08ffbc751b29f798409739b4
BLAKE2b-256 0d00899a1e0c645b70a64a80e144be21a6c2db59f843699755d5fd48305347a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c829f07e06012883ff88daf7e1118638110a9e4998bd22a0aa8df56c606beb0b
MD5 ae5c3680a2b86d8acf50a0a25b2b9c95
BLAKE2b-256 ac1db65fd32528cc49e464900cc353d4762ffda6f4a6463c3a4a8a74c9b87eb0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.0b1-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.0b1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 af39f2f79329aa76e7ebb01055fc9b3b62367d2a7df071c3158b79cc23ece099
MD5 0ab89200702e8ea02810a880367c76f4
BLAKE2b-256 fdd4c2e27fff05e6457ccb7a26e7d0d3180791fd9eb4d40634c321659937602c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-4.0.0b1-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.0b1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bf3383b9fa2f8bb8e8db9cec122da71f7becbad734d03ea10e7db88e775faf12
MD5 815d719171cb56a10c70140a297c096a
BLAKE2b-256 31cd452913de206ab2662c25851e364a4c105285b70e9a3ddfba8f804b0d3e4f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for xxtea-4.0.0b1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2a6b24ef8440f966e7417c9289a702510828decd6b8c126e4389ff84a9b8b90c
MD5 21895d7f82835a4629a5d0f5339bd393
BLAKE2b-256 6d86513363f987f3a8f019222f84d8e763d41fd877860619582335b6dff7cafc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e87aaa42a1b136f8041796a199cc8dcf05813f126ac18d7191425bba74659d6
MD5 c231788061971ea8849e91fc82e8e33e
BLAKE2b-256 17faa63273a186051d82dee53165b3e87a624fa7f43ae39aa1adc3a5fc572a3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0d467f5c900aa35f790b09e8354b60a2438057f7009aba1fbe783b4a068c6ef9
MD5 aa119a368f6e6ad3398a03b0370fdad3
BLAKE2b-256 eb603ea809f64c5df911fada68cf8b1859d0a028fe6d636ea4d305040e0a9eb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d33e1e6a1801ddd695fbff497946d036b1b6ff92956f9ecd2c11a679cd3c9243
MD5 1a80092099c238187fadaa74c7a30344
BLAKE2b-256 be346e21604cfb0f7d5fbce930d651b9d2394c7d71397ba77bcadac9a6d4a611

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d55b7400afa0035cdf41286f4e7f7b008075734a8d161a759c40f4e1c45db0e7
MD5 9df3d047a57ea3972af6be3aafde2dca
BLAKE2b-256 6c9f6c2268e0b0681963235c7a5e93cace0eea33bf5eff191caf10573427f45d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e92b9872fb5372f160383e9c1acd89a52d0c8374da86af68374ba7ff00371a59
MD5 3d0c084b90095e53468728f23a8034af
BLAKE2b-256 e01e664c1a24f0522efd54c2ae8ef6296294a51b60bcf0f959500f650a1ac77c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d03789dce1cbd5655765c03c687bed9e47d5ee8aa02100eb5218458a7cbf0262
MD5 1d236a74f95c0c5b8ac22e8e7a01b1d7
BLAKE2b-256 9c3176dc1d58cc5a1d332eb2dc6389ce129798bc77518c77140ce310cdb5dfd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 85625ebbc825262ce3886291719b3ac72a10f27d549adfc98d155a01c0b09571
MD5 26c6e43a1b275197d3900210b8894f13
BLAKE2b-256 1fb8566c88c0c6abc02cb2b1f82aef336b48bc00668c867f4f388c9d0311a674

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0fdcd6ae58998f5e0f000f678c290928f0fcb888cdb6ad64792e7b2acc0594f0
MD5 a9dcb51ab86865ed1025f188dbbdcd5f
BLAKE2b-256 c5c9e43f6f93612e2a1c45fe4c957403e4103057b115ab21ac157aaf82b5a9c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-4.0.0b1-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.0b1-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.0b1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 73ee5a0588b8c3fce9c91ce0347549528827f1c7fdb572797d0220229ef7c99d
MD5 e1b1938fb73a17b90265045fcc0f250a
BLAKE2b-256 f960a8fe3362c16f82fcc0448ba8a6b4fcbcd7fc5add60d27c632f43ba7cf677

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 69a6409f22d4a9a9b3b62f7245806c6b68a66b184c156353f34552b99c4c4d51
MD5 91debe7ed5bbbe9070bd47057d390b57
BLAKE2b-256 0c7c4e1222fcc12d8b5095f49c6dc8c77c850ad1445b8dbb721826fb710e8d07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 30751c2f9bf6eb0d1db64095b6380c65cdbad8847bfcffb7cf894fcc30c3451e
MD5 e49450a9f99b09036f51113120850add
BLAKE2b-256 9b1803ef2977428504725488fbb5eca942e26600765ab796948443c8ce7a6c55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 fa3cb06b121ca8aaf1ea6d0b1a790fc239fca0ffd16d525fcac6e383eab2353e
MD5 6b7020814935ec760ba96ed6f34686d1
BLAKE2b-256 0aea7e452fe5f7ce406d6b0ed5cfcdb8246003aa0e21d5c5608489fb2ddab19a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f839e79269c0571ac30e87447e9522c26b61958e6d27c189cf787a7326f23bba
MD5 22af1536ad9837945890d59f27ceb627
BLAKE2b-256 b06b09bd0038647903916c2ee64f58315f94b903c51ac859caacfc3ab3f1b8c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 fe0b718478ef5e2ae9a20188240e940422e1af8bab3b723a78ed5c44520dedeb
MD5 da225de302fc1c61c36067663c246102
BLAKE2b-256 f5aa1c683f686488fe1439923b0cd51782935e24bb51116b6c217ff8340f4102

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6e21b8bf30321bdf748b4dfb959754860e793e61e131c30e82ea1d292f310b0
MD5 f7d39744abc78eabf16c5ee8c7f21c23
BLAKE2b-256 fea9ce7e322a8f0b9add000d5181f54c8d493b450b2bf7d92f0b45e6b4fab329

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-4.0.0b1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d6df07b93532cf5330eae30bc87e145fb539fec6a66920c62ae1f0beb3901934
MD5 d12f9f2e9ba44a3cfe0c2d6484bfa245
BLAKE2b-256 a506147a8ef1df2daae3c8c8e4085ea9c559dc938d02b341a6b5704dd0b0adba

See more details on using hashes here.

Provenance

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