Skip to main content

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

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

In this implementation, the conversions between bytes and array are taken care of by longs2bytes and bytes2longs. A non-standard 4-byte block PKCS#7 padding is used by default to make sure that the input bytes are padded to a multiple of 4-byte (the size of a 32-bit integer) and at least 8-byte long (the size of two 32-bit integers, 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(), plus an XXTEA type for reusable cipher objects.

>>> 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)
>>> s == xxtea.decrypt_hex(hexenc, key)
True
>>>
>>> binascii.hexlify(enc) == hexenc
True

XXTEA Type

The XXTEA type holds a 16-byte key, rounds, and padding setting, so you can encrypt and decrypt multiple times without passing them each call.

>>> from xxtea import XXTEA, Padding
>>>
>>> cipher = XXTEA(key, padding=False, rounds=128)
>>> cipher
<xxtea.XXTEA object at 0x...>
>>>
>>> enc = cipher.encrypt(b'12345678')
>>> cipher.decrypt(enc)
b'12345678'
>>>
>>> hexenc = cipher.encrypt_hex(b'12345678')
>>> cipher.decrypt_hex(hexenc)
b'12345678'

rounds defaults to 0 (auto), padding defaults to True. rounds=0 means 6 + 52 / n, where n is the number of 32-bit words in the data. They are stored on the object and used by every encrypt(), decrypt(), encrypt_hex(), and decrypt_hex() call:

>>> c = XXTEA(key)                                 # rounds=0, padding=Padding.PKCS7_4_MIN8
>>> c = XXTEA(key, rounds=64)                      # override rounds
>>> c = XXTEA(key, padding=False)                  # disable padding
>>> c = XXTEA(key, padding=Padding.PKCS7_8)        # 8-byte PKCS#7
>>> c = XXTEA(key, padding=False, rounds=42)

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 an xxtea.Padding enum (a str enum), so more schemes can be added later. Strings, True, and False still work:

  • True / Padding.PKCS7_4_MIN8 / "pkcs7_4_min8" (default): 4-byte PKCS#7-like, padded to at least 8 bytes. Compatible with previous versions of this package. Not standard 4-byte PKCS#7.

  • Padding.PKCS7_8 / "pkcs7_8": Standard 8-byte PKCS#7, compatible with Python xxteang.

  • False / None / Padding.NONE / "none": No padding (raw XXTEA).

xxtea.PKCS7_4_MIN8 and xxtea.PKCS7_8 are aliases for the enum members. They are also available as XXTEA.PKCS7_4_MIN8 and XXTEA.PKCS7_8.

Unknown scheme names raise ValueError. Other values still follow Python truthiness for compatibility (0 / "" / empty containers disable padding; 1 and other truthy non-strings use the default scheme), but emit a DeprecationWarning and will be removed in the next major version. Use True, False, None, or Padding.

The default "pkcs7_4_min8" scheme uses pad byte value 4 - (len(data) & 3) (range 1–4), plus an extra 4 bytes when the input is shorter than 4 bytes to meet XXTEA’s 2-word minimum (producing pad values 5–8). Standard 4-byte PKCS#7 never uses pad values 5–8. Because padding always adds at least one byte, encrypting an 8-byte input produces a 12-byte ciphertext.

8-byte PKCS#7 uses pad byte value 8 - (len(data) & 7) (range 1–8). Encrypting an 8-byte input produces a 16-byte ciphertext.

>>> xxtea.decrypt_hex(xxtea.encrypt_hex(b'', key), key)
b''
>>> xxtea.decrypt_hex(xxtea.encrypt_hex(b' ', key), key)
b' '
>>> len(xxtea.encrypt(b'12345678', key))                          # PKCS7_4_MIN8
12
>>> len(xxtea.encrypt(b'12345678', key, padding=xxtea.PKCS7_8))   # PKCS7_8
16

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(b'', key, padding=False)
ValueError: Data length must be a multiple of 4 bytes and must not be less than 8 bytes
>>> xxtea.encrypt_hex(b'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.decrypt_hex(xxtea.encrypt_hex(b'12345678', key, padding=False), 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.encode()
>>> key = string.ascii_letters[:16].encode()
>>> 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 these functions, a ValueError, TypeError, or OverflowError may be raised. Note that invalid hex input raises binascii.Error, which is a subclass of ValueError:

>>> import xxtea
>>> from xxtea 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, b'', key=b'')
ValueError : Need a 16-byte key.
>>> try_catch(xxtea.decrypt, b'', key=b' '*16)
ValueError : Data length must be a multiple of 4 bytes and must not be less than 8 bytes
>>> try_catch(xxtea.decrypt, b' '*8, key=b' '*16)
ValueError : Invalid data, illegal padding. Could be using a wrong key.
>>> try_catch(xxtea.decrypt_hex, b' '*8, key=b' '*16)
Error : Non-hexadecimal digit found
>>> try_catch(xxtea.decrypt_hex, b'abc', key=b' '*16)
Error : Odd-length string
>>> try_catch(xxtea.decrypt_hex, b'abcd', key=b' '*16)
ValueError : Data length must be a multiple of 4 bytes and must not be less than 8 bytes
>>> try_catch(xxtea.encrypt, b'x', b'k'*16, rounds=2**32)
OverflowError : rounds value too large
>>> try_catch(XXTEA, key=b'short')
ValueError : Need a 16-byte key.
>>> try_catch(XXTEA, key=b'k'*16, rounds=2**32)
OverflowError : rounds value too large

Download files

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

Source Distribution

xxtea-6.0.0.tar.gz (25.6 kB view details)

Uploaded Source

Built Distributions

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

xxtea-6.0.0-pp311-pypy311_pp73-win_amd64.whl (17.2 kB view details)

Uploaded PyPyWindows x86-64

xxtea-6.0.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (16.7 kB view details)

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

xxtea-6.0.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (17.8 kB view details)

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

xxtea-6.0.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (17.2 kB view details)

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

xxtea-6.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (14.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-6.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (14.4 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-6.0.0-pp310-pypy310_pp73-win_amd64.whl (17.4 kB view details)

Uploaded PyPyWindows x86-64

xxtea-6.0.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (16.9 kB view details)

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

xxtea-6.0.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (18.2 kB view details)

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

xxtea-6.0.0-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (17.3 kB view details)

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

xxtea-6.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (14.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-6.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (14.6 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-6.0.0-pp39-pypy39_pp73-win_amd64.whl (17.4 kB view details)

Uploaded PyPyWindows x86-64

xxtea-6.0.0-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (16.9 kB view details)

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

xxtea-6.0.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (18.2 kB view details)

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

xxtea-6.0.0-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (17.2 kB view details)

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

xxtea-6.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (14.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-6.0.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (14.6 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-6.0.0-graalpy312-graalpy250_312_native-win_amd64.whl (17.4 kB view details)

Uploaded Windows x86-64graalpy312

xxtea-6.0.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (17.5 kB view details)

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

xxtea-6.0.0-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (16.6 kB view details)

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

xxtea-6.0.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (15.7 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

xxtea-6.0.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl (14.6 kB view details)

Uploaded graalpy312macOS 10.13+ x86-64

xxtea-6.0.0-cp315-cp315t-win_arm64.whl (16.7 kB view details)

Uploaded CPython 3.15tWindows ARM64

xxtea-6.0.0-cp315-cp315t-win_amd64.whl (18.1 kB view details)

Uploaded CPython 3.15tWindows x86-64

xxtea-6.0.0-cp315-cp315t-win32.whl (16.7 kB view details)

Uploaded CPython 3.15tWindows x86

xxtea-6.0.0-cp315-cp315t-musllinux_1_2_x86_64.whl (90.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

xxtea-6.0.0-cp315-cp315t-musllinux_1_2_s390x.whl (90.6 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ s390x

xxtea-6.0.0-cp315-cp315t-musllinux_1_2_riscv64.whl (80.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

xxtea-6.0.0-cp315-cp315t-musllinux_1_2_ppc64le.whl (94.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ppc64le

xxtea-6.0.0-cp315-cp315t-musllinux_1_2_i686.whl (86.6 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

xxtea-6.0.0-cp315-cp315t-musllinux_1_2_armv7l.whl (89.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

xxtea-6.0.0-cp315-cp315t-musllinux_1_2_aarch64.whl (88.8 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

xxtea-6.0.0-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (82.1 kB view details)

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

xxtea-6.0.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (91.7 kB view details)

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

xxtea-6.0.0-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (98.7 kB view details)

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

xxtea-6.0.0-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (96.4 kB view details)

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

xxtea-6.0.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (87.8 kB view details)

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

xxtea-6.0.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (91.7 kB view details)

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

xxtea-6.0.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (85.6 kB view details)

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

xxtea-6.0.0-cp315-cp315t-macosx_11_0_arm64.whl (15.4 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

xxtea-6.0.0-cp315-cp315t-macosx_10_15_x86_64.whl (15.6 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

xxtea-6.0.0-cp315-cp315-win_arm64.whl (16.4 kB view details)

Uploaded CPython 3.15Windows ARM64

xxtea-6.0.0-cp315-cp315-win_amd64.whl (17.6 kB view details)

Uploaded CPython 3.15Windows x86-64

xxtea-6.0.0-cp315-cp315-win32.whl (16.2 kB view details)

Uploaded CPython 3.15Windows x86

xxtea-6.0.0-cp315-cp315-pyemscripten_2026_5_wasm32.whl (10.2 kB view details)

Uploaded CPython 3.15PyEmscripten 2026.5 wasm32

xxtea-6.0.0-cp315-cp315-musllinux_1_2_x86_64.whl (78.4 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

xxtea-6.0.0-cp315-cp315-musllinux_1_2_s390x.whl (78.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ s390x

xxtea-6.0.0-cp315-cp315-musllinux_1_2_riscv64.whl (70.3 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

xxtea-6.0.0-cp315-cp315-musllinux_1_2_ppc64le.whl (81.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ppc64le

xxtea-6.0.0-cp315-cp315-musllinux_1_2_i686.whl (75.7 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

xxtea-6.0.0-cp315-cp315-musllinux_1_2_armv7l.whl (76.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

xxtea-6.0.0-cp315-cp315-musllinux_1_2_aarch64.whl (76.0 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

xxtea-6.0.0-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (70.3 kB view details)

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

xxtea-6.0.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (79.5 kB view details)

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

xxtea-6.0.0-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (85.4 kB view details)

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

xxtea-6.0.0-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (83.5 kB view details)

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

xxtea-6.0.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (79.7 kB view details)

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

xxtea-6.0.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (77.9 kB view details)

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

xxtea-6.0.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (74.6 kB view details)

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

xxtea-6.0.0-cp315-cp315-macosx_11_0_arm64.whl (15.1 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

xxtea-6.0.0-cp315-cp315-macosx_10_15_x86_64.whl (15.3 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

xxtea-6.0.0-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl (14.8 kB view details)

Uploaded CPython 3.15iOS 13.0+ x86-64 Simulator

xxtea-6.0.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl (14.9 kB view details)

Uploaded CPython 3.15iOS 13.0+ ARM64 Simulator

xxtea-6.0.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl (14.6 kB view details)

Uploaded CPython 3.15iOS 13.0+ ARM64 Device

xxtea-6.0.0-cp315-cp315-android_24_x86_64.whl (16.2 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.15

xxtea-6.0.0-cp315-cp315-android_24_arm64_v8a.whl (15.9 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.15

xxtea-6.0.0-cp314-cp314t-win_arm64.whl (16.7 kB view details)

Uploaded CPython 3.14tWindows ARM64

xxtea-6.0.0-cp314-cp314t-win_amd64.whl (18.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

xxtea-6.0.0-cp314-cp314t-win32.whl (16.7 kB view details)

Uploaded CPython 3.14tWindows x86

xxtea-6.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl (91.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxtea-6.0.0-cp314-cp314t-musllinux_1_2_s390x.whl (90.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxtea-6.0.0-cp314-cp314t-musllinux_1_2_riscv64.whl (80.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxtea-6.0.0-cp314-cp314t-musllinux_1_2_ppc64le.whl (94.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxtea-6.0.0-cp314-cp314t-musllinux_1_2_i686.whl (86.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxtea-6.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl (88.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxtea-6.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl (89.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxtea-6.0.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (82.2 kB view details)

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

xxtea-6.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (93.5 kB view details)

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

xxtea-6.0.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (99.2 kB view details)

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

xxtea-6.0.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (96.3 kB view details)

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

xxtea-6.0.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (89.1 kB view details)

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

xxtea-6.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (92.6 kB view details)

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

xxtea-6.0.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (85.6 kB view details)

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

xxtea-6.0.0-cp314-cp314t-macosx_11_0_arm64.whl (15.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xxtea-6.0.0-cp314-cp314t-macosx_10_15_x86_64.whl (15.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

xxtea-6.0.0-cp314-cp314-win_arm64.whl (16.4 kB view details)

Uploaded CPython 3.14Windows ARM64

xxtea-6.0.0-cp314-cp314-win_amd64.whl (17.6 kB view details)

Uploaded CPython 3.14Windows x86-64

xxtea-6.0.0-cp314-cp314-win32.whl (16.2 kB view details)

Uploaded CPython 3.14Windows x86

xxtea-6.0.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl (10.2 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

xxtea-6.0.0-cp314-cp314-musllinux_1_2_x86_64.whl (78.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxtea-6.0.0-cp314-cp314-musllinux_1_2_s390x.whl (78.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxtea-6.0.0-cp314-cp314-musllinux_1_2_riscv64.whl (68.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxtea-6.0.0-cp314-cp314-musllinux_1_2_ppc64le.whl (81.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxtea-6.0.0-cp314-cp314-musllinux_1_2_i686.whl (74.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xxtea-6.0.0-cp314-cp314-musllinux_1_2_armv7l.whl (75.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxtea-6.0.0-cp314-cp314-musllinux_1_2_aarch64.whl (75.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxtea-6.0.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (69.2 kB view details)

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

xxtea-6.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (78.9 kB view details)

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

xxtea-6.0.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (85.1 kB view details)

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

xxtea-6.0.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (83.1 kB view details)

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

xxtea-6.0.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (80.2 kB view details)

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

xxtea-6.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (77.5 kB view details)

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

xxtea-6.0.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (73.0 kB view details)

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

xxtea-6.0.0-cp314-cp314-macosx_11_0_arm64.whl (15.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xxtea-6.0.0-cp314-cp314-macosx_10_15_x86_64.whl (15.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

xxtea-6.0.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (14.8 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

xxtea-6.0.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (14.9 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

xxtea-6.0.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl (14.6 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxtea-6.0.0-cp314-cp314-android_24_x86_64.whl (16.2 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

xxtea-6.0.0-cp314-cp314-android_24_arm64_v8a.whl (15.9 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

xxtea-6.0.0-cp313-cp313-win_arm64.whl (16.0 kB view details)

Uploaded CPython 3.13Windows ARM64

xxtea-6.0.0-cp313-cp313-win_amd64.whl (17.1 kB view details)

Uploaded CPython 3.13Windows x86-64

xxtea-6.0.0-cp313-cp313-win32.whl (15.8 kB view details)

Uploaded CPython 3.13Windows x86

xxtea-6.0.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl (10.2 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

xxtea-6.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (77.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxtea-6.0.0-cp313-cp313-musllinux_1_2_s390x.whl (77.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxtea-6.0.0-cp313-cp313-musllinux_1_2_riscv64.whl (68.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxtea-6.0.0-cp313-cp313-musllinux_1_2_ppc64le.whl (81.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxtea-6.0.0-cp313-cp313-musllinux_1_2_i686.whl (73.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxtea-6.0.0-cp313-cp313-musllinux_1_2_armv7l.whl (75.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxtea-6.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (75.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxtea-6.0.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (69.2 kB view details)

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

xxtea-6.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (78.8 kB view details)

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

xxtea-6.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (84.4 kB view details)

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

xxtea-6.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (82.9 kB view details)

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

xxtea-6.0.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (79.8 kB view details)

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

xxtea-6.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (77.3 kB view details)

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

xxtea-6.0.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (72.9 kB view details)

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

xxtea-6.0.0-cp313-cp313-macosx_11_0_arm64.whl (15.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xxtea-6.0.0-cp313-cp313-macosx_10_13_x86_64.whl (15.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

xxtea-6.0.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (14.8 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

xxtea-6.0.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (14.9 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

xxtea-6.0.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl (14.6 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxtea-6.0.0-cp313-cp313-android_24_x86_64.whl (16.2 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.13

xxtea-6.0.0-cp313-cp313-android_24_arm64_v8a.whl (15.9 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

xxtea-6.0.0-cp312-cp312-win_arm64.whl (16.0 kB view details)

Uploaded CPython 3.12Windows ARM64

xxtea-6.0.0-cp312-cp312-win_amd64.whl (17.1 kB view details)

Uploaded CPython 3.12Windows x86-64

xxtea-6.0.0-cp312-cp312-win32.whl (15.8 kB view details)

Uploaded CPython 3.12Windows x86

xxtea-6.0.0-cp312-cp312-pyemscripten_2024_0_wasm32.whl (10.2 kB view details)

Uploaded CPython 3.12PyEmscripten 2024.0 wasm32

xxtea-6.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (77.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xxtea-6.0.0-cp312-cp312-musllinux_1_2_s390x.whl (77.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxtea-6.0.0-cp312-cp312-musllinux_1_2_riscv64.whl (68.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxtea-6.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl (81.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxtea-6.0.0-cp312-cp312-musllinux_1_2_i686.whl (73.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxtea-6.0.0-cp312-cp312-musllinux_1_2_armv7l.whl (75.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxtea-6.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (75.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxtea-6.0.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (69.1 kB view details)

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

xxtea-6.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (78.8 kB view details)

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

xxtea-6.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (84.3 kB view details)

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

xxtea-6.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (82.8 kB view details)

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

xxtea-6.0.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (80.0 kB view details)

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

xxtea-6.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (77.2 kB view details)

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

xxtea-6.0.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (72.8 kB view details)

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

xxtea-6.0.0-cp312-cp312-macosx_11_0_arm64.whl (15.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xxtea-6.0.0-cp312-cp312-macosx_10_13_x86_64.whl (15.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

xxtea-6.0.0-cp311-cp311-win_arm64.whl (15.9 kB view details)

Uploaded CPython 3.11Windows ARM64

xxtea-6.0.0-cp311-cp311-win_amd64.whl (17.1 kB view details)

Uploaded CPython 3.11Windows x86-64

xxtea-6.0.0-cp311-cp311-win32.whl (15.6 kB view details)

Uploaded CPython 3.11Windows x86

xxtea-6.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (76.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxtea-6.0.0-cp311-cp311-musllinux_1_2_s390x.whl (76.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxtea-6.0.0-cp311-cp311-musllinux_1_2_riscv64.whl (66.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxtea-6.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl (80.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxtea-6.0.0-cp311-cp311-musllinux_1_2_i686.whl (72.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxtea-6.0.0-cp311-cp311-musllinux_1_2_armv7l.whl (73.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxtea-6.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (73.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxtea-6.0.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (67.9 kB view details)

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

xxtea-6.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (77.4 kB view details)

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

xxtea-6.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (83.1 kB view details)

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

xxtea-6.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (81.6 kB view details)

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

xxtea-6.0.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (79.0 kB view details)

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

xxtea-6.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (75.7 kB view details)

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

xxtea-6.0.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (71.1 kB view details)

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

xxtea-6.0.0-cp311-cp311-macosx_11_0_arm64.whl (14.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xxtea-6.0.0-cp311-cp311-macosx_10_9_x86_64.whl (14.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

xxtea-6.0.0-cp310-cp310-win_arm64.whl (16.0 kB view details)

Uploaded CPython 3.10Windows ARM64

xxtea-6.0.0-cp310-cp310-win_amd64.whl (17.4 kB view details)

Uploaded CPython 3.10Windows x86-64

xxtea-6.0.0-cp310-cp310-win32.whl (15.9 kB view details)

Uploaded CPython 3.10Windows x86

xxtea-6.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (75.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxtea-6.0.0-cp310-cp310-musllinux_1_2_s390x.whl (76.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxtea-6.0.0-cp310-cp310-musllinux_1_2_riscv64.whl (67.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxtea-6.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl (79.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxtea-6.0.0-cp310-cp310-musllinux_1_2_i686.whl (72.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xxtea-6.0.0-cp310-cp310-musllinux_1_2_armv7l.whl (73.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxtea-6.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (73.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxtea-6.0.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (68.6 kB view details)

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

xxtea-6.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (76.9 kB view details)

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

xxtea-6.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (83.1 kB view details)

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

xxtea-6.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (81.7 kB view details)

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

xxtea-6.0.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (79.9 kB view details)

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

xxtea-6.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (75.1 kB view details)

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

xxtea-6.0.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (70.8 kB view details)

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

xxtea-6.0.0-cp310-cp310-macosx_11_0_arm64.whl (15.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xxtea-6.0.0-cp310-cp310-macosx_10_9_x86_64.whl (15.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

xxtea-6.0.0-cp39-cp39-win_arm64.whl (16.0 kB view details)

Uploaded CPython 3.9Windows ARM64

xxtea-6.0.0-cp39-cp39-win_amd64.whl (17.4 kB view details)

Uploaded CPython 3.9Windows x86-64

xxtea-6.0.0-cp39-cp39-win32.whl (15.9 kB view details)

Uploaded CPython 3.9Windows x86

xxtea-6.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (75.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxtea-6.0.0-cp39-cp39-musllinux_1_2_s390x.whl (76.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxtea-6.0.0-cp39-cp39-musllinux_1_2_riscv64.whl (67.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxtea-6.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl (79.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxtea-6.0.0-cp39-cp39-musllinux_1_2_i686.whl (71.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxtea-6.0.0-cp39-cp39-musllinux_1_2_armv7l.whl (73.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxtea-6.0.0-cp39-cp39-musllinux_1_2_aarch64.whl (72.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxtea-6.0.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (68.4 kB view details)

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

xxtea-6.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (76.7 kB view details)

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

xxtea-6.0.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (82.9 kB view details)

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

xxtea-6.0.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (81.5 kB view details)

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

xxtea-6.0.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (79.7 kB view details)

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

xxtea-6.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (74.9 kB view details)

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

xxtea-6.0.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (70.6 kB view details)

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

xxtea-6.0.0-cp39-cp39-macosx_11_0_arm64.whl (15.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xxtea-6.0.0-cp39-cp39-macosx_10_9_x86_64.whl (15.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: xxtea-6.0.0.tar.gz
  • Upload date:
  • Size: 25.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0.tar.gz
Algorithm Hash digest
SHA256 5b178ae4cf5e63365e9492af0ecdd918a4ff3ae4a3aaedfd4eeb708210c3773d
MD5 f070d5bb731cb3f6260188c55b516849
BLAKE2b-256 a484d8a2b651bb22df322470347e73f23fb7ec5ee43a14498c8daac512f947b9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 408beefead0465f938bf1a08e7306975d826708d582391615d64efd8fe7c1ce5
MD5 f9451192de44c48bb776f07ed2103a44
BLAKE2b-256 dd2ff8e6e9ea93714b66af85cca1e56a9c90bc104d96ce05c8b1b462f70ea2c0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a1d98864e522be92efc11c51d730eb38b21da7fdf646b899be1bae2acbbcefde
MD5 3409ecd4ba1bb5012a6c3c20bcb86c1d
BLAKE2b-256 96259848792ec19b49948feed9587551af9301d60a3dd6319fe5f70f0dd92318

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b8174b33eca1fef6d6e673aa9884fc6eb7f0a04554455302e77f9fd483a1ef9f
MD5 6fa0c94ea633c35edeeef074801fe89b
BLAKE2b-256 c393c91bf8029342e9be71176313f9abf58eaa461169fb11690fee77caae15b1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 870420960fc0d959451b1e39f6da678e552674cc773663646c72ec4c9449ff3d
MD5 1527994a551f4a48455458f2b13eb915
BLAKE2b-256 132e07ced5fa36ad61119c0dc8c9a0e781eb1777edaae34812a353f5656c3763

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ae8bdd93bf184d85df1bffeecde6ee3ee57b8e14de56c9a0a151b79f662d051
MD5 e385f33356c9e8c69ed9d1c95f36ef43
BLAKE2b-256 0afd97edd5d5bf51b3a8ee7a451d0ee9baf70d5e477581de4b1f6cef1dca5fe6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2b9ec3c56edd446eedc34af774f29d4e87557196345a7d4eee6dc36624265d00
MD5 52493fc2fef7205771528e7342db40f3
BLAKE2b-256 ec7131a211232ef66ef523c8cc9316adad61780a14e6cc21496f775100d2554d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0e71bf79b24855acf3627413bd2ec861d714b59d7852edb8f633530ba690b612
MD5 2f56c95a07e527c4b1370291abbd8674
BLAKE2b-256 0be05e3adb82860a676261f300f956351a5aaf5ab2613dc4c1034466bacd7666

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 27c37676b64a42db81b4add2c2db3c457e73b6f200f5525904a236aee0397706
MD5 986be7419a81bd95546dbb9e031ea5c5
BLAKE2b-256 f9e43101fdafa8ab52c39fdd0dca55abee5f5dd7ca17df13ac01d1a8c369c88a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.0.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0414b1bd73bc3b003007e64b1ad070e64451278a9b3cdc61f9f1e65fd514fbf3
MD5 3b887b2ca38bad91964bec946e26b91a
BLAKE2b-256 c2976f929395fff9f8e94c3c4975d5f9a4f0bc84739a15ee74f21227157022c9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 55563dc9bddf6d73ef80e197891d44fe28a0312893215ae1b7746a55e82cd082
MD5 8840c5db9d59c36e44962ae3c087bf57
BLAKE2b-256 2a37978e5a983b87e324c2ca41a342509d1256551a6828cd89ecdd1741b516d6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3c0cb5969c8cc58f43892e3b58ef09dcec1bdfc20ea0b20b86f90874f05bed8
MD5 e82db929f38a5014dbc7e605ee9df5ee
BLAKE2b-256 81483d72f2769898b6425689a3b9721b55c2042060bda58952bfb9bb5fef64b0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 532b5cfca8175c1fc03f5ebde7d2975f325470fb1a9949a0c56de084a5bac15e
MD5 e86d6683ff8a9a1feefc6a58227ee975
BLAKE2b-256 1b2e55f24c962d6e0a15b140a23d566150baf331213a1bc1953520c8665491ca

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 429ae367de1d51986bc1f4dd66ff04956ee89e0476039df209d08b0cc181d23b
MD5 0f586ffec57cced5195a33e03cfbe61c
BLAKE2b-256 454d5bda1a95bfb05f26b81b6889d6bb00bf099cb36271620b662dd608c2769f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fc2a1a1e19e59b2c8aa0a299a46d4120b1674047ce74785d39d9ac6456ea1913
MD5 cb0c234462c6a6a01327a32b1fa74404
BLAKE2b-256 085aa568f7caaf05bef8c15a307af298104016827315c4eec05b2256b9813262

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.0.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 53223b8a9b547f7a39518ed0bdb03f287521b4dc6f828841a93bfdc448f9b5f5
MD5 f2171943e5dfa4df946a7aec898e5cbe
BLAKE2b-256 0e1ac12e6317eb9975423fc4cbb63c87023a316cb3ee79cfe7e8d923576b3249

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 78625643b730f16d0768bad940e92f4d39d0c06951aa34285477c70a707204c3
MD5 622cc36ed133e5f8b3cae357de05322c
BLAKE2b-256 0c491b95b4da791bbde6a176ba2a972ace48195f543b08038ee4fc59a402ecf9

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6629a9d0e1285c97b01cbf20d774d672e78cea0d54faae41a8f4bb8fc15285a9
MD5 a0a6e621eafb74e2ccc96f65ba126f83
BLAKE2b-256 ce753631d13e0b01aa6294e835885bfb8c0cfbca65cf8d013c46bc841387bf1a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6fe84689e660b183e1348eba2bdb3ce82f4a0f472bf10a1211876be42f0359ae
MD5 4218aa26d326755617fd55e6fcb88e78
BLAKE2b-256 b48ba84b164ce2dbedbb59430995fbbc33fcc35f92cb0ae9d6a5c1153a684e8d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 e0d309e4604f984173cb77a024c30b2a86a05ea0f695b536ed3e5b7d2c2f6b86
MD5 14ea6b36ec90b247ed0d0bc2cb8ac7d1
BLAKE2b-256 2ff4a8d885a7340344e9eb94d8068d8be49378b02ff92950b7879fd49af58059

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7679841a85a22b4b5e26f202f780eb9a64323564f48aa741ab7c9a359fb777b3
MD5 7ad57b930da6168890f41e1edf649135
BLAKE2b-256 7e2e2387b9a53fd611e8d77af77bf547b85f7f740d4e15e5adee4a6fa1c2d5f3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3a5cfeca00b73ae01cc2317c23dc05b7106930240c8571dc3147d69c0ea9868f
MD5 31db2da7d3b419720d1380b443f9102c
BLAKE2b-256 3477e90e5bb94fe98cb23bec5069a7e892ebe067b6393396e6429c2c271afb89

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ae2dfb079f661bf8cffc358c7e52dcc3856a8c3722dbd52b6ab686b20b46772
MD5 6dda9a7b15fe7a267a60d420e4a69df9
BLAKE2b-256 65be94e9e2185c5fd32360d5938ca476482aa9359e70aeb6fbc66bc52d985b29

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 994b2053e13fef6f92a71a8d8d6ae5c4985f76a524af2197c0589f8f3f7ea53e
MD5 eee34f8e28cb60581e1417e58e5bfcfe
BLAKE2b-256 51a6e1e12a993495e63b738cadfa8f4773fb773b4ada2c16928068952ddd6822

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp315-cp315t-win_arm64.whl.

File metadata

  • Download URL: xxtea-6.0.0-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 16.7 kB
  • Tags: CPython 3.15t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 bf55543117bf8b7bd3eb3348ebfe3a1779aafa0e6dc65e5e9bb258820a18432e
MD5 83056a3d202e31475a053e8bbc2c7ba6
BLAKE2b-256 e6cb5f83956d6003eb94781f5691e3a52c66fb79e159095339f9d0484f9b3241

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: xxtea-6.0.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 18.1 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 32404181ff9d6835b0e78fbb247c27dbcc4de54f63242e1f2bd2d9da3a5fae19
MD5 b5de8f340f2c2c21209eb1433f4cf96b
BLAKE2b-256 287b542dc475d8731ea22ae2c1b6ca936c1559b0b7fd6eb0a7b7010df373edc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-win32.whl.

File metadata

  • Download URL: xxtea-6.0.0-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 16.7 kB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 2df399f827d83084e823204d29216ea5cc0da8757a0f5214cecd9552a284f3b9
MD5 660b248ad27a678898c6e35d0ecdf975
BLAKE2b-256 0e8340b666374bde16a8ab74a7889ca273f5fed50cb9ea969debf931ab213c9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08c755037841bb607095ba7721d8aee3cf1b555b1a20351f41159df90d306c59
MD5 c5663cf7d12cbb3cf219d11112e23347
BLAKE2b-256 ff8440306a0df9853f4210413c1ed3c19618716752101830e02046254ea5dbb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 24077ca2127810bf24586c5c86e1baeffb2b1da0fcaf703e0a70215a5be3bd91
MD5 2364c3015804d95ed8a8ae4bc9283bb2
BLAKE2b-256 13ee611f1d99b94c9d055f5f8cc807afa13f6e6c8666f285f6ee6fc30621c6fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 14be77fd9f5febb7cfb6a457c49dbdc3fca3e825977576dd270bdeec89aa6855
MD5 93f219c5d2082fa871aa613ce247470f
BLAKE2b-256 0156d893c0468f7d399614faec6e6f9f0823eea72ac96ede227ddc19d455a817

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bb4f3b0d95f340549c685b10b6edc6e90dc91ac7881a5b1a18e49c3f0ce11c51
MD5 143678b68eb1a79d028dd7798bbb6d3b
BLAKE2b-256 a7504e4cd3f35d0678d1ac05f18ef5390c1dbf2780daed81d75ad228a6018230

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2338a4c227d19f536649cf5aeb276f171b57054ee2f8143e5b797c82417012f5
MD5 7e059fbb1e6a31efa3b34717563a1f89
BLAKE2b-256 54017a83020341c7d2006c8ea92ec757e2ba964cc5ff9a881255dd3f17b18b18

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0bd8453d6c98cd1af3120801972ba118eddb395f0d0cdc25a8e364e0662e3088
MD5 297f442b066921fc2b8f2a6bbdecd012
BLAKE2b-256 d6d66dd7b0eba802f357fff71a330666bff6d1435c6b06e7cf79cf1b746c2b1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 efbac4eb06c7cc8afeacf8466f8995f04215bd2037b741802490a9d96a4f7495
MD5 c91dcd5a8e65887b9cb525eba85da3ff
BLAKE2b-256 5c2a3fc3694ff96b985d07edb63668e11e99fe9b636a5f76568cd0d7434c941d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c82c38ea503cfedcdfb555cde6acd56b12b86c74bd5b1cbfd3b0d3bc632668b5
MD5 25f3b5a483b4b6a84e876858193f3a6b
BLAKE2b-256 09bcfddfa9e412dc95356ca430a87ddfec52220125d37c6fbfef7783bee6debc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3ac6d01cc0cb7c718a046278d0dfd1e1029d66c6a80936958d9897bb6884c4f8
MD5 4e48725ef57471b5c0dc2a3ea0478de4
BLAKE2b-256 33c856190cd010aaed1ea1bb692e8fde5fab48430ab26352923a21330a157922

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 98084ba3b8682b174c906aba7f094c08b8e08665b5aa5b1cd1991256d84a61ab
MD5 bbb25ed1327258679c81f64580103be3
BLAKE2b-256 3151444eeb06b281f4554a7c510b67bddaacafbfcd99f229e7857b503ad80258

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 728a387a0a54ea92f8933428807c55f9ae1503a3a76a5d412c0930ab57e35398
MD5 df3d21c0cd7b91da037709cadef1d6b5
BLAKE2b-256 ecf96b6233a389a9dbc5fefd25687de79ba8d0e3d7192780dba46924ee5ec16c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 33de92d46e57bdc6fff3ec27d563b03ac359f022f5665e55fbf1aa0e5f31b117
MD5 e6b7d1cf16025522ea6beff0c6de569a
BLAKE2b-256 29a0cfa404adadf1614586931f75e53e1ad2966ce755b553ff4ee16072fea5f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e35d712be72fcf6dbcb4479299726056766d444cb18349e10fe544bd927c5720
MD5 a653cbbe23fc5b0731e4d2a56dfa3dd4
BLAKE2b-256 2a781501fde26fd7d914b7fad40f542d6b5e7693ec74770105fd7e6a26e60f4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ceb28b1551f05d5f45f92e97016f2a8d42d6c7669991849175c3c20709dddcb3
MD5 9e1c258e98378c9b827bcfec6d468e16
BLAKE2b-256 1a4c9922700f58095e22c518c4fea197c4420c37a3c1559d601ff378f32ba5f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d930295b80d723c52ce0472518dd73c55a0742ea358058d0f323cfb822f7c081
MD5 b7476e00795c2459a783a3a78bcdf853
BLAKE2b-256 6b3f8b6713c88cf8361e59838e14389b632dcec7d4e965a25dd3f121d96bf5cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a8b3737d2d51a5d553eaf5fa59e1f19ba08db14ce68358d518d93d2681c120ad
MD5 549440c775a6023088106c31ff6def07
BLAKE2b-256 42ee233005c8742046944c2ce827034031890dbe6550827370ee9305ac453e08

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315t-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-6.0.0-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: xxtea-6.0.0-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 16.4 kB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 bc52f4f54614819239ca075281b90fa6bf8174cbc334ec4f84dd4a61fd1eb811
MD5 01db07018cb186c2df130d2002e847b4
BLAKE2b-256 4ce2bb4804330018e2d188c8c49c914bddbdaf6db9af24f209fd6b9a4230dd3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315-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-6.0.0-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: xxtea-6.0.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 17.6 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 eedef759006084c7d8365535c2738a89ffc6e5a195569e4c5b77befa83e9ef2a
MD5 a51cb38c487a2d1edec8e09f75f2c8e0
BLAKE2b-256 4312a215069fa78dc75a926e371760951c20e0457aa80f35ec706ebbb6d9829c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315-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-6.0.0-cp315-cp315-win32.whl.

File metadata

  • Download URL: xxtea-6.0.0-cp315-cp315-win32.whl
  • Upload date:
  • Size: 16.2 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 68300c62c7ac70ec6c622179d1ec00cc1982bb39c968f023a6fc312547c0549e
MD5 f62e92b84189e219f3f96e75057c389c
BLAKE2b-256 1b5f1599e595973c03fa26810d6eb98303206b53da92ce7815074db4b4574249

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315-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-6.0.0-cp315-cp315-pyemscripten_2026_5_wasm32.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315-pyemscripten_2026_5_wasm32.whl
Algorithm Hash digest
SHA256 9c507a70770d0428282f3a5cbfad64bb2a4e836095c57d0c134670d1e8519795
MD5 4245237e58fb8d45308f9087941b87bd
BLAKE2b-256 2c30e5b8ee595daf70d1e6bdda7aa6436d115686ee334202d5cf02d1b0a7631b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315-pyemscripten_2026_5_wasm32.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66dd9a1686aae81d247466a8a97590eeabdc5ea400455907cc3d5282eee04720
MD5 cb77fe0aaadef57abd9eedbaf3b30138
BLAKE2b-256 b8e84ee594fbfd102fb43bb2ebadce35c356b81d9b3ee4580670549fbde195ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315-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-6.0.0-cp315-cp315-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f699bf8230bc93698be162630a44cb86bbfb40414a41a06b10bea7d0486e5b70
MD5 2abe1e89a00dae05716dbfadfd93eb02
BLAKE2b-256 44145bbc8614950d7c8378d03a17fc514557ce393c1b49143c88003552283748

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315-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-6.0.0-cp315-cp315-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 643a97d74177663e83cbb8fa521a8ef8305b786e24ce54ebdd16e4b9278a7616
MD5 5c3e54b24f724f2bbeb8ecc54afb3d31
BLAKE2b-256 755f22fadee9bf95afa56300c88cb8b7dd0c454db5b42be94781f560e823b4b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315-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-6.0.0-cp315-cp315-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bd3df80d02e7cfef628a07ea12306a44e3bb638d46601b5400053b0b77b1cc00
MD5 a85c1d8ad54b7bdc83b6556bfc511396
BLAKE2b-256 b5689b3836a5bf19056bbc3d32f0d6e471ff515703b2cb8313de4e345bc67382

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315-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-6.0.0-cp315-cp315-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c5a19e9ad31bdf199e2d73cd023f83c242f1291f1512e5e7bc25b68e91d3c2c3
MD5 267023f4d176e2ac4cd3569db1f5115b
BLAKE2b-256 d36aef5f7244d6805a9ec34c85339bf890579ae0f977ae74d45b00fab40fb8ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315-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-6.0.0-cp315-cp315-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ec9a4f4facee8df62dafa87fcc1acf443c33ac1d0c442e1ce6baa322671eae00
MD5 604e1549d8c7a34a08f566bec3725023
BLAKE2b-256 0188f28139583b1a7714f6326fee81027981d5d800e0aaea943e74d38aa15194

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315-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-6.0.0-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 988d693825ceea38326baaed25d457fd9b7610809f8a4d5735ad4cc4eab6d9bf
MD5 9f43b6d954e56f50deed84102b13d281
BLAKE2b-256 9b4ee66a1223c30a7d7f40aaf85511c87dbba1ba8f1da24f18771169453d2c51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 6786fead73f690dcf5c5199f9a922b21e7ccfb371c57607c6b8567a2d8a3e1f9
MD5 aebc66c11471ea326950b13d8dc54230
BLAKE2b-256 c45089275e87cc79651a80509bfb3706a39a5926806e5d73e1665bee740e8b0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315-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-6.0.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 da741cae7fb20886a7868185e2e7f979673128fc835b5a55f7efdb3c52de67dd
MD5 ebe9c00debb6861bffeb5813f38ed179
BLAKE2b-256 54bcab5687c62c64cd19311efa86231ed0934b37c355495b7e31b3d8f03ac932

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 99bbf0d2c8bb6abff5534a00debbdce5538d2508d62ebad0e674ca80f8de5c42
MD5 28f3f1896819c9e0828019f745a3a073
BLAKE2b-256 f58b9321b3764a951ef75e870071b4c442050778d6068178893caa22a3726a3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7e665d5d04c01afa6a41c0dff4905f34b5f3e24141232204fc47072d8dec510b
MD5 01291f0f441018548a7fb22d796574cc
BLAKE2b-256 d953fb2b6ce3497d9b2cd28bf3d36f36291e75c137c1d6b8550458bddabb0ff8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 69dd35442e8ce17a3e4651d55797510305f701f4ec6c2f6b1f7f5e45d6c2752c
MD5 63ed92792f36055721e4e0e76714efeb
BLAKE2b-256 fa278ba9a49559478cd37b599436053dbd79368883013f545bcef44521779956

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 99449b6ebe1cf309fae569956d74fe2ad77cc334718a8b4345178dd663b3cac2
MD5 88905da188b7ba6400e04b0439fcf828
BLAKE2b-256 725ec858c47207fec98ebeb3d0051f17214e571baadd425863c5eaac0cf2753c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 78e7a8ddf86b1e2ca409914e69be472f57765e7dd498c858bb86ed9017a921bd
MD5 cde63bd7db53745bca4ced88c0d6ed4e
BLAKE2b-256 db325fd5d105d77428e8a5da243a7d9bed686ded31af3f38fc85542989a8c3c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315-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-6.0.0-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1112a63968e7e8770ea569bbba3d2a94681b0b9d31ccf53299a3bd9665d235b9
MD5 0b99399881e868627d48eacfa5e77b43
BLAKE2b-256 b50d97c683cfc43ed07c8f4674c31f7b745cfa75e388b479d1d91951c3683f40

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315-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-6.0.0-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 11fe52f16f97bf0a2f8038bc919f613d23d9cb7416e19b113d50f6ed3a13e51e
MD5 3c1fc8c5cf1f946c6fce3e124c0a2833
BLAKE2b-256 e6d3a8569eb22a30bab4420c59c3292a05d3b2642b7a31327e4012931dec8a77

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315-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-6.0.0-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 0bca5ae2855924c15263113add6545adafe4442984138b51d8bffaa7170a3f07
MD5 3a28181186d2a84dbf819c63a9a2be1c
BLAKE2b-256 bfd531ccdee03a32ad2a2468ef69682914a12e924c84d88270e1a9be7bad8709

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315-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-6.0.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 84daddfdb896379c2e9d4fa7b85f145099846a5591ac166e0d2b2d5e158226b4
MD5 992bd47e5d66f60c0d72d20722634eb5
BLAKE2b-256 f90d802776c0fd17caa22eed466f3498b2f97db4d5ce50777e6e77eca15ca826

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315-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-6.0.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 5c8e7fd9367b1bf1a4182c105e98cce9d5d930db21519a4534f4555b2bf95d2a
MD5 0fd526b22ad239a1a8784ec56612a9e9
BLAKE2b-256 d174ba7d365fda54ee6ae82b3c1235385c07475c36edd492617486a03847acd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315-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-6.0.0-cp315-cp315-android_24_x86_64.whl.

File metadata

  • Download URL: xxtea-6.0.0-cp315-cp315-android_24_x86_64.whl
  • Upload date:
  • Size: 16.2 kB
  • Tags: Android API level 24+ x86-64, CPython 3.15
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp315-cp315-android_24_x86_64.whl
Algorithm Hash digest
SHA256 eeef25033f9c8d14c4f0fe3de7c638db1f00cba3a7130f1f1ee0351e6e4248f0
MD5 075aff73cb60a972f715a48cb824b500
BLAKE2b-256 4c2cb0f4524eda02cb0a4896a29de9d6bf5de2130fbd456eb8b728dedf3abae7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp315-cp315-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-6.0.0-cp315-cp315-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp315-cp315-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 77c3b970bf9c74ca523521fb36ba666ff260038a61f439e841d54bf6c18dc8b8
MD5 96c763c3f538783ab728a951d84f53d1
BLAKE2b-256 1f88f7b0157fc68f6b0ac198754e9e68c9f811d2a9433128b83e2e375759aecf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.0.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 16.7 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 04d71b59cd753d3868e590eb4b15cee4fa61e04b313289b7398d5932b8af1491
MD5 577339c7bb91640da303b7f750c9bed2
BLAKE2b-256 63ea84d9fb1a9f2192a60b7d6cdee8992f311760e138838b405c89a341a053a5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-6.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 1e58e79875b3a3813b05c4e3187003bf3560cad0a79f4a314110479c0cb66562
MD5 7d4afe8ff733292afa5d078aff2e638a
BLAKE2b-256 6d7722d1e400a0f4c2a20282d577cae883aa9e2a9aaf9e8fa86ccbf0a4dcd14b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-6.0.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 16.7 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 4abc877c1f3c00ef292fb0494166ff90a7bd454ac3206407ea1dc3f7ca547726
MD5 599397630f7cdcc9a6294da9cfe71022
BLAKE2b-256 da8dad9311fb937955d51e63e569e43eb2c92475f33be3ed6b852ac00f31affe

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9db404f13dc9aa65e8520171a7cd1f7e2c73b754aaae760ba4079cea3be130b1
MD5 61385793c16e0ef5564848667662e89c
BLAKE2b-256 2b42f23e0fdd2c84ee66280683d3a5d79cf15a21fff1f4c01672268331920a30

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 89dd2938ed7de05642e54f838307871d97196b2ce2995f12c19bd37392ac788d
MD5 3c4a789bf7fff741efe5248af02b520d
BLAKE2b-256 3515e7ac39f143ae9159cfae9e242d43cc7f4921e0b290c0642e5852cda646ea

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7bd3c06b6b4896a9ea5421873b71470f0bb643bc09fa3a809610b32702f1cf40
MD5 ed7b34db5ec04a5586f4f520c0e1767a
BLAKE2b-256 1fc3bb66ded57b741dbe8b7f9d64189997a313a20d995e7475885ef9e4bc93ef

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ff61f226d24d3e5a9311207cbd6849be90839d01d88df11d9874d033cbc26cad
MD5 be080f0a04453dd1f6e97ccbe8913533
BLAKE2b-256 dca32d7c53a4dcef7ee6a28fa487b722933508cc5f646af4e0089f312a208036

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e9a925e67174af26a69b27065228b2f981a917069ce16cec1c52b5bf2a162494
MD5 e552e6fa0de28ea11a391d14fd5f8990
BLAKE2b-256 92e5b71c8de2a672a396bd3724306b829980b7a63c70be8a7890b5a94ef20eda

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 352dc135d31ceedaee7a975577b4ebd2f123ee810c3e7f549d1c78616f703538
MD5 842472317f425588e2e83672d23ea7e0
BLAKE2b-256 f64dd0085fb1053bb331636474c1351cd36dbce6df94d9191b0236c7b1a29d3b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a13c150992f4068a71654f613e621167e1432a607875780684145236cddeaf4
MD5 3da9c6cdae3364840ecf03cfffc9a5af
BLAKE2b-256 0fb0aa8cdcc95c3ede50ddefe4a4bc5752d5e8d21f3170f1b69a5ac7c785d62d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a68dfa37dbf6841ef982df6c9fad412a80576c3ecaad67157ecfd9e28ca917f1
MD5 1e129fb84de035b3034aa8986a3ed148
BLAKE2b-256 4ec82063c08655435792c6a3ce7f740848e40a092d1d03306f91cbb93f28b710

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 73dee58b77b612912c81cfb4ef78ccd4f70c76285c25e0f2202705f8ce807736
MD5 73c4da88c089494d78da919d5d56bb64
BLAKE2b-256 9a36bd0f11c5128c6d7595e4eecd7760ab6d641185df91f40e4c4e8628f335bd

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3ceacf2709c838e1edbd42e8f892d1be787a16aa532f03b748f6f5ee7714130a
MD5 0613e5981a243d7749c62a691ea96bb7
BLAKE2b-256 5a422381fcfb3e6e202f255c9de044ad083cc159c2271794920963bf777e786a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3e28cf9aef138ed2ac696cbf835877c900e1d951efa9da93cc6a0731b134852e
MD5 31826d03ea8e8bcdb2f55586d0278fbc
BLAKE2b-256 e294e04a4bb5374ff945eb52031e86491925e9fac13ae184475e05764f56095f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f4f54a8a72ed5cc45f5e907bf9b160e3ebc73279d469d42f61d9a0e990878408
MD5 e6751fa7e4f0abc46e65ef2ef9324895
BLAKE2b-256 96faa418f721f0b88217a5b2a82c0be396ea80f776dc3d66001b51a5a7ab137d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 60e45f0d13664a4fbc47e2bdf3577edf7101e3c1fc3c5c1f3b92b9c1fa964c1d
MD5 20fb221c604040267f356c3fcf5f4ff4
BLAKE2b-256 97f8f1a24106ae2f4aea784485501e61aadd0db7d2a855c6bc7b64720cfb984f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 190128423dbd63ba625b17aa132873d22a550291b2706b955f946b7f0c7aabf5
MD5 d6479a5b2d22a4eab6c3a89a4f7461c6
BLAKE2b-256 1a658888a5c3ece141fd3cc9db382c15a05ea2b100755380e3642870d82d73a1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd6553c1baf2c4a858f14e219d242d7971a7afa909e32f7211cfc2dfdc3f4acd
MD5 2e9703fc57c165325a0f9144f16baa5e
BLAKE2b-256 27c0c31ffd5a403adffc4e02c7fcd51d27df74d192a5862eb59d5348ab7adcb0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8ea53c749597664847ccfc0f31eb659597b14926015fabe4c8b2946017c86afb
MD5 30f1d875e016f02836e7c9ac40427986
BLAKE2b-256 ba813e28610d4035a9858b4257fed6f6954c495d6efbbe87825cc4570dda20dc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-6.0.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 16.4 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 187cd91c468fc57fba0bbb30f7c9b856fa34ada0972b09e882bd482943489601
MD5 ee146d7cabf43b6340de9a762554fcdf
BLAKE2b-256 8e368fb8a6c5e54ea8df98cbbeab88ac0f6e635f3bd05e4fece7ae6714c0373e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-6.0.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 17.6 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f2906494cfd3da6d3ff020c490fa8806a5366541bbf5c40d0e2a32abb5d46d2e
MD5 b1a5668ced0b477071eaf8da9f944273
BLAKE2b-256 c036505b699f258b4f338630bc629d3c8aa68b21b3b052ebfa57e87cd5529788

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-6.0.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 16.2 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 27d6237d917b3f148cd674b90cf668c53f93b72b05fbcb6f1d0933a4abfa501d
MD5 4b6401295592e8727e3d61171dcff45b
BLAKE2b-256 b5f41e5bf9c07f190dbbfa16be14e121d7bf2ea15e06758ca4dd6ad2eddb2fcc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 f758a2615cfcb760321ff050f6ee456b3c4fa2af0bdea4466f4296291ff37cfc
MD5 cebe73a11c27626327be294262e08075
BLAKE2b-256 22cd58cc69a0c5af73835e2c3d15f960f26f50535836a4669e92bc5b6e983e4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6c66144fb1e8ca11abecf40a125be8804acac2f420c2384e36cc29acb2204f6b
MD5 76a1e06f592f199b4be49db70b1e3711
BLAKE2b-256 460428e86e131adadc3ba0e486675a8c2e9cd8fee5ce7f95fc57ca489ed46f32

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b8d91b41cfbb167bd1d5e0a804f901d2b14c77437b41892f9d5004de54f59741
MD5 24d41f71e88a191f04e4661996a35ef2
BLAKE2b-256 794ad160bc0ec97637457f9dac263010c79ed564c3c3aac4946d6a5c6e177e19

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9eaf9de104942a6ecbf91141c8b0f465b9d1845d27d1c399fa2ca8ac2faec0a6
MD5 53cc3512aaa79556e6cf6d26340f1efd
BLAKE2b-256 751a270211c117bc7c340c2b85d2503ecd3487ac670f08ff189b81a1c0a2d21c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5f533af374c7f74fe40ded6c23644606bc99e4d888ebc0a601dc02b1333d176c
MD5 ad27f57f99a108c131d3152deda464b1
BLAKE2b-256 a54068adf4ab36312cb96af1440092d6a0945af5e76de8eaaeed9000402df886

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f9d538961d0bb3ddd827029b9e936aa21096a5d6e86e2a20433c48b200e653e5
MD5 3d9e2593e04ed8f03453499e98379574
BLAKE2b-256 5266aa5306eb9fa2769f10282267497e8f639e3243afe53f1ce38b7bb240f402

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 564e25e8e041c219553fdb11b7efab4986ea16ef85ffa342f87f5ba5da5f1641
MD5 ab1d5f27a2a4d95b5d0e05b5aa1e27d7
BLAKE2b-256 548e6f29875eac34c058fa59aa8512400932831af194335db248e62fa35750e6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ce3afc2c8379dc489dbd05fc862702bc81d9eed277580010180244117180ace
MD5 72a5142e2a3371ed3771e3f88417d60d
BLAKE2b-256 2b7466f33b779cd71c19d5ec1834098502800ef9084874fdb4fd8fcca13c4ca4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4e2d0e484c50159dedbe2847ee72e5cd902bb3ce6a6bebc404277ba9dfcb3429
MD5 b2df3fad2c193db7818b9a5d220e6368
BLAKE2b-256 a61ab5e6f71226ef41dac52c961d208540042369f2576913e11c500ef8133ee5

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b692299f4a446255fe1e5c29e5733a9fb23db225351e221c7adf04c983acb3e8
MD5 f62c21f1699b7fc613395cc0371431a0
BLAKE2b-256 4784923a58d2a29e782f33ed7951552f3b96fb5cc2ef20b37b415af407581a92

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 accc8c48ce2fb97c42ef0a8a3a1c345560293a143a92f1a58495c14c115f344a
MD5 3174e853bcbbc406afd87d0982cb5de4
BLAKE2b-256 a24e0af2749760ea6b8c82dd3616902265229149d37c71050ba598fc3e928bba

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 093eeef5170d5bc32f5eef68b90f452f9ba520e235d2e7469ecfdd3eb7015b06
MD5 8d919c0dc9f40c50cacb3ab5d241394f
BLAKE2b-256 d13b8fa9ed209bd58fe9c4d2a6f808f99033022682d2a31f3d4834c85adb6be2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c6ecaf077b4cc5d8eadb798506d56a2e9cef22faac8864f5ecca84f86ea64746
MD5 bcc6c02897c43929c8dfa7b047d8d377
BLAKE2b-256 099a3350d3192ac4645d4088dd7fb7a5472d5e672f66770a6b105994ee288208

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8ba5824ea8c7231220b2955d4192eaad59482ed7657e86261cc74cbf8cb22ecd
MD5 40815dc31a6f1541a225f013664d5a06
BLAKE2b-256 4c24908c3376619c431b9c91b0aa7fa95c8726bb6fa97bd1d5b439ca1a027ad6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c28bfa1128425e7c17df67d0d8f23e8ea48c71829f85900b510a12ecbc104fc3
MD5 3a789348833da51c8d43f51c36945403
BLAKE2b-256 5c557b6f393a1156151d442993d91a477fae74b294064f749d41283b81be9567

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ae06eb8cff4cbc91e0bed8fce7d9fa28e30f7baeb2be1f39d0e293dfc447964
MD5 04031f6d8e702ec06494a75a4e0b4097
BLAKE2b-256 541abfc89c70a13c71a2e0e75ebb3a90666b3587817cfe8815091a55b9d5cef8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 712acfefa48cd32a1e3f9862e4e566cb946edeb9fde1e9e0eaf60b3aee5703b1
MD5 fcdfd50d65298a87a6a678eda3b87c6d
BLAKE2b-256 67e35f4c6b429f7f57f8aa2c7007255a1c64d46aeb83c7fe23741128aba3b524

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 eb86a70c4e92e3a55ef7a79c18acd6f31b08c5c5eaf985993feda666cdd455af
MD5 a5cc3126b686f1cc1a55f7f2f672eb82
BLAKE2b-256 e0df1b320985f3796eb7e7677ffbd220afc7da348e46ce25aea456e3ac6e0d1e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 71ec654e8f627838988b81fd59c5a8fb44273f57ffe1e2b7633b167817646c20
MD5 d99129307ec875525494d8adde44febf
BLAKE2b-256 c8a182dbce5e207f25a2937eb0920ae8aa9f69a7186678aff32d037d2578e9ea

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 7fffcb1c9290133963887473cbd03d48873ee4d103e20d6428616a224ebb8963
MD5 241518f09b9c72ba31b9238224bfad23
BLAKE2b-256 afd82d37428a65786487b7a83d01238590615309ddfea5b2cb93fb1d8fea6041

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

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

File hashes

Hashes for xxtea-6.0.0-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 8250f1004cf85b07b5368fac082b7b026df0f0a49fd355b96b98bb8d5787a599
MD5 6c0d26601763d7cd83940e1ca23f8e38
BLAKE2b-256 b875116b65c0472963c10214f41a575614c6f9ef123e922da680fece181bdb90

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 f7779a6f546f7c0c4589dc026998d6658ffb2d13d0d812fd22b6cec83c68c06f
MD5 191fd49a61faf0d1cad8070bb6c303db
BLAKE2b-256 02db6f61b3735c230a30671ac743122e9f0b01402de696b610d3646e1898c49b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-6.0.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 16.0 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 daddbb74c4fd36af50e1f032b0823ea6f17ebd9d7d512ae9e4d82256ee0bbadc
MD5 9a8166ec20fb112b54c50e8e53d34b1a
BLAKE2b-256 58bf7096a00cce7acbac6f9f421f7a1f7a05f563e664d185e9fddea159a5064b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-6.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 17.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6245e99b07728233a7e6badee3e0d6ea1130aa2ddc439e5f0a4c254535f4d720
MD5 a3c518f9ce6e7d764deb787298afd921
BLAKE2b-256 13b932950d7b43e0d69fab9d4e73201e06681f0afc8948660f68701c2deb1abf

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-6.0.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 15.8 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1e4fd16ec83901442bcfeceeb03b856bd018b09fb5774ecdfd8a6554d07292c0
MD5 6df265a460d19c9733f8a0f258d96ff7
BLAKE2b-256 fef27cf55804f7f8a96324db6b6986c83c302f03f223865f55c18ab56d8491f4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 94e0b20563c83e1abcf85bbcc6362c7bdb95f032dbcf4bd4f308f8acd5cf6da2
MD5 4a3e65503c3d2e33990cff5def3cd3bc
BLAKE2b-256 b4142700d0f3dca0404d64bbfb0cc270800ad2d599faeb009bc4d1cebf546172

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd02a2152a5b12d6d92515fc7ff09b7211fdd9e481d99206a2276a6fe40a6302
MD5 b496852bf82a515ba0c6256c0bae3095
BLAKE2b-256 417e6820538ce7b3d06c7b13a6eb508b443a1df84c957ffc1b22e61b4c87bb7d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 778c0935826b772a5d3fc2a69f625dbfc012d1bb0adb199b459463bdeb2d1b74
MD5 556bcf2a4b5ba60451b07fe91d7e5b21
BLAKE2b-256 40208fb4cb30286456d063dee2ec75a9173f270609726e67542aa98433daaf5d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 709167c14da98345a835fc24048a86bda3d856266c3d736c82f0b464a6880b07
MD5 28d7e4ff6cd7070c1c07bdef4bd2058b
BLAKE2b-256 bd8b4e5da3d2ef7f8014c306b214530584c54c303a18f0b051f78203d4cb94dd

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 259824ffcfb7b6b2fc8e0dd26f0b40fb453b64896b3181716d510063ccad022a
MD5 7ea0e1f24928acb4aeab8b0bc9622148
BLAKE2b-256 772ea7cea967beaaf0ff330412a583dd04deecf40790ecf6753609ce9d3c8a93

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4b551363cb094244a8a96eabe029ccb13eeb1d6fba1665a331d790a2a432e873
MD5 b1b6e2d053ab3e98b939cd4e48842017
BLAKE2b-256 3895ffeb4709329a81601d7c6433e3e1e307a3ff8c842d5aa4d78b9b57804f21

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 51269307ad4db11432e85856bb25eb618fda409b8e3cc1186d42d6169cae9398
MD5 608e808120c7b30dc15dc0ace12defad
BLAKE2b-256 b3c66731f5360d05d64c4def5a83ebd5ec3d3a9fdab1bd9f70947352324a1cbc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 81467ea651f786c2202ff7492f4268d496478dce3357e6a88ec41d5143b472f5
MD5 86aa708c22594ec371eb96cdf51096c5
BLAKE2b-256 f338b9d59922734187eeef90cb2d004245a34fa2920096480b4c31168590814b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4051a89700d568b72456d21b3c1f78fca99ed80c6471c096aac4c803fd93fc20
MD5 ae3ded48c63d76970de333ac7dcbfcdf
BLAKE2b-256 8f4908f107483fbfc45815995ec3fe2478fa58c60776841123d93dc8871daf16

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d3b8664c7ff60193101b435a3d2b5a5ed99c5d9c4e9a5938c6ff7a0c8b5e75b9
MD5 b3f189f8ab4f8af5f16cb40bbfb438d2
BLAKE2b-256 16fe4331d50a151c489d9b1a92b74178c108bd45eeaf7d0dd2348a8ee3de908a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 db6542e0d534f14702f3bf2c6d1d05a88d2c2ce461b17948f8ca6106764cc6bf
MD5 ac92ded4920f7ca8d801d9dfa7f2a821
BLAKE2b-256 f0b66068711524befafae4f52abcf3c3c1d563932f4940be32a306249f254ea1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ea988cdf1f99c70a473c7285860f2c898d85a2f41c219c6ec82b244181f7288a
MD5 d9c9d55028b6b835974786be0604f836
BLAKE2b-256 e34efa81dc3aec884092f8ac212d8be83b3f61a4d3df5ecf0d5d6d6032c97d0f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f7776c3010c59a985e0cb7a24be36064b649f70c75385300578526e5fc11cdc4
MD5 77f35cd49a3cc9040d816bd365e8e230
BLAKE2b-256 fc5ea5ec155877117a503e2cf8ee0997abafb2c58efaeacceff5ff98d10f7230

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b5a1aff091526c75fd69d78ca255a927dd4e5fe9ad952226c3934290b3dea2e6
MD5 bc8e135797f8ab5c8ebea8ff61063f1e
BLAKE2b-256 bca5dcaf9208acc913274a0678427cd399fa694e2cd57914122d9f857c17208c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 1c10ad36899a80f426237e4594877c5dcddf0ebb353d72298820d7a47a2723fb
MD5 6fb2f761225fa331c661b8ddd5dd288e
BLAKE2b-256 2b8baaa1f9e44d68ea3029407dc78f68319a185b53a24843faa6c5bf3fbf1346

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 852681665630ca66054a7bfc4f1eb5ac041dd91c1f4f8ed6f9b8fc643eed7456
MD5 0725f5f7d732137960f699b5e6a90b52
BLAKE2b-256 aa88448dc548a27084a73405647e1fe727ac2fb5a6dec5a94a4de36c2cd00ecb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d0a9a4690dd71605bc763825b6d652e65fe35920b18a4d797dd97ed4273e2c7d
MD5 edf6f00b453e05f2d72bcf0ba4ac3498
BLAKE2b-256 87802bc2e348202b55341703d5107836811ff21b1ad559e09c2efea758678f59

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 8698f056145a4de3d6410b4a0a41bacb3daf387584d8a9d8bcb66bc93ec74d27
MD5 0e92fb75ea26ecf4e0d9a12a704efc24
BLAKE2b-256 a09e61861b932ed780c65ece36e25d70064d9e179fe8200bcfd1279fe674b1b0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 4dba9a3346bb567c375796387c79f5cfaae91387f201cf7a84bb277f15c3d819
MD5 ab48fd07b016dd86a56111762e974e71
BLAKE2b-256 f0b4eae621a5fc518597dd05c8ee85f105b7458c2d40ee903867ee53629ee79e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 c1d12112d6c6546053c5a0d58bc6d5d309265cd21c3aa178e3af4020267e757e
MD5 5c59a48c7940344753296d5e7459a117
BLAKE2b-256 b5b28cfabf67f0cb97d3bfeffc105eccb99f5c96b3d58ba2d12882176e668c23

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp313-cp313-android_24_x86_64.whl.

File metadata

  • Download URL: xxtea-6.0.0-cp313-cp313-android_24_x86_64.whl
  • Upload date:
  • Size: 16.2 kB
  • Tags: Android API level 24+ x86-64, CPython 3.13
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 fcee9afc57dce5bd600c74677f5dd476f45c117b81d5f05f731cb83fe39b9f15
MD5 46a0432d7e3c7038d145b7df93b01a29
BLAKE2b-256 ae712b5e248d36a986b7c7fade77a19cbbe971d8a57b604e094e8578e67190cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 de2f71f20cb4539baed405d38db27154842ef4996674fa976b8ce4e4ffb01801
MD5 53e3e9e635b3a2b5cecff48de6a66710
BLAKE2b-256 a064710a148f8daf8f067dfe2eba2ada9ab0316a33038429d5080bee82402d88

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.0.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 16.0 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ae5d892c6008bf58d8348ed81e3cea1676c5b86cc7efc87cf0f7f51a13f1e5a0
MD5 1fec6e9a3506ae1cb3070c3cef77ef39
BLAKE2b-256 b5e2e81622183bd55cb5e568fab35f5a7e4bc66f31a8295906ad970d044186ee

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-6.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 17.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fc853ccfaf3b5593087937a7c75d827acfe3e108da99ce95125d23dbabd09ba0
MD5 dbf66878a2fbea9ca9df8cca57bcca09
BLAKE2b-256 cdb7bb4c4a599d846d63d998de1cb22fa51c3675519375dc5a6881fbbc8091bb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-6.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 15.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6aab08048341c0a6192db488d7562d55ddba3e878c549878820becc328c1ff86
MD5 155a1efde6c42d48da2e822232ae7fbe
BLAKE2b-256 f1818f3c1e3fc16ad527c218a5eefe494e3ab5f33bb41bd8fe7b20dcd33cbb51

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp312-cp312-pyemscripten_2024_0_wasm32.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp312-cp312-pyemscripten_2024_0_wasm32.whl
Algorithm Hash digest
SHA256 a1c417a85a80a872708c38576d89fabcd6e455b486f5d5f950bb2bc3e35902e8
MD5 c2a2de4bcf74b784b035066d33e8afd4
BLAKE2b-256 b3d49daf4fde2975a6dd17b5fd15b1e60395ae2f7d5a1fabfb54a6029d12c845

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp312-cp312-pyemscripten_2024_0_wasm32.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b8e11f5153f8f4c88f762312f4bdaff2eb01d09ae6a3b6ff0b64805e47f1b133
MD5 244a1d40f82f1972351850feb38ab420
BLAKE2b-256 8d7757365b534fb4c65e662ca5a1d05ccfbae48445b5fa6852b78bc31e6aa00a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f41fc10cb3211fb4fa6d5b46815a0d6f7d27ffd30cbababdce3057755e8b3e1d
MD5 df4041506a94d3a44574de7fdcc5bf03
BLAKE2b-256 23f4ee05bf4ab6a8a14311b198c7a5921342e9c0bdd05a435691d1dd26bf1798

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 24c9a646311f264e6fce59ffa6be24a8ba0ab939477ff2b038bafe0add3dd53d
MD5 5258bd9a75343b30d6160f33b0942cd5
BLAKE2b-256 fe4dfad404bba96e40831922a9eafbde342413320443c88605470ef49080e426

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f9d1bb80e476d52f42dee8881bdba6f57c615269f896dd4718d3962e922b9a71
MD5 019a8f18691bec6843b43e565f0ebcd0
BLAKE2b-256 60844a167385b8b965a41d928bed23a04a34bc6e0adf48592dd6843fac998796

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ab0593f041858e30ad5ed998a68387d8d2c2fd67e6645eaf037e0b10a1761a3a
MD5 3333bfceabc0ef692b655dcefd545b31
BLAKE2b-256 ac0171629c7104b3e47576e1a49c439ef04742ea3f70e7b9824f9b065cd57383

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0993293bed1c79301468348b51c3742eb7655e0bb97758f1e2ef6061fd863859
MD5 4bdcfa8df9d7228ed8cd11c3c6afcba7
BLAKE2b-256 86cdf98f3ea1be7d23cca1c481339f582d4c41e30cc0b6aca43cbe6d81528770

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49648d6c5e745229bcc84502b5e56fcdbb468c408c3a6f0743d033825c9854bd
MD5 7f3c3a208b28d4905ab9a73a10c1e508
BLAKE2b-256 1843bf0eb94924c2e777d1d32dadb123504976fe464d908400de4474d5fb5009

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 75e0a429e94124b62ea3fa0f0822f0a7976e58e4dabfccdf6c72f5ec240d870e
MD5 ac702d837ba711c0b1de989e1bf51603
BLAKE2b-256 a24a564f624256079ed0756aa47220b96b9ea0e44e4254112f01eb0c50fded9d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 02542305c644293adbe65005633f5ae02c92d8f02fbec10d4b13cbb043f66e00
MD5 ad7a8010dd9d3d4a87a47a1f054876f5
BLAKE2b-256 89cc01be44fd55fae97b00d573ae78a076c9ed38d6a82fc6d68d559f429714ac

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e56a868ae586e5f8e389317410afd83b23261f49f7a27be1636f81b1a070a7df
MD5 626e964b43828aec9e55018c593affe0
BLAKE2b-256 6b53fe11c2c9257d1da91ecd277ba502727c0d2874551ec6c5eb6d6ef703e4f7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ffbd4958bc2492eea4351771ce50696c631f064ad7fbb60b1fae5a4baebe2929
MD5 467ff02b1b35143f9c544b8e54598803
BLAKE2b-256 0ea8d672d2b8393eb9b849ab0418aaab22535dd742c2c26995d8031e00e5961c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6345d0d7c6fe3ca6e0e51d8f9c03188550dc491230342d41454bab2ff9c04393
MD5 c39d679d053ad7da69d6e4aa6a3140c6
BLAKE2b-256 efbcd8321dbbe6c3b765c655e3491e4e0bd6da55e531eab7af40c8f7f11a24a3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 25f9a85ca67d691d7b82bc34019c30515bf98ce41cc559ac0848a5c6f88f20dc
MD5 7532475c3996c683c9ed37cd97f83cbc
BLAKE2b-256 e45efc83029fecd813622ede000fd8ee881a4c32632d2c5ecee9a3cbae179e4a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 115d62b959228c70aaa87ebf2162ed4ed650a2086cbdae9a183b79d37951916e
MD5 603b92895fbc965d6c0e399b7b655394
BLAKE2b-256 d7adbbfeabef5ca0c4e18b7217c56e7c7596cb6bad24c4dbe3b2beab6ae8d8f1

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d306188c39fe6ec196f8304ed3fbacbadff83a9a37184b749aff9683eae45818
MD5 2e7d8a7dca7d22a59972d136028435ff
BLAKE2b-256 215b65ce246fa69c9aa57ddf88d0b1606803709e1e18be1c36b5de5af4ae2f81

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d33512fbedea630a3f9e43de206db1e937fd5d10406b1c2f352f23cdcd7ef2a7
MD5 abb222344d202295d3d2a38afc1d05ac
BLAKE2b-256 4caf4d1ab717472d9fe6fa3c44444b6f2011b2365dd6e93f1554e71a0feb5e45

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-6.0.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 15.9 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b753be7e6ed07e9781b0b6ec4528d929fd84ccf38d01fa79bc85ddc15a753a91
MD5 caf8a7ef37e2a017a36760146a00383e
BLAKE2b-256 a45f1fd0b442e494263ba98ff874637ff869ff14660e33f170874ef60164f203

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-6.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 17.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 08c0810cd0a52ffbdcc7f34c6a06733ac058984711ac48ffb0c4d55f98471416
MD5 fd0a6f53c977cc999f523b4eab0e1544
BLAKE2b-256 637ded516f8ff706c8f735b9c526b5d4c026d076b00c64d0010e452cae90a86b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

  • Download URL: xxtea-6.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 15.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 305b1d40d68ffc7e875838ffa773956557f05460f2d5a9f7c3b79376075316b9
MD5 f285433868edf31aecddd79f2ddb59bb
BLAKE2b-256 6334ca92720520d2c44a4ed786d1b978b9f08507ec41e33e83dfcf3de81853ec

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ee415f013f7960ad4be9a1039e9e0d046e6396fe0e07f2d02b05c58c3c6523a
MD5 816f3f110488e1eede38b38d423ffcc9
BLAKE2b-256 c4b00fce85f204b9ba13ddb79b04710f4b5f504d93f216b84e8b63441b6cd503

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 339b421f16cdf6cd7428c6989b7f5942597260d115abdaec4ff36c49e92305b7
MD5 6b1a38d1d74fada919313ccc95fccb33
BLAKE2b-256 81a9dd56837e8c0251300aaccd300b24e08fbe604239124b39c3e43ba0077f73

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d6cc316533bcc8a244d486182c2e197daacb550eefb26356081ac0c35552eb41
MD5 c00ffd8560d6fe6ed5369c48415773a3
BLAKE2b-256 a26daadcdcd4b6dc76c82b4ccf09ebf823acb55c8e6aac7298b3d53927003bfc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

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

File metadata

File hashes

Hashes for xxtea-6.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 44c112fd0bdc4cade3216d9f3db07c41cd0298d28b70c5b3b384e85c0eb258d5
MD5 fa288aaa5938ac94439c6f8c911b8dee
BLAKE2b-256 ca0479c1f573744e0583d9dc63641218f19b4a5aa6f7393fcdc7de077a9525f2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 32beaa1948ada64d32706d9669524fbe9d47ad1f4047eb160175ec8eba42fb06
MD5 db3652562f3f63c7c4607503a316199d
BLAKE2b-256 97a5e8d9c3aac877a2638580458df77f28d33074cb20b63e89423797354afff1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cdd3e7544e9fce9ae4264119c538f1ba8f786f9a494f0f4a24297641148e587e
MD5 e616a860373d72c04c31ed7582b450a8
BLAKE2b-256 fd0ee498d44f6eed82b1ae19a08ad826e0670f446b6540e4ecc5a1d785db1d4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b9897f927f5da2b0b8505ac06d6b68cba508d71056b8b6f6060749d41d38575
MD5 ed020b7ead2748530fa54fec70727f7e
BLAKE2b-256 c6cf961567caa1dc0e822439b11c129a828eb827240904bced9232a7efe8274b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 12d7fb9b198543092a1648ffab35994665fe4b29ba3a217938bf94bc4f03ba94
MD5 61705d43e1487a72407567a36d640c92
BLAKE2b-256 5f96d16fa93b5e7d85b81484a7d4fac222e70b951a00c9fd584d787536646384

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 808ce8984223c29066d93216de05fe46d466e3acc1e7a48378e973819470e5ff
MD5 3f8686e7e14b4cfc1769c991f3874e0b
BLAKE2b-256 7451bf69098dc650e7daf34849bf2a1783e8a102ae5d04a7c4b4a04a97a18c5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 7b9b83a5ddaa70cec707a70ad4fc56eb25c7e387eb951a42ecc6440d495edf3d
MD5 3935cfbcd7cb4ab9e5dd7902dac3b40c
BLAKE2b-256 f52af18a4739395a0924332ee250c8666bdad1b849761c671ecb0ef4b1f085dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d17573c3620e85203b79980acfd398688cf8e89426549375aab004900da4a17d
MD5 c4f0f748e11191d4d91d9950ef22801b
BLAKE2b-256 db72efbc311f3dcdbb157bf265d0ef1d42e98b7b119f731e7a8677bdb83dfab5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5435f266f061ee229df1e626005edfe0d73d1db73037043ac9b06bc15bf4f522
MD5 84625196d56137cc5d8c2bde9c20bf88
BLAKE2b-256 7cebfbf64faf2234ff13229b93ffa1a6fbbbff5963b85b1b9913c339ba75f688

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4a9264feda318dda70aa42ec9d4050bd2b1745862d97f0387abac4d3fb8e6da0
MD5 951bb670efd566a4ab7d22e688a0c0d8
BLAKE2b-256 a2014ade03e6d63e3b245797e35880cd506b55950ca4c2ff15c4fbd57fc85d83

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 112e495782821710fa893dfb94db812f983dda2b93c42ba3c8efd7da04fcf571
MD5 1623f853795114b3541d14a9c53dd748
BLAKE2b-256 7ad7a2fa85f31494bfbfacd78e45263564896ed92731aae921abb36a5d520156

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5cdb51cf160151b4c6ce107006ee74743eb312e24f5f37c14eb1a589edeac6b5
MD5 bb6d4d33e2d2454e42faa4d0cb2da409
BLAKE2b-256 a257a8071b0c913531f6059ddfc6026ab35a7ff108645684e041f47fc99eb405

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a3e734b21ae89a06f8868a3820a12c1a2d4dc742fbdbfde927cd562c6884209f
MD5 4a3c7c05e9b5c26b37d474d8f1459836
BLAKE2b-256 eed94fa000d8c781a1c482f0c1ce7543c082a9febe4930b40ec862aec5464efa

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: xxtea-6.0.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 16.0 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 5509c5b289a6151592a3d249bf53f61dbe27674c57826abd78695dbbdae6b687
MD5 74418ec749a3e55270b6c15d44c1eae8
BLAKE2b-256 b3b133fed4394cc3a0d8e1b227eef99fdc24cd4cb6ab55fb646f53d4a36c4296

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp310-cp310-win_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: xxtea-6.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 17.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c3738016bca8eab44a8c74583c3b13ac586401380171ff4d213c3dc5e95c799d
MD5 0bbc2a7eef8eef66fdb939df1757b488
BLAKE2b-256 9720eb682e824fc3b8ead389c95800aef8c32baa01751615968e871d8606c9e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp310-cp310-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: xxtea-6.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 15.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9ed487a43de26441784a2c04dd7f5da4a8f6cefcdfc942c3b5be28c400f3ed2a
MD5 d8ecd8440eb1b6169473b06661a9dba1
BLAKE2b-256 0827adb0b9867d3eae73f64151763dcba28b0ea8293e8bd7e36ebce32c2906b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp310-cp310-win32.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0af5bd5d8366827d582c4c25435782adce716255667f17cb08f585a35247470
MD5 b5fc21ec460ad145848a18e4ed761b50
BLAKE2b-256 8094d46cb39577854df0f3f7ed061f17fea1e8ee431af308efc1e52525905b6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1012cb31069fcddda0669a89aaef92f0ec6969a7e3eca2d468f4fdfe4eb85711
MD5 f0298653f35ca53d111870707c665fe3
BLAKE2b-256 94bbdd775bead6048dd1e2a94733ac08e50e29273faeffea74d6908068c815c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp310-cp310-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 51fab69856c094e8a3767b25101d8ea36faf7ef2bbc3906208495097cd1d32ea
MD5 ed98e8df1f1ac2ea99ab46bd6fe8038c
BLAKE2b-256 f07a4969b72349ff6453e41f7d3208ee3eb2e3e7712aefc353fc12b21e75670d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp310-cp310-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 fce0ba6d4f359baa88631a59ab46f2b27e350a54e1b51a66d45569f57c1625c2
MD5 43d46e7aa375d9f933f2b17b56a0143e
BLAKE2b-256 ee476ed2232f74165fa6697776aee732419e2ad160ff57eeb4529d7a7f6a92d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f297cd595b385fe503fb8e86c01a0e729f955d5f3b1b2a612a0c04aa63e780cb
MD5 57e385b5e1b53bf44a57222338126825
BLAKE2b-256 ef5312ed601439167153d8bebfa993e23bfa1a7de97636509e94b890565b2a81

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5f999d26b372a1ecd47a2705c91f1c5a62ebb8c8fe727611dbb1965decd9a263
MD5 0d1b13726a460e09f3a79c898c0b8d49
BLAKE2b-256 fba2f2e7f10a033b0ba301c2baf974fe67d6708344d25235d7102e3aca3e0fea

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 64f8ed7d388e90019dc79c4c3b639742ea0c224be6cbce84e5c819fbb6e7149f
MD5 833fdda164a53ae1afbd065e20c1d694
BLAKE2b-256 2d101009641406b7bd34b9927c087b1518c2464816f4ce93c947a1116cfbb5f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3bdba044c7cd2bd2404a2d71f350afb75696fc327187aea8033578a307dac30e
MD5 e3c62cc77c9608c8f4a2a968ca094d6e
BLAKE2b-256 e90b2b936ace0686a393271d648f163dc3d9a97b0045c2ca96d2b093873c0641

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9d7d0c33a22d4148147c1ff085f9f7638427b504f2f6e192b83b742283bf1750
MD5 57f3d71463985dbfa19fa5dec8213003
BLAKE2b-256 c95ffd0f99ea207fe09999de8c8aa9d17939b2cd1aa688115335cdac3f508722

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 031b958c6ed685d23938d7e2f3747e13b2659e2fcbc00aef6f601b88acb4f238
MD5 041e8c247cb540a539e746ab3d36d2f7
BLAKE2b-256 d6a1dc6c1c98ecaef56dc35b141eff390e84cfa61122558142f4470d49aba751

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e89cc60e8c9218fac7f8ae80ecc0c13446027586e4a1ab6fafcb8d79d9bcac91
MD5 934f1fc9eb15511421ade45ed90639f9
BLAKE2b-256 3e3ab6ee1bf593ef76ae527f3a7d8f0e89711bc866f179439d3da5ee814c9417

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b546d5302ed74c22a798e76c079af745a5540b4d2123e92349ca5dae2555b85d
MD5 4ae96180b8261cdc4239d056c5dfb540
BLAKE2b-256 8042b9f28e3c9f4cfb9ab69274a3f0d68d06828dd53cd264c5dc5dc3267208ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8df49c9cc72b43be0080f0c9cf0b08fa9318aeb6a6cde4c6ccd7c3a8f285e6de
MD5 c5ff271958602f426a12c222d0f909da
BLAKE2b-256 3f084046ea0f649067b38ee75840e11fa3036a40c22e2e7e31d46413ec9afe91

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7d863eb4b2d7d5a2668ac5177d8991a9f6f60603b23fb35d6b9dd0d77fe0d7b5
MD5 5705031e4de01c33053f2d783581afa5
BLAKE2b-256 d64dfec395f59412b2835c64d582793eb508ab992bfdcdaf56d8943a0361350c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e78c8204a552c2f90788b3b34dfea9dc97399d458bc0ca7068bc474f9a448b78
MD5 dc35cd534707026840fff1f712b18058
BLAKE2b-256 1e6f8797858675e2418f3c8dd090e74d85d46a06aa2e0ad71df84647d535b8c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 32b95fc81a91e36d57defe788034f37aa1101707893d667c364804ec7cd162ce
MD5 8f89907485f3d1a888af8fa166c37707
BLAKE2b-256 b791b22f921b6c68295e9842c572d3e6f0550405cc66655aaff16a74833d26de

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: xxtea-6.0.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 16.0 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 f435c6788eb248c39909612ded6491a5eae02c138c497962f4d16ccbcb000962
MD5 3927ccad5ecf91da91902337108bd1d8
BLAKE2b-256 caec09ee4f8b78dad1172fc39c38f3efae7558d0375e1070cc0b0781881409ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp39-cp39-win_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: xxtea-6.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 17.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 165b35405578be94b6650662633194b33285c40ff62736d1d9d69969e1c66fae
MD5 64f906f61d4f1b495dcc3fbd6a924890
BLAKE2b-256 fa17ef21ed5d36ce7462e7309e7821ffcaf075902e0ea38019faaa7a5e83f1b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp39-cp39-win_amd64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: xxtea-6.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 15.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 32e91437131864a5c170ae06edaf6b14712e33b6ae701a146944eedb2cb06899
MD5 c238c350fd8937c901d9dddd8f7fe4de
BLAKE2b-256 b4df4092ffd0b8ba46beb3f1fa8994cd5229a6814010ea419d08739b9d230fe9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp39-cp39-win32.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: xxtea-6.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 75.6 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc6b0f24471911fc839b43ffb80a92d13cdaeb453895251fac41fa2d05245760
MD5 425cfeafa5782cbf97877f56bc630957
BLAKE2b-256 c39528186ddd3624ebfd6cf4922ed204c7ca348fd52d1ab12c4b45bf9c219a10

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

  • Download URL: xxtea-6.0.0-cp39-cp39-musllinux_1_2_s390x.whl
  • Upload date:
  • Size: 76.0 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a77fbf047bf6834a0b946d5b7ac45ddd24524f24f61907e6fe9661b24e84d701
MD5 edb47a633a34be5456dae106e82ba04a
BLAKE2b-256 88b4643009d3312a53fac35a9814a45ba552e8b03471079c58c043976b57518f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp39-cp39-musllinux_1_2_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b740ec8524d671260bb6ba77a0a89ae8493fa9493cd5bf4b964a4a1532e3a488
MD5 50eb81b223bc9a0a5a4a2fdf9c225460
BLAKE2b-256 5cd62c254cb2fccde573bb0741e85982ebef88e4bbc0da80ba234fc747b8e3f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp39-cp39-musllinux_1_2_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 19106e6069ed341fef28dacb7eb38d877f74e2a4f78517382203486ef49ebb4e
MD5 bc4575b96092e86ac0a2db5ca7dc15f7
BLAKE2b-256 cf38b0a10853d175d21bdef072492278ae08727c9b79d250f2b475a18e7dfb3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

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

File hashes

Hashes for xxtea-6.0.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c61fa30a8f181ee0bb5d25b7467c355630402691621499ff3c67d4378d76965a
MD5 a4af4f6d0db1995293f6e5f96cfd15d9
BLAKE2b-256 9d5525b0d792e5ad415ac1fa2d2022e9c0fb47f11b2f32196a03577a447b5778

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: xxtea-6.0.0-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 73.4 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2b4353913208ce3096828638b00aa253eaa26babb0d7ac721f826b5b0f98c2a6
MD5 9939661260ad16875196de6d44f42418
BLAKE2b-256 1afe776e8c74bc07f1d1e0b42e3a51d8320fa59d2a7f09ed642aadccf9f94518

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c514fd0986f815fa4a8d0e7a36449699396e66b625a86a627c946133ccd2edf6
MD5 c960abd1ec02008e23a7b0ca8b880f89
BLAKE2b-256 11260daebf96b3a1382e904342fbd64929e05be208fab64c23433454241d6ecc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 bd61c3a101f7de60a9fa873bdacd9e1d07f18acb89f253abb18f2fb8ffdb6603
MD5 5574516e7e668c12da6360fe20822f91
BLAKE2b-256 05ffcc30b3099b44fa9ff4afda0d87c8a3574631f7d282e496fffaa142a39e8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71c90185c516eb43450de46416ddd9d3d5b19e5839e1b7753b9dcc2d3a089116
MD5 236fa83a9c1cddae39a6c337d4707ef9
BLAKE2b-256 0b176ee41c31c685946806f143ffed7491a13a41ffb771a5b0bbbfc4a1fb4576

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 7bb30bf78d0e8875b65353ab273cb0b7275e6430fbb78aac32855b37cbf38b34
MD5 bfeabffb0de5f63aac22a87e1227a77c
BLAKE2b-256 398684949554c56ec4b7091401bbc4c74de37e1c147ca12ed034982e00414f62

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c71e6d287d4006a9a200a0ec812c17965f89bc471fd0929a04d4467149725c4b
MD5 fe027c1976f9a541f873e91fc147808c
BLAKE2b-256 633dbc8101821529473988002ec60dedafd1835828ad02f9b7b884809b7d5e0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6c2a26fdcfd6053ebf7eb0c2c78ff6fdf4506474a8689b9e454fcca42aa22fff
MD5 e72cc6f42218e6662fe49f5c5721149d
BLAKE2b-256 dd8022d7be52ee35b4c5173096a82069f3b8b9201a0f4efc6394ba7937c340ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a06e65d3d8b5a07b984150f1bf9d68bb4c73a619b31880ac5f6bd873fa398f63
MD5 8b25b4df7554da0f1f9102292e22bb22
BLAKE2b-256 e8d613b5247c732322b872c3c69b36bba144ac55185d815b3bc70f18e956f881

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9ad75afaf685873a067479ad0b2cb1a158031f6184a13728dc835b5afeba7619
MD5 f0529054e82dbd7b351ccf257c1aec77
BLAKE2b-256 09163ba54889d2bdf0331674ab403d6b755fddc216e53da32f382c8ffa43ccfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: xxtea-6.0.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 15.3 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98f369175f6507b1843cc657b9c177005cf7888f3828fb8b24b050edc5fd48d1
MD5 9aa8f36fe1b4f95f37f281c4862f5d36
BLAKE2b-256 f489d36f0e913f64e320fd413122b3888b14b60d91a7abdb192664d69cefddb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build.yml on ifduyue/xxtea

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

File details

Details for the file xxtea-6.0.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xxtea-6.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 686029f2581d44e5a73835fcfc68dfec7a9458761808df90aca71f728d15c8cf
MD5 9c2c30b98ae9821bb9717ff805ce7b65
BLAKE2b-256 60009186ccc362b0f2d4487d76257996e6753a1e089629cf271ea18c3896a515

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.0.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build.yml on ifduyue/xxtea

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

Release history Release notifications | RSS feed

6.1.0

214 files

This release

6.0.0 This release

214 files

5.3.3

214 files

5.3.2

170 files

5.3.1

170 files

5.3.0

170 files

5.2.3

170 files

5.2.2

170 files

5.2.1

170 files

5.2.0

170 files

5.1.3

170 files

5.1.2

170 files

5.1.1

170 files

5.1.0

170 files

5.0.5

169 files

5.0.2

172 files

5.0.1

172 files

5.0.0

172 files

4.0.4

191 files

4.0.2

191 files

4.0.1

191 files

4.0.0

191 files

3.8.0

215 files

3.7.0

209 files

3.6.0

173 files

3.5.0

135 files

3.4.0

120 files

3.3.0

136 files

3.2.0

121 files

3.1.0

101 files

3.0.0

98 files

2.0.0.post0

46 files

2.0.0

40 files

1.3.0

42 files

1.2.0

15 files

1.1.0

1 file

1.0.2

3 files

1.0.1

3 files

1.0

3 files

0.2.1

3 files

0.2.0

3 files

0.1.5

3 files

0.1.4

3 files

0.1.3

3 files

0.1.2

3 files

0.1.1

3 files

0.1

3 files

0.0.1

3 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page