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.

  • Padding.LENGTH_WORD_SUFFIX / "length_word_suffix": zero-pad to a 4-byte boundary, then append one little-endian uint32 with the original length. Cocos Creator JSC files using this layout can be decrypted. Empty input is padded to 8 bytes so XXTEA’s 2-word minimum is met (plaintext length must fit in a 32-bit unsigned integer).

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

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

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.1.0.tar.gz (28.2 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.1.0-pp311-pypy311_pp73-win_amd64.whl (17.7 kB view details)

Uploaded PyPyWindows x86-64

xxtea-6.1.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (17.3 kB view details)

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

xxtea-6.1.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (18.5 kB view details)

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

xxtea-6.1.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (17.7 kB view details)

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

xxtea-6.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (14.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-6.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (15.0 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-6.1.0-pp310-pypy310_pp73-win_amd64.whl (17.9 kB view details)

Uploaded PyPyWindows x86-64

xxtea-6.1.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (17.4 kB view details)

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

xxtea-6.1.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (18.8 kB view details)

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

xxtea-6.1.0-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (17.9 kB view details)

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

xxtea-6.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (15.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-6.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (15.3 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-6.1.0-pp39-pypy39_pp73-win_amd64.whl (17.9 kB view details)

Uploaded PyPyWindows x86-64

xxtea-6.1.0-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (17.4 kB view details)

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

xxtea-6.1.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (18.8 kB view details)

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

xxtea-6.1.0-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (17.9 kB view details)

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

xxtea-6.1.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (15.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-6.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (15.3 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-6.1.0-graalpy312-graalpy250_312_native-win_amd64.whl (17.9 kB view details)

Uploaded Windows x86-64graalpy312

xxtea-6.1.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (18.1 kB view details)

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

xxtea-6.1.0-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (17.5 kB view details)

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

xxtea-6.1.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (16.4 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

xxtea-6.1.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl (15.3 kB view details)

Uploaded graalpy312macOS 10.13+ x86-64

xxtea-6.1.0-cp315-cp315t-win_arm64.whl (17.2 kB view details)

Uploaded CPython 3.15tWindows ARM64

xxtea-6.1.0-cp315-cp315t-win_amd64.whl (18.6 kB view details)

Uploaded CPython 3.15tWindows x86-64

xxtea-6.1.0-cp315-cp315t-win32.whl (17.3 kB view details)

Uploaded CPython 3.15tWindows x86

xxtea-6.1.0-cp315-cp315t-musllinux_1_2_x86_64.whl (93.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

xxtea-6.1.0-cp315-cp315t-musllinux_1_2_s390x.whl (95.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ s390x

xxtea-6.1.0-cp315-cp315t-musllinux_1_2_riscv64.whl (84.4 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

xxtea-6.1.0-cp315-cp315t-musllinux_1_2_ppc64le.whl (97.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ppc64le

xxtea-6.1.0-cp315-cp315t-musllinux_1_2_i686.whl (89.4 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

xxtea-6.1.0-cp315-cp315t-musllinux_1_2_armv7l.whl (92.6 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

xxtea-6.1.0-cp315-cp315t-musllinux_1_2_aarch64.whl (92.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

xxtea-6.1.0-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (85.0 kB view details)

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

xxtea-6.1.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (94.9 kB view details)

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

xxtea-6.1.0-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (103.7 kB view details)

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

xxtea-6.1.0-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (99.1 kB view details)

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

xxtea-6.1.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (85.4 kB view details)

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

xxtea-6.1.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (94.9 kB view details)

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

xxtea-6.1.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (88.3 kB view details)

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

xxtea-6.1.0-cp315-cp315t-macosx_11_0_arm64.whl (15.9 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

xxtea-6.1.0-cp315-cp315t-macosx_10_15_x86_64.whl (16.2 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

xxtea-6.1.0-cp315-cp315-win_arm64.whl (16.9 kB view details)

Uploaded CPython 3.15Windows ARM64

xxtea-6.1.0-cp315-cp315-win_amd64.whl (18.0 kB view details)

Uploaded CPython 3.15Windows x86-64

xxtea-6.1.0-cp315-cp315-win32.whl (16.8 kB view details)

Uploaded CPython 3.15Windows x86

xxtea-6.1.0-cp315-cp315-pyemscripten_2026_5_wasm32.whl (10.6 kB view details)

Uploaded CPython 3.15PyEmscripten 2026.5 wasm32

xxtea-6.1.0-cp315-cp315-musllinux_1_2_x86_64.whl (80.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

xxtea-6.1.0-cp315-cp315-musllinux_1_2_s390x.whl (81.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ s390x

xxtea-6.1.0-cp315-cp315-musllinux_1_2_riscv64.whl (73.0 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

xxtea-6.1.0-cp315-cp315-musllinux_1_2_ppc64le.whl (84.7 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ppc64le

xxtea-6.1.0-cp315-cp315-musllinux_1_2_i686.whl (77.7 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

xxtea-6.1.0-cp315-cp315-musllinux_1_2_armv7l.whl (78.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

xxtea-6.1.0-cp315-cp315-musllinux_1_2_aarch64.whl (78.4 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

xxtea-6.1.0-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (72.9 kB view details)

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

xxtea-6.1.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (81.6 kB view details)

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

xxtea-6.1.0-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (89.2 kB view details)

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

xxtea-6.1.0-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (86.3 kB view details)

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

xxtea-6.1.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (73.5 kB view details)

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

xxtea-6.1.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (80.5 kB view details)

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

xxtea-6.1.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (76.3 kB view details)

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

xxtea-6.1.0-cp315-cp315-macosx_11_0_arm64.whl (15.6 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

xxtea-6.1.0-cp315-cp315-macosx_10_15_x86_64.whl (15.9 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

xxtea-6.1.0-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl (15.3 kB view details)

Uploaded CPython 3.15iOS 13.0+ x86-64 Simulator

xxtea-6.1.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl (15.4 kB view details)

Uploaded CPython 3.15iOS 13.0+ ARM64 Simulator

xxtea-6.1.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl (15.1 kB view details)

Uploaded CPython 3.15iOS 13.0+ ARM64 Device

xxtea-6.1.0-cp315-cp315-android_24_x86_64.whl (16.7 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.15

xxtea-6.1.0-cp315-cp315-android_24_arm64_v8a.whl (16.5 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.15

xxtea-6.1.0-cp314-cp314t-win_arm64.whl (17.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

xxtea-6.1.0-cp314-cp314t-win_amd64.whl (18.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

xxtea-6.1.0-cp314-cp314t-win32.whl (17.3 kB view details)

Uploaded CPython 3.14tWindows x86

xxtea-6.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (94.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxtea-6.1.0-cp314-cp314t-musllinux_1_2_s390x.whl (95.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxtea-6.1.0-cp314-cp314t-musllinux_1_2_riscv64.whl (83.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxtea-6.1.0-cp314-cp314t-musllinux_1_2_ppc64le.whl (97.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxtea-6.1.0-cp314-cp314t-musllinux_1_2_i686.whl (90.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxtea-6.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl (92.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxtea-6.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (93.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxtea-6.1.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (84.8 kB view details)

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

xxtea-6.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (96.2 kB view details)

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

xxtea-6.1.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (104.3 kB view details)

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

xxtea-6.1.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (99.4 kB view details)

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

xxtea-6.1.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (86.0 kB view details)

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

xxtea-6.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (95.9 kB view details)

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

xxtea-6.1.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (88.8 kB view details)

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

xxtea-6.1.0-cp314-cp314t-macosx_11_0_arm64.whl (15.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xxtea-6.1.0-cp314-cp314t-macosx_10_15_x86_64.whl (16.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

xxtea-6.1.0-cp314-cp314-win_arm64.whl (16.9 kB view details)

Uploaded CPython 3.14Windows ARM64

xxtea-6.1.0-cp314-cp314-win_amd64.whl (18.0 kB view details)

Uploaded CPython 3.14Windows x86-64

xxtea-6.1.0-cp314-cp314-win32.whl (16.8 kB view details)

Uploaded CPython 3.14Windows x86

xxtea-6.1.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl (10.6 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

xxtea-6.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (80.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxtea-6.1.0-cp314-cp314-musllinux_1_2_s390x.whl (81.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxtea-6.1.0-cp314-cp314-musllinux_1_2_riscv64.whl (71.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxtea-6.1.0-cp314-cp314-musllinux_1_2_ppc64le.whl (84.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxtea-6.1.0-cp314-cp314-musllinux_1_2_i686.whl (77.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xxtea-6.1.0-cp314-cp314-musllinux_1_2_armv7l.whl (77.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxtea-6.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (77.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxtea-6.1.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (72.1 kB view details)

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

xxtea-6.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (81.1 kB view details)

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

xxtea-6.1.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (88.8 kB view details)

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

xxtea-6.1.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (85.9 kB view details)

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

xxtea-6.1.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (73.6 kB view details)

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

xxtea-6.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (80.1 kB view details)

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

xxtea-6.1.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (75.5 kB view details)

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

xxtea-6.1.0-cp314-cp314-macosx_11_0_arm64.whl (15.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xxtea-6.1.0-cp314-cp314-macosx_10_15_x86_64.whl (15.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

xxtea-6.1.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (15.3 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

xxtea-6.1.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (15.4 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

xxtea-6.1.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl (15.1 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxtea-6.1.0-cp314-cp314-android_24_x86_64.whl (16.7 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

xxtea-6.1.0-cp314-cp314-android_24_arm64_v8a.whl (16.4 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

xxtea-6.1.0-cp313-cp313-win_arm64.whl (16.5 kB view details)

Uploaded CPython 3.13Windows ARM64

xxtea-6.1.0-cp313-cp313-win_amd64.whl (17.6 kB view details)

Uploaded CPython 3.13Windows x86-64

xxtea-6.1.0-cp313-cp313-win32.whl (16.4 kB view details)

Uploaded CPython 3.13Windows x86

xxtea-6.1.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl (10.6 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

xxtea-6.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (79.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxtea-6.1.0-cp313-cp313-musllinux_1_2_s390x.whl (81.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxtea-6.1.0-cp313-cp313-musllinux_1_2_riscv64.whl (70.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxtea-6.1.0-cp313-cp313-musllinux_1_2_ppc64le.whl (84.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxtea-6.1.0-cp313-cp313-musllinux_1_2_i686.whl (76.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxtea-6.1.0-cp313-cp313-musllinux_1_2_armv7l.whl (78.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxtea-6.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (77.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxtea-6.1.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (72.0 kB view details)

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

xxtea-6.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (81.1 kB view details)

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

xxtea-6.1.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (88.5 kB view details)

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

xxtea-6.1.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (85.5 kB view details)

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

xxtea-6.1.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (73.7 kB view details)

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

xxtea-6.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (79.8 kB view details)

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

xxtea-6.1.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (75.4 kB view details)

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

xxtea-6.1.0-cp313-cp313-macosx_11_0_arm64.whl (15.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xxtea-6.1.0-cp313-cp313-macosx_10_13_x86_64.whl (15.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

xxtea-6.1.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (15.4 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

xxtea-6.1.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (15.4 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

xxtea-6.1.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl (15.1 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxtea-6.1.0-cp313-cp313-android_24_x86_64.whl (16.7 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.13

xxtea-6.1.0-cp313-cp313-android_24_arm64_v8a.whl (16.4 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

xxtea-6.1.0-cp312-cp312-win_arm64.whl (16.5 kB view details)

Uploaded CPython 3.12Windows ARM64

xxtea-6.1.0-cp312-cp312-win_amd64.whl (17.6 kB view details)

Uploaded CPython 3.12Windows x86-64

xxtea-6.1.0-cp312-cp312-win32.whl (16.4 kB view details)

Uploaded CPython 3.12Windows x86

xxtea-6.1.0-cp312-cp312-pyemscripten_2024_0_wasm32.whl (10.6 kB view details)

Uploaded CPython 3.12PyEmscripten 2024.0 wasm32

xxtea-6.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (79.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xxtea-6.1.0-cp312-cp312-musllinux_1_2_s390x.whl (81.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxtea-6.1.0-cp312-cp312-musllinux_1_2_riscv64.whl (70.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxtea-6.1.0-cp312-cp312-musllinux_1_2_ppc64le.whl (84.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxtea-6.1.0-cp312-cp312-musllinux_1_2_i686.whl (76.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxtea-6.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (78.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxtea-6.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (77.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxtea-6.1.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (72.0 kB view details)

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

xxtea-6.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (81.0 kB view details)

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

xxtea-6.1.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (88.4 kB view details)

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

xxtea-6.1.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (85.4 kB view details)

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

xxtea-6.1.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (73.9 kB view details)

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

xxtea-6.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (79.8 kB view details)

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

xxtea-6.1.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (75.3 kB view details)

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

xxtea-6.1.0-cp312-cp312-macosx_11_0_arm64.whl (15.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xxtea-6.1.0-cp312-cp312-macosx_10_13_x86_64.whl (15.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

xxtea-6.1.0-cp311-cp311-win_arm64.whl (16.4 kB view details)

Uploaded CPython 3.11Windows ARM64

xxtea-6.1.0-cp311-cp311-win_amd64.whl (17.6 kB view details)

Uploaded CPython 3.11Windows x86-64

xxtea-6.1.0-cp311-cp311-win32.whl (16.2 kB view details)

Uploaded CPython 3.11Windows x86

xxtea-6.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (78.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxtea-6.1.0-cp311-cp311-musllinux_1_2_s390x.whl (79.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxtea-6.1.0-cp311-cp311-musllinux_1_2_riscv64.whl (69.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxtea-6.1.0-cp311-cp311-musllinux_1_2_ppc64le.whl (83.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxtea-6.1.0-cp311-cp311-musllinux_1_2_i686.whl (74.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxtea-6.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (75.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxtea-6.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (76.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxtea-6.1.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (71.0 kB view details)

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

xxtea-6.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (80.2 kB view details)

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

xxtea-6.1.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (86.7 kB view details)

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

xxtea-6.1.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (84.6 kB view details)

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

xxtea-6.1.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (72.8 kB view details)

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

xxtea-6.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (78.1 kB view details)

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

xxtea-6.1.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (72.7 kB view details)

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

xxtea-6.1.0-cp311-cp311-macosx_11_0_arm64.whl (15.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xxtea-6.1.0-cp311-cp311-macosx_10_9_x86_64.whl (15.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

xxtea-6.1.0-cp310-cp310-win_arm64.whl (16.5 kB view details)

Uploaded CPython 3.10Windows ARM64

xxtea-6.1.0-cp310-cp310-win_amd64.whl (17.9 kB view details)

Uploaded CPython 3.10Windows x86-64

xxtea-6.1.0-cp310-cp310-win32.whl (16.4 kB view details)

Uploaded CPython 3.10Windows x86

xxtea-6.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (78.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxtea-6.1.0-cp310-cp310-musllinux_1_2_s390x.whl (80.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxtea-6.1.0-cp310-cp310-musllinux_1_2_riscv64.whl (70.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxtea-6.1.0-cp310-cp310-musllinux_1_2_ppc64le.whl (82.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxtea-6.1.0-cp310-cp310-musllinux_1_2_i686.whl (73.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xxtea-6.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (75.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxtea-6.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (75.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxtea-6.1.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (71.5 kB view details)

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

xxtea-6.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (79.7 kB view details)

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

xxtea-6.1.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (86.7 kB view details)

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

xxtea-6.1.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (84.8 kB view details)

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

xxtea-6.1.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (73.8 kB view details)

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

xxtea-6.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (77.6 kB view details)

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

xxtea-6.1.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (72.4 kB view details)

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

xxtea-6.1.0-cp310-cp310-macosx_11_0_arm64.whl (15.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xxtea-6.1.0-cp310-cp310-macosx_10_9_x86_64.whl (15.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

xxtea-6.1.0-cp39-cp39-win_arm64.whl (16.5 kB view details)

Uploaded CPython 3.9Windows ARM64

xxtea-6.1.0-cp39-cp39-win_amd64.whl (17.9 kB view details)

Uploaded CPython 3.9Windows x86-64

xxtea-6.1.0-cp39-cp39-win32.whl (16.4 kB view details)

Uploaded CPython 3.9Windows x86

xxtea-6.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (78.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxtea-6.1.0-cp39-cp39-musllinux_1_2_s390x.whl (79.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxtea-6.1.0-cp39-cp39-musllinux_1_2_riscv64.whl (70.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxtea-6.1.0-cp39-cp39-musllinux_1_2_ppc64le.whl (82.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxtea-6.1.0-cp39-cp39-musllinux_1_2_i686.whl (73.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxtea-6.1.0-cp39-cp39-musllinux_1_2_armv7l.whl (75.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxtea-6.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (75.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxtea-6.1.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (71.3 kB view details)

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

xxtea-6.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (79.5 kB view details)

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

xxtea-6.1.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (86.5 kB view details)

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

xxtea-6.1.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (84.6 kB view details)

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

xxtea-6.1.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (73.6 kB view details)

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

xxtea-6.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (77.4 kB view details)

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

xxtea-6.1.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (72.3 kB view details)

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

xxtea-6.1.0-cp39-cp39-macosx_11_0_arm64.whl (15.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xxtea-6.1.0-cp39-cp39-macosx_10_9_x86_64.whl (15.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for xxtea-6.1.0.tar.gz
Algorithm Hash digest
SHA256 fdecbce4af06345fda6d08134dc75359143d31560becbe2dd4a589298aa2bc8b
MD5 0da65f0cc069b738ffd0d39e059a254c
BLAKE2b-256 d1808360e48e461f2d496ad8139e2d5b3ed4fdcf1d722ff8f88943f027992278

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7462336b24364eb6abe9e3b67438df4c76509502c5453792a454da9a929f977e
MD5 91a2e063459d99777770fe81ad264019
BLAKE2b-256 fdd24667ae1b58853034484d35aab112a9911d3a48256b3e003be8e58bdabcc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.1.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.1.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.1.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 199259b711113f8f8d31ec50116c850cfd078672742e1ea8a78e30e5a55b9bd1
MD5 9403b78aae4e649c65add5ef7f21df74
BLAKE2b-256 5e29c8fb47189c4f04849c5b60737078e78692555846643f32b20383c6c8fab3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ccc2e86609549eb6754783bb7ae2c678e8522e3c43a5265bf8c11cc74ddf562b
MD5 6a463e8dbbce28a4f9f600df75d0ea15
BLAKE2b-256 725aa7fd3580a5f4b1b5d67f13a61473b327aa4044e6b7fc23179d9fb81252f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f0f9419bdd5c9a30e7bad92437311473884757c5d9e37a593a02e7e052c4e2af
MD5 a029ca67a0322447f4d4b9822ee2c5cf
BLAKE2b-256 d4088f8123e142b27c6be039aae496ce5f999217cfeedc33e668f93320765b70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 626daab5c2bf36299b1e985fbf0fc74c6260d51ca49aacd227c4977a961adbc9
MD5 1fdfa493b715540c31941f1f897eb245
BLAKE2b-256 1af735e871b7015f92051e5c531f2c1f81c8abeba906c25a53c82b9703add726

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7bf72bafb80d4b084e4234a50df16120b28cf044390c3078ac8279685d2af7f0
MD5 c5c7da4359ca4a8dce682a436e817827
BLAKE2b-256 d7dd882d33d6f783f4d9afc3e92968794daae343198eb3f6e3da6e3f0e99d82e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 010e264f9ba60b22b4733698a0a10a2b4eed5c2948d25814774175f2bbaeb6fd
MD5 46fc30026bd6e274b54c2ed2e575a89e
BLAKE2b-256 ab0e4863d5ae3d12e64a7592c8c8a64591ec7d12c96c0d96828489dfd5d54285

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.1.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.1.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.1.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d323c183b314d63a7af5928aa4138f157d0f01dda9eda3ca10aad5cd59382da4
MD5 bcc73f856d3e5cdb1482ff4cac2d9b32
BLAKE2b-256 0a1455fee5dc1b6969ca87bcdddb7e9ed55521866ecb0fd8660072910880f2a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 659e68434bb4d3779caf121b033fce95a734e1b852efa555e41e25f7849ce953
MD5 c5fbebf16dd2f197c107fbd386f0edac
BLAKE2b-256 c0201d8a0c33bbda9448d27f9d1ba9490a715dcccdfa5bbc0fb624849cc7ef06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4511e301a019a6abcb5a7036638bd95f5e98510000fc7e9c2c9c7470baaec49e
MD5 0b1c8593b4401a55817867ef525c9b38
BLAKE2b-256 b107b2dfd27f52f8366fe9cec58fece347425927f3e97130c96f0522f26e7363

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2aeab92f4bd81a787538f3818e6f454991f5d79415de8d99e110316e032b2f1d
MD5 0d50c84d2eff698688dbf5cdcdf36340
BLAKE2b-256 396d2bf6244620b25bbb6a5f019aaed2a90f6151d1ff2391a55b24327d5684c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 702fa8b97650443319bcb6dfe79b90062b740222e4505dcdb981153b60ba88fe
MD5 f6333a8f09858e76544ae59e76ed63c7
BLAKE2b-256 b205ae492de1514c2d5e07b458ef7366bb9ff98e86143580b1991b5939f5098b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d5ad76a72b08d0d54c6db2ee7cc27e2d7a13974af02e59a35631e5798baee176
MD5 52e98f15ef3ddaa3e12c84f5d3d74aa5
BLAKE2b-256 91849e9ef2c041c93dbc7a1ee6bdc5eabc293b978b39a82c4e2a1c51197764db

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.1.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.1.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.1.0-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba1fed53aa14ddfbf0bfa1944187f659c0a22bb4ec068aabadae690878b71b24
MD5 9526737f49626facb34639d6fdecee03
BLAKE2b-256 c537ac495dc7169569803978d0fb092793312c7b9b1b572300cbd34225496cc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8b9c8c1be88a878c9c2eaef8e1c0cbec235088941fb2988b1a23e4db470140f3
MD5 110cf169e07dcc0b4496b111ef6b02c4
BLAKE2b-256 2a6b9aa20f477a0bbdf5a5bfbf9808f49de74d3adc557f9ed5d79683d5b68b46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 14804985b8b1cffe3a5eb8458875e84419e48c10a11a203ea4e58ac88c3b3fb8
MD5 2434d7be461107eb3e2a78dd502d5aba
BLAKE2b-256 b1a810219248be7f9c5a961abd0a1e39e9f765fe9721b9b6e008a2b4623787f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ffc5848d0a1a0bd2761813abcf6643748ccb091e477c1cbd9ef932efdedcbf6
MD5 402c11b8b4abe27cddc679a34c8a92c0
BLAKE2b-256 0b832e59abebfc2abdb422fdcfb6f50592cff982e3109260e95fb6e5cdaaf154

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7d5a4a45f2043fd490b64c6fd4ca093c5d7199ca6a7c27e5cc543c0d30ddd8f1
MD5 c3074b55930428574d798b02fd313455
BLAKE2b-256 0447336215c0439036b252d6e1c2d04add6ee37471c4dd678f340b69ba31fad3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 a1fe0f263b54b29be50339856e347dc81ddfca89e02a2a151c8e8563c3223533
MD5 014966fa1b4838d45d126e583f119a64
BLAKE2b-256 fd190f0ed648ca94a8d508551b1c5bed177d1ef928470d30b90efa8813cdd858

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8a2fc39c9de35f7fe394b6fd34d89004846fa05d19467538ddf2df9f322f2740
MD5 33403e9fe566adef393fe28907ff656a
BLAKE2b-256 f39323d9897db8866068d9bc72b4c2a0c9ee81229994c57336da5f173145d2b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.1.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.1.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.1.0-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 034b8ffd8579c4ac1cffacfdf595357015afba131bb63ce94dd3071307c61638
MD5 bac98417287ffc8c088e7e829ab2452c
BLAKE2b-256 3e86062aec7ce338e0130d0ce91cbf1e28319b11bcf7b0646ea90da14cc76b08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7033c10c5a998184020781ad7f87535deb3c7f13b843af83bb850dce6be74e2
MD5 0e6fe44b3673d5fdc19f8def21653b2b
BLAKE2b-256 ed8ce7877038dc223f4bf3488ad3e8f3018d31b84ae258056a048f5193723b16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7f52659ff4e453c76b238d74c1d818e722d5f7508e2c3ec5738d6b1a10855e13
MD5 89a09596f078452317fec5ff03fe7588
BLAKE2b-256 7aa6608421cb32585e5f2c2b8b3e106b33e2b3659248b87d1714052bb17fbb29

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 17.2 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.1.0-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 f310dba14cab0569cc92e15f8c0983131775fea3d482c950353f96d2c7cb15ae
MD5 0f03b938ed56bd2dd7eacf70d6422b17
BLAKE2b-256 5c614d9e8e11138091340eac6d4b9148aaf4da87616639f801de8d4a49310948

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 18.6 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.1.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 63da78de6561c4773d720779121956f3226f62c2aab9fdf3ad1412f11b6ce52f
MD5 113b78560c3cd1dd5fed87b6b2963e42
BLAKE2b-256 aeff1f8aa418d49e48a6449d746b76b4186c5ed83c8c9e75b5019ba1cb235a05

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 17.3 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.1.0-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 3e18b223014d03bf6c81108b0c54df8afe5145ac44f2ac4c246f8e473ad3af0d
MD5 14688413997b8114dfa7020dee781d52
BLAKE2b-256 a56a059ac91446888eecc00f7221ab396e56937ebf3106618e0e324763b11ad6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 96a348f5b8805119902e9f87237ee462117f364e97a7ec3af6fe7adabc803525
MD5 31d5b6036325feba48a214d58f2f9d28
BLAKE2b-256 2a4c4456b5347385eea92ef5c95081554db07cf46b06e9b5d90d5974d0183228

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0ba604c24fdfca192c57d9255adb78c0d10d575fe882d3ecf3a6beee285d9f4e
MD5 cd05a2a8290d3b335aa40a01e0fde5b9
BLAKE2b-256 b344fafaf53e0455eb24218671ddf4f6c12266850ef751126a3177d5d7747c9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c6d397e5ed5c100be4f20309c980afb6c2dfe1f169a73b5f234a0094af918b5a
MD5 86601ce7ffecabae2af29570f927a2d5
BLAKE2b-256 38b33101ddf316c10ce9484bdab43487928545bf21b4663b20b096de3dec9650

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d914f411a06eb4187225eb731dda335edd53163803ea12af2976223e98e7bf3e
MD5 7669059abfbde79b7a063a0305dd3ba2
BLAKE2b-256 5b7f5d07fd0f058b6d9d24847e1ad520e8ee62071fb308e4fce97182089424d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c63f2b5550a603060ff38f3f1b35d3608487c81ad73d62a02b4a7ec587f7d0cf
MD5 e7b46679e043595f5b885415a590eaf9
BLAKE2b-256 e8f44022598e72feb59c1d9c1447449bc719343d5c391cb61566559f13550dc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 58c8b8df8922e524348afb6ba61b3bc4bc890b9e0ef452284023d4e21161abdf
MD5 82ce09addcf82a575417f237de5daed8
BLAKE2b-256 8d8327856ecf65e92b50aa786c75a9d3ad6427ffaff2f5645ca592225e3168b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 254ff3c9545454ff197c06e60c9069ac37142f72253cab11e89484383a45fa9a
MD5 0af7bf52f88a1458e97cbd91e7e88f9c
BLAKE2b-256 506f7d6b23d5c6b2b2b299056fe11fd9f4382caf0961711ed00d15ac242a15c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 53849d3ffc36a7da42a48f4847f4d79f2bc5f7c3bcc1ffaf14a6d179be70d08f
MD5 814fe14c7f43272c350d6be8911f6bd5
BLAKE2b-256 edfd1fe19abe2a42e58e51e87853e1d1a858e53486a96d93141c7ea75f13be61

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.1.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.1.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.1.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2d165a1c2792b8ebb844aeaf5e5bf0528036af6c9dd708cbb0a9f92f8691cbfb
MD5 b203ffeb7e9d0e77953e9b0dd0e0e0fa
BLAKE2b-256 a67375fa66a37ba6417a86f81e3ac4b7781f625664a6e27b86d12d9c572448d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 64a53e1cc7f79036ac2a6bef3ad25b710da254430aea435b3895b4792cd1a752
MD5 8c65ed3fafe2e0536c5fcea3c2eda985
BLAKE2b-256 0089b9c2b202bcd663c061b019cd5261c61c081d1781e447974aea04613c45c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2a7d3eb7d57b111f18ba4c41abb5d79ced0fe057e44023ec7b9281b4430a1d18
MD5 9500e39b20e25b0d1af2e5708665e4c6
BLAKE2b-256 9c294b84f7a85cb020778f0960bf1333ba1f39330ac9e166b17bb901e9797b27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 990930a9f3108bc18f6011afb9ce65fea9b7c9559a68dbac7fd57e31975e9305
MD5 67b48a1f9eee4016f5800938f4fba5fa
BLAKE2b-256 48ac41b49e10f6e2fdb6fc28b0bb602ecc2cd1fe2d4d0718f464b9d3fd0b3654

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 52fc1e4bed6c72f527cfa7ccda689fac47c2201dc41bdac74eaa19a682132df0
MD5 6b86a0530b148c4dc449ddf49f415335
BLAKE2b-256 c856b4f33c9a7050c8d447509346e91425f67d6d040af02d091a631ac676595e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d1fb574a1d1c998a383ec9c20790cbeaa6d6a37d0ccbe78dbb5760a0627dfe97
MD5 85c45d382040031b10cc887933b28f4c
BLAKE2b-256 19571ec8a9fec6f1811628dabc892d2ecc4a321f3e5003c4685be3f966ac1843

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dae66de01dec4138c23e0cca92b74fa006ad6672d02b48a75dc4b2d48bdbabce
MD5 2094d5ed2936b999365166910565ba18
BLAKE2b-256 f1083f8107ffd9e2f20cff2c00b9ab8d4179de10ad85139466adaf0bfa4cced5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c25d9e57967c3d695c32b6ac60c445e3c062d145b70f1bdc6e462696a8ca2ebe
MD5 6babac478b2467ed71ad0d3bc797cc5e
BLAKE2b-256 6db80471e01d90fdab975f7e65ba154ea9eb37fc0b4505b133792667909caaab

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 16.9 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.1.0-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 48ea308f4c34ed0853aa58609c9ce69e028694b82a012ab365ae49b0511acdda
MD5 f6e2fb53015148a1bc83e7cbf3f12ad0
BLAKE2b-256 f49dee51b5dc8f379641d03c66e3f924541b4968a7e347975e081ffdffcd1dcf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 18.0 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.1.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 5d8beea77da57a6ea1e0dd7f2cf2521eb8687428c09db66cc7d54e7c6fc2c9f0
MD5 3d18e34bea6d9f5fade393bb6db518ed
BLAKE2b-256 7598cda982efc08980c4da19a55d847f0a480c4356eafd315992c48e6f06a1e1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp315-cp315-win32.whl
  • Upload date:
  • Size: 16.8 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.1.0-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 2ee4bd015eb5fe19513101dfc8146fd31d80ccd6c0513255e9e2d937fb4e01fc
MD5 945805ce2be7c50abe9e545a1533730a
BLAKE2b-256 01ddf77f8742810c7cdafc620ad37430858f15334fe099096ae237ad05e64796

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315-pyemscripten_2026_5_wasm32.whl
Algorithm Hash digest
SHA256 35dcab14592e795d34b0b7a41298ce72a45651357ede17b03626148aacb5698c
MD5 49a58750a486883fe87846001be72768
BLAKE2b-256 a6a235d4feb0dd6d1eec2762c5d1053750fb188a29ec3252f2db928c0680ecf2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d60bde29acc4d606af113faee711039c88ab34a49f0ea4bac71c291f5b0fb7d
MD5 314d0b8eb45c4986e06fef9fb523ab13
BLAKE2b-256 37e4b2d5457704c22d686b60ced0fc6ab52e607ea89cfc4d95f03eb636d28975

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3d9a599c3e5cee85ac4d1998993ff9614a0b3613df1fa6b2752ea3f3b088a985
MD5 56eb56ff7d15b76eec7169fe8f819852
BLAKE2b-256 26b5dcf037bb9bf25687684333d99588ad8f7f66dec06c218f63cdfcfbbc36aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3b2ed3722e567c939cc03fed480bbe446b94e28d953fe20b4368d168f5487498
MD5 d64ac65c9a6cdf2793527dbf8fbf14e1
BLAKE2b-256 6aa1f7f0f40c9910a60e4f191521583a13eec69871c59822ea05622a755f2f89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 65049ca31782b2f4531dc1e29b2f5b1b53e8d2003381393a427ad2a2e4066c29
MD5 51a23a5b9333dced07c7f288caf95214
BLAKE2b-256 5251dc823d26b9b1b5664a907eb07ab4e52ab3a7a5d21659e1bd269ded27e9d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 711b3b1d24c0dc95112179dcf0e6d6114dfc9fb1050bf11b28c8f3cd654829d8
MD5 7f918c42aec7fef04e4ef5439035b17c
BLAKE2b-256 c512d0b4d4b81a9ab0b5dade24db14cc0a09176b170a5f6b0f17bd0b5679c8a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4d829f1d070963fb067985255b9c0bdceb6747416a4e0c3f9357d567bfc26c23
MD5 66688443a1df854a93a8dbcca09d935d
BLAKE2b-256 0f358a1a04f3b123f8be3ddab0e983fa0c269eb904861f20bc0ce2d4f26ae445

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6af55f6947a6ffe8adbef85aed8a144f2341bc052dcaf4521c27c87e017f2141
MD5 269e65ba0e1b9bdee6e89ff500d9e5a8
BLAKE2b-256 9dcbaf73bf016e94b44629457b19ebd0c871bbdd1d0176c4cce3edfa64057fbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2f1eb6818cc5b099690f89a99de002aecfe8bf891b8b9285eb9884b18f8c0ab8
MD5 8106d1c6dc333ca8993f6d4266c704ae
BLAKE2b-256 1924b0e8cbb213736b4bff2e1a7eb23dc32f3c6091659fe97e2f2de3d513a056

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.1.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.1.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.1.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2f98567466f79e44c2a24bb990658f8d802d9c2b2c8381f30594878504d99335
MD5 566f611a3fd14eeaaaf122d956042f33
BLAKE2b-256 1e258b95842ffe3f3074585011fb5e6ab4571c2b894286367dd4721a4cfffb38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 8738756cfb216621f74bac66bde7c89c4010a589bceba7d739b10ae30fc09905
MD5 289ab2e71a539fe8e662aabd7a5517c0
BLAKE2b-256 2a8c9b00fba04c4618de9796236cad983e6f7a818f745ff2622093deb970f3f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2f42ea8793cf22817577c8affa532d4b3b15f0006adc485ec1ae6bc12b5b89a7
MD5 f6cd31857d55c51d288add98d1038c5c
BLAKE2b-256 40c5c077e52ae070333af5c025483ed39cc667e13db11854c6ce3e36a6afcbca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f02876ba5dbd9a04ad2f612272fcecc2dcbc83fc938ead47b2e997d3c560cecc
MD5 68f0e8d87284bc3dc15744aa1b56dfe4
BLAKE2b-256 3629f8b3bddc54320b4b92dd806290d854103b1c83517548c79f967afd9beafb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 86406066186755b4f313307f93d1a7d9e740b1a4b056ec7e476c81d239778cc3
MD5 8e42d1e54fe986fc2b965c6aba289cd3
BLAKE2b-256 f2da9bf810b9840de995cf7b6c238ffde5b1c9f50f3c18fc63032e8f5cc7bbc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 825e4224ffd990ad4650466a5e472ccea43dd34580499c0b59bdfb95963c2c34
MD5 912d06322b75efc7690cd8859847ff0a
BLAKE2b-256 44941ece2028ecf68cfd74fec9d636910029facccd1e3bb6525b650cd4ad622b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40347b4d6a4f220ef6776de8be9d53c6b040cc1496094ef99c8aa18531b22a68
MD5 ec4e84455d73c63b9d3602769d42f26b
BLAKE2b-256 d1db2440d72c8c712927f6d616955bcd41563cf1642a0559aa74bb9edaacd2f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 83c4f17b1cbe9ffbc8dd53f3960865b3e319a9808ecaeb79a9de5600c0c5c470
MD5 34a1911be875b0b3f687415283317e2f
BLAKE2b-256 9d195b137139487befd8e140694d0aaa668cf170b6c43b503ae37b71c895fbdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 033c56fff79ead848d1d1a26e1f8331eceeafb4b9c974c6af1cfc9add63b5dcb
MD5 3fe48e8eb82e8cef4868f30a49b9b01b
BLAKE2b-256 bd15b005e03bec7a96849828d789413a72f8b7bc98056515b7830b666dcfb1f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 9ecab7af1dc669d05fbf30be8ccca816b6bf5b7fc786530108f6e86505aa21c8
MD5 5ab2a6da37a05d57d4332877023bdec2
BLAKE2b-256 de63bebb1e53dc68606393d8b2196565a18c7535150964f00476d90860dd7976

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 9f9a13586f522464c1406732a7667a82d63d2451ff356ce7ab986d8f301f6c0b
MD5 c7f27419834b9512c870ec21b4fa4f54
BLAKE2b-256 f1fe75b6d679c6b126b83cb9ed38680f96878f6e6911f77c43104bd8acfea405

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp315-cp315-android_24_x86_64.whl
  • Upload date:
  • Size: 16.7 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.1.0-cp315-cp315-android_24_x86_64.whl
Algorithm Hash digest
SHA256 031f0fd0c6f89e4307bcc47ef650e21d667d07c5de16095d33666b7497ef019e
MD5 1698cf2012f8d68d3f5a04178a338aa6
BLAKE2b-256 8e01a890e90425ab5ebd990572e411a8d2ef9108396bb4d3ceaa2e47d14a1f49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp315-cp315-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 fdd046925495b95382d5fa351a1a4c1810f4c0065fc0afc078d81b5bb69882f3
MD5 a9ecd507f3119138eae9b6181b4a7669
BLAKE2b-256 ac9edb0bc5451ec38338ee21f84e67944a7ab2a853244b8e69f368de7ee75fd3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 17.3 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.1.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 8a4a210e12be253d3a48fe95427421c39641c784a129a8cc5c8c4911e2f8e5e1
MD5 bd59276de79bd728d4ab04eebc6894f6
BLAKE2b-256 5335bfdf89e8493d40560ca251a5d8d46f80cdb1fb645befaa7853c342bf6e31

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 18.6 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.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2bd8363be9def26a7c82560344f0564da76096ee9b0278ecb5db7fa6ad74e2c8
MD5 d78d93fe48d6d2f48cdafb6ca24e755a
BLAKE2b-256 8366cd8441503ca5c0ed52fd9b5590aced225567d6df309416dac18e9264d91b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 17.3 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.1.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 2e0d96005da32a496df71c5443a596b730411cc768e284a76763cdc0aab1977f
MD5 034e71216f1853ce1f8b22f52fd15495
BLAKE2b-256 7e23390001800f471a77bde90b2b732f094f0859d64a78fd647ae7bd7bded535

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8286e2bcc7f272bbe5f818ec194b81f66048c6e822d1bd5cbbb8a5a4915b976d
MD5 7c87ec298cfb4bce83df999c19401127
BLAKE2b-256 bcdb49ba7f8a87745b312490e7e3915d47ccd87fae39963c38dfb96bbcd35fcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9e4aaee8555e137da7d6dcf0f65a4ce1ccbddff5257e26aa8c07adb292bd3c4a
MD5 4db6188250c24a02342f08c8e8eccf47
BLAKE2b-256 a9a7dfe508e60dc6648185e8796109bb4f78ced4bd68de0b9cac5097abdd0fad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 382658077d7b8398422d0b6891c0345ef5f2ea8c4625b3c5cbad273f16dbd1b9
MD5 23eb72e207bb7bdde9c9ed132aaea353
BLAKE2b-256 504b771f91ea4939637fb126716e3938afa230dabf254da74fedb9b3610e670c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c6fa3fc41914e35cb577ac77490e79bc432c8f54a6e2aed8fbce8e5bbbc3b02e
MD5 1e71ff393258069333af1e47adfd62a9
BLAKE2b-256 f710f590370fba77233a767e54edf3aaf90a71963dc202e45165050f7ce99659

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 41e761755e64f2fa0cf9667e14b54c405467d1c416b085ec9d8677b910a7ca84
MD5 6e0bb292ed0fc23b559260a9a6ecd79c
BLAKE2b-256 06f0fe0e69b2698f0459d2f015552a712daa6eecc971255e340dce0d7581e42c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 438e59dd4872077ade73fc1bf4e6f2c01ee77d2205a24790893aadcab18a0172
MD5 c91cb9663b4f1ecf1e178b6e3043f646
BLAKE2b-256 c515612d7f2919ff962f47c0399d53d5ed2a946d644a164951a3dd221f10c3a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fa5926d9012357bf8b75d873c06a10826314ec78b8d54a751bb4bbe9318e5bb0
MD5 aeb17b23043d5a70cf77efe4878bac6a
BLAKE2b-256 1ef2e2c9c4583375b6090902d60ee9cb95fa468ef81f0bb9635e19f022b4afad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 634f9babf42ec20f948f1e0d966a1d113aad2de197038bc25b42b78a3b065499
MD5 5ede343f6824006dac7e2830ec83e817
BLAKE2b-256 071c79c6a31d993fe852cc4adeee79d71c9e444c0296e3d9ba0ae27468e9eb0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.1.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.1.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.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c5f0b917259272355b1c6a49e36abc59393360885b284f649239e07d176f4087
MD5 67f863e8206f24380eb27a216342abf4
BLAKE2b-256 a55cec48592f5d3f69bb3ece45d91fa4b2e7820da0238147bc2fb2d9a0642a4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e5f8ddf65b55f60f14deb181a6d023fb6655a2d18c807902ba2ce308500b40df
MD5 0991309689fb0d6225eff00453854b8a
BLAKE2b-256 b8cd681153f83e497ff961c43bd0de58d20a30f5aa6091ece44c771d5bf175b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 12f235ade4a47ec9df2ae14561bf5f9dd42b4034add62ede60b20d7c3642ce4e
MD5 75ba1f9118c67d2d0a1abd5cf496559d
BLAKE2b-256 e36bc83e71321ce8f0f75ef941edcb55d6738e013b801c92a712642398ac8f60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 bd73dd6babc4cc9c7d7142f8bed931e14209731cc482cd6ccb6e69e04c3d4fa7
MD5 24aa77d50229d58caa418fe5d5540d9a
BLAKE2b-256 36994b8c16fe9fb5bef3e18e4922546b839754b670a1db8b0324ef3d9ee65e8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0256188f591fb8611f8c61c84e75039c32e6ba008e72d5c87c790bad15c97654
MD5 c8a08a2d9f64523f1a8b0fbacde3769a
BLAKE2b-256 20199de320ad24207973d4d6e05c74dd25c45aa7e69957708a9d132a50ddf999

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d9ffd45fac3bc6cd62fb938c67ebe046dde418a254264c23f6609415dd98c3c8
MD5 49e067ff02f8a495e6597ba17541db95
BLAKE2b-256 9bba6f78579f27b972e4c402cd597b834c04ca18910aa3de6a949773c68cc179

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d3794091252012e56aae80bd3ee463f5cbf56c62dce2ec3040afe8ba20dd271
MD5 48881f5b7aa68be574005dd25c561856
BLAKE2b-256 ae219539772256d277d3e41785297b3f1f8ed6131bf61350146ced3c47f4f0d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9263aaea4f91ac8b5ad4b973054f9041337cebf0edc0f9eeb5ca4c3856eeb2e9
MD5 fae263feb00a7869defbae851acacf77
BLAKE2b-256 bb36dccd501dd44a8671bc0b2bdffd3b61399dc5b543b683312bd1d7d416828b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 16.9 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.1.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 611e0db038de00386b79779281ba8f810c8ae9ce009ea56e56657ba252b26359
MD5 0562c99589ea1d3d414a94138216dc1f
BLAKE2b-256 f73ae52f7204c1cd0a86909ce7ce06c873bbbeffa8fa90f517cc7837052a2a7e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 18.0 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.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c68f55b04b96c05493422825461b07d4e51a529fd70a66df42c9d094b05dece7
MD5 66a56148c1316f3e5adc633349c1d237
BLAKE2b-256 7d08caf09c79d55bbed29590e0011188bd65a83411a5a98b0be9bb9f3f71aea5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 16.8 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.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c7090327e6ca4f864b7aa412754ea2851dc4eaafc89dfcc493029879b8fc2b56
MD5 b2d1feb5811197f550ad906dadda0b67
BLAKE2b-256 f683901ce0eb85aedc2847622b4e3a7c6912fb9dfff2063da381efbf2e5cdd7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.1.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.1.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 100d447f7c6a56ac7b97813f17073741cfa51b18b147fc237835ee862c911ccd
MD5 6b8666caec066376a818c7947f8c0b6b
BLAKE2b-256 dc5b133145b03a636caadcbc5d9c6505ff346e6b2cd5879ab21a6573857f117e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1c5bc80371a7e522cc4e7eaa792a185865f39627024fd8e01f9cb71fe663dc9
MD5 5f0de3368244f91180e35e3d0f38ed09
BLAKE2b-256 f8419f347967b2e3feb46b6c67fee0edfe36230213d86cccf7a5bdfd2e8f903b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 677744abe319cdcc4a3e144691b8f339303a3097ca795a8c4837f7b080e751e6
MD5 f27d455043854d3bf31c241b34906b34
BLAKE2b-256 fadce7f754bd81e35f3232a3163d5b39ab6a09b7c5ff42c47a267661327bf544

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 aca1ed88f91f443504489e19747a9b4350d2e2c9cbe86857d85d1c9d8dad60df
MD5 8ee6724470f6e44cd9a85bc7acdee48e
BLAKE2b-256 0082e28d06211726a315ab1f9297f0149713a3e3660da873fd21de07a396a8f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0fab4192317cfeabc807ad5e509b8724c33ad7ab58f39c2d8e0a3830a4c91826
MD5 64a6c5534e7e1d2bd5fd120cf0813d2b
BLAKE2b-256 477a967b703bedcf7c793e69d9a1acde56520c80e1646544519bcf1501fddc44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e34b068cf109caefce91a54ebcea47a8cbbefac55fe0a7800090e4ce9fb3a156
MD5 ad0b59094cbf00d0188185881d763d4b
BLAKE2b-256 50a7161fe7ef095de79bbad73d93efe359ef18e19466c9f69817b18e072401a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 09a20c919803e36c99cff8dc625085ad667845540254e150a314cb0d94e3397b
MD5 cd2516be8393f42b49c8afeb9172da73
BLAKE2b-256 bcec7af5488d16b8db6aa4c4aa299c43a341d298006e728d8d290dafdfdb4e4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 76cf10c4a6e22a210f4bf580f58ee6ab24f6ef379e65a375d7bc3433ee908fca
MD5 c8dd5ba69d38789121f43353a47ea145
BLAKE2b-256 628b3e312a39b1c85a6c4fc63de4350a365428f57d45ee7e76de90d90e82c7dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d0adca385ebcc2bfb1149b118f90440ea53d92eb32e6f164d8a3133e8e27f5cb
MD5 265ff42bd296e32ece8c1a33879cd7f8
BLAKE2b-256 4323f59d7c8f56ea2294d0dd242dfbc2164700714a08a61da88853a573ea3c91

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.1.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.1.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.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9fca935c3f72b1f6b1d94f6bbcc154fc362238965c7da1eb0224844950d0c898
MD5 5c5cfc172faf4c07694b299234ef326f
BLAKE2b-256 6ef08184d71cba16c1ccfb9ee88a91dc37a42925be17dd61efe3ac3ad751491a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b4f7bcc357215d45d94c974bbc020bb176ddf41e9941853a94dde99f203d929c
MD5 93c54e2aa27e20070de5c0a14819849c
BLAKE2b-256 bc9b48f4fae8ee70286c88e992453b018b40cfd4da63d8fb2248c88e4230b6d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0febc0bbfaca6c57a4ff71ba87da1b203787b54a267bb18f6eb63df673ef208f
MD5 03cd6ff785f0db4ffdafc87e3109f9d4
BLAKE2b-256 9613c8ac7d101488920a47fbcc3b8f357dbb1e63f094078e5fe61596895e21e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 9a8d1094739becf07556c5e4297ddd0507f6b284367895318377c981d37afb20
MD5 79515cc26cf88a05e09fbfbdeb4e2e3a
BLAKE2b-256 38060626a5ae7cb4e3ce85e342b0606dcfaed88dbc2ae01143ebb858651dfa32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 95fcf9617007e7f90642125641d30e7f9e9bc7a508898e8d00a8fe92da445f4a
MD5 35dddd0b54c28a8b1bf05718c039a8e8
BLAKE2b-256 f8f1b0955f30f63bd940e3902e5019ba82eabf73558f0e9e1d88bc6e35482185

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 53d0a5706ee38dcff93d58ce2df54c51167e16ffc891d8628cd6b842d1470d90
MD5 bf8600c411a9ca27d5c614dc91cbad8a
BLAKE2b-256 55844891b8c1521a7c3c4e68230645ceb0a98d998739c516cde23aa69132baf5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d58978d4034eb587a83a7d942df1e3e892fbbd4d57734007d794fa50ba2458b2
MD5 750cb887517e52d65711ae811ac97877
BLAKE2b-256 edb5d565be3a96840663da2ee5387b10d0d585be80e0ebd6dbff8a7f8528a86f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7377b842b319a010a49bdc174c5fc2b650e57e493e2879365f8fc1fa49f1139d
MD5 58a305ad2eb849dfd866f702139b059c
BLAKE2b-256 1ba4fa4aaac1d98c857fb4e34e9783add2300fcf529591f6cd7f9b20a9619cd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 178b401762bc7a31a29439645adb4bb4f6f968019b11cf8433871264a0b94105
MD5 755fbdb380e22309c32065ee46208a51
BLAKE2b-256 4a58619fe498cd04db4a61e48eefd37480c882991bf85c5bdeb71d7e66a1a209

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 4d443ac098edb0d1fe69b2f8842bf89b2dc75a0d63b8f5077244ce81aebe40b5
MD5 153c0950695e042d1144d6ef92a6d6b5
BLAKE2b-256 248c0ad4d7f132ff9811efdfeae82e7288356e1f687d07427a64728c8b298218

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 32f764c1dd1d187bcb00226fb7bc4f4bdeb6e54b9bf697422ea1e8068fa0b329
MD5 df3422adf57417b086f00cf3637d8696
BLAKE2b-256 03b4b00150478567d0db9490c1085b12282e27e9c87bc73e2c20cfb5b6d156c3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp314-cp314-android_24_x86_64.whl
  • Upload date:
  • Size: 16.7 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.1.0-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 03dcc774c8caec1bb202a5d63a84147934c64e0fba5460558d48141f9258d466
MD5 18043221da041ad843535afda1237dc6
BLAKE2b-256 ebeb4d5d73a17183e3cc668eb0e7b7c2d9bbe807c6f4e37b3cf26408e365b89c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 e3da96f9496e3baa2d2b338f64a401df5546089cda047bf68c40f8e86fd76902
MD5 919e30ae0240452e180374472c53aea4
BLAKE2b-256 59ffb31582c65e17e8993f9c630bc5c87e5dae84dfa77de5be8573e48c74b493

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 16.5 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.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7f2a8069cf8b66b171371e2c9c92e32d6f612a122f2a96f13414f45e7ca60398
MD5 b78e55cf18d3cf45d0814efdd340e1a1
BLAKE2b-256 3af8e5db802ef23f7376d6ea9fb502ea8220b54f31dc29e361e9e79f605a906a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 17.6 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.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5d3f74f9a6df46867fc735a0d5fca59ccf2218bbe463b247940b7fa1f7066378
MD5 1a4a3f5c673a969013a69ca33087d487
BLAKE2b-256 0f40bc2f5fbfa2cba1e4ddc4a9265f843c8f40beb1945966a75acec546017b87

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 16.4 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.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9c3130d7b31189d7e44d9730b4ef92fc66faf6f2d58fe0e34be6d5c95d339161
MD5 d59bc2446d28636013266516e5bc099c
BLAKE2b-256 bedf535cbe96cf7951a9e592dc7145aae446e86f86ea7594cb6d25e2aad735f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.1.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.1.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl.

File metadata

File hashes

Hashes for xxtea-6.1.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 a9f661823aaa835ac7203d4e9841b101f40a7b1f620066825a195b9bfcb2c1eb
MD5 ea6cd1402ece60873a98c7442d64487b
BLAKE2b-256 e472fd30f7189caf5b11bb96557fa81b7fa5bc8ba758662ae9c7355c83f4cf9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e21b352f32de08064175acdbe0b2f3404b9b52cc0d2b22d5d7c9cd7af6b578ab
MD5 b668e41c374db376a570db8ee0a31895
BLAKE2b-256 4902162859ddb34bb8c0ce34a068687ceb4b5e67702884e231d198f70b9ee831

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 210e60cd374e7295c44b112e40866aa27094094ede94d553a68fce7731630d30
MD5 fc53be5a996b5eba03bf1d558b0b3361
BLAKE2b-256 fde9f032889c90172296465b922b442a17e9833798596f724facd4ae7ffff937

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c4fb90e74ade7d4fe0dafc7a135eedec979543678a49d17a8f7d23b7491ba6a4
MD5 bad588342f64f5cd7013d3c84820583f
BLAKE2b-256 10915c42048cb8edb1ef63485e91c1edf272daa5394986291b4b820974bae0de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 386ff6e1a66cde809551ec59703e27770e499968216b9a0e249c9a914ba53488
MD5 d9509e3733b3643eaf76a38aae52b45d
BLAKE2b-256 709a95d6b76a18c68590db7f5fcf09c787bbbd8d8023d1bf4197b8e2e68f1bc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a946cf44fd5a74c309077db00d8c2dd4fb2fdc5727e66344d201c078e3ed2362
MD5 996a0e0215f3f1ecdcad422c0d3fd5ac
BLAKE2b-256 170d4a4278852196bb9a5faa1fc8e2fdb50a75921ed38c1bcd04ce18d7410506

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a3a52d456e2cabc991cf38d652f5b35fa06ee06439938b169af2e8d98fac9178
MD5 5f20c675721780510764c4b456710ea7
BLAKE2b-256 5c209df7c5d449d3ad4ce475719bb74db26743b070319bc2ba3d717015d1e367

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 afc291b440d869d788deccf84792d08e4b0909d30b7551d1370983ddfd57b8d4
MD5 b13ce54f1c9549f31d6f852a838d29ee
BLAKE2b-256 7f1fe772080d2d088043797b7011aa17d5dd5db41a2c4c63c3324bee16426866

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1108807ab01ad4d73a69345b24d8e035b8675fd73a4a54725c8cb262ba3649b6
MD5 2c58d10561ba639cea10e45b394ac7bf
BLAKE2b-256 502f639924b1ba1c4b3485974f57d060373d67918884bd0e26e3575ff9caf6b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.1.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.1.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.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8f94e7d17f34999ef57b25defb403f06a167291ffd62e1a52764936c043e12d5
MD5 e028ea9c9fa1b495cccd67713d7d50ed
BLAKE2b-256 6c27811fafd8e92e2c98214776b38579bb17385b242eb67d297f317b55657af8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 ad614d26583dd40c0511bd47d38ebad6d24571c4476a55dea80805ffaac8bb4d
MD5 d9bb4d4e1a5e706914669b216ddd50ce
BLAKE2b-256 6030fd1e389b0671f6cd5a76e1c4c32d54e70b13685aa5b00a75fc6a20752af9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0ed5d1214df94cbe619e11ba9b7627006ca4b0403437f0dc521b261cd0bc96c4
MD5 1992b5ab80eeefaee9146b6a733e23f0
BLAKE2b-256 5728bc94b4e4db6f28f976451ae1d74675e49a010c8d9cb3c0187324f408626d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4e3d22e6abb53429cc42711af136853e97f1c8d80b98b38bb1fb6045700f23fe
MD5 5e92aa04a8015156d2c0632a73b49650
BLAKE2b-256 e9c84a31441000abafebb0cc418e388536b28a694f48bb6fd967f77ea0da128a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 108477d00d6b44875513d967c009589cc5e3ae341f5eef3a502f2104f0258afd
MD5 1b3d7b8237e98aede9c191edd267d7ff
BLAKE2b-256 a6c2a64de402419126d4c169ae665ee9d3516658d1a8a6b41d02f9d31a204e12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 60e5d7a20d6e95540fd76999bc4fb0a7ca88a74ffed9fd1bf01a209c3fc29fde
MD5 7063eb1f18585621bfb262962434073a
BLAKE2b-256 db0e13c7853e9646cfe0093b3ca55ccb379e787bb8be47506bf40b76a54d3a27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79a89c5db43dc0bacaa6696c238f619b25396daf7e0d7bea8524314bd40c4be6
MD5 8e9790c7246d091d9840868817754ace
BLAKE2b-256 45fa3bb120a4df21feed681c677ebb04b0ea16d9162081ab8a3e1f194d04c31d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 36e33d32187fb6187029ac78cabffdf9dd99a9b5d9a7188de24d74b2527ef209
MD5 926d1873bcc54fb563fd199b8b448b0a
BLAKE2b-256 8bd7cd8eec8e83a500de35f96d168e9bcdd36057ac427a2e01162d91fd2e6d87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 9364929385318fd37e873e086be7a5f6eeab6f889b0c8f391362452db4f56933
MD5 2d2aba3f374574ad02996d7a3685ae51
BLAKE2b-256 15ddc8f9d0a655b3811fb4944d87d32103f5f86ec04662ccd99ef8e18e2ec325

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 9543eeb6fcb5673c763fe8dce65797acce637fe4e4df85ac617fe6d96a61dc77
MD5 f72de809ce1b3926dcdace8f86aa668b
BLAKE2b-256 76d1651d658a501d62d0d7c8b5c3eb3caea1df63916f38c33ccd5fe6e4774305

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 a5274b621c17f18eac3433e3821e3acff851020e4d7afd258a45c9042828a22d
MD5 d894d67b78c9793fd56d6e8a9029864b
BLAKE2b-256 0015ad9d1e7899de45a8d4990d4c7ca5aea9fd5cd755d9b7e841564b7c5a1ba4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.1.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.1.0-cp313-cp313-android_24_x86_64.whl.

File metadata

  • Download URL: xxtea-6.1.0-cp313-cp313-android_24_x86_64.whl
  • Upload date:
  • Size: 16.7 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.1.0-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 99e8d938f4f6eab12f1df5cb65dcc1de536765facc67851ea1a8fc6edf896ac1
MD5 78f859bc2f515c1b4881a2efe93fe493
BLAKE2b-256 2601c5d2d979ffed52ba9655de7a8895cd915c16c9f3f22a4c0ab5f02c9b8409

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 402b10255bf4a5266f405e04f484f4014895515a4999cee0997bd7dfb0688363
MD5 57f17179dfe65b34d346d1ddde4fa5f9
BLAKE2b-256 77b8612a7da120e0a5b98366bdf955cc9a3bd62c2d58e6913b6385da73e8d3cc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 16.5 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.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 07926072408280783006b7ae7023174371b31abcbe3dfdaa265697a6b8cb9c93
MD5 6ed0b1f9721a5e6fce5901c4d3c06720
BLAKE2b-256 4b2d214713ed6b6723e3af89632b01cc9366e6f62a0b51fd8494c6ed8ec8d537

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 17.6 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.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3cc537066dbb4028206275bf57a58118ffb97d93ad5d2c69374d5daaf966b38b
MD5 39ea4dc645a8b1040f75dba9d848b9aa
BLAKE2b-256 847bd08157e9ce5e2c6ae589912c67737b6967b0e0affde03373e04ac625f1ed

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 16.4 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.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c11e9e592b709322e857e7e826b050ffe35fa7d1d0345e18188896dee995f9e1
MD5 01b3884d5dad1fbaf9be9f1fb9989fd7
BLAKE2b-256 9714327f2998c7206322990619d9ae186f786722c710a0d8a67f830f105d2231

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.1.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.1.0-cp312-cp312-pyemscripten_2024_0_wasm32.whl.

File metadata

File hashes

Hashes for xxtea-6.1.0-cp312-cp312-pyemscripten_2024_0_wasm32.whl
Algorithm Hash digest
SHA256 1445a60d0ebe89bad59ae0ba929710f6cca18dbc3844b94dc49352d9f96d7c84
MD5 40253f85859855511f666c8bc4fc2229
BLAKE2b-256 b372a392752baf5af50a477bb65aa1d401f54ad4c1265e3b89f9472add34aa87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7adff70bad4862825040a92402397ae64c85a0d71fc90530eedec0ef0a03c5cb
MD5 70f6a26b584ecc527a68993ecc9ccf63
BLAKE2b-256 1bfd7d56f773a3f9f1eb3257a6a96607ff4f0196c78d9da78cc81366c5d1441e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6161fcad96221d5e0cbda1b50d65dc9305400a3405eae555f4ef7af9802e7672
MD5 cf56ac89bd762158499906aea1dfe42e
BLAKE2b-256 d373de7145be375a28139b354bf38d6846f3d4f96b3d465971934aa56857ee17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a156000a4a97889cd78a4d314be0c090ce4462fa570514aa58e368cc483d3c65
MD5 7415995abc799571181a38c0ff56dcb9
BLAKE2b-256 4bd66b05078bef5b64e72a70b045940aa3e6c575dd6468e45e9652233f6e0d75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2f2396a8fd374abb7083eace132ced688e7d51b76269d159be315025d0e9ba99
MD5 472c1905c0abb712d57dd8e4fca780b5
BLAKE2b-256 3eda58bd98b0d180484c25fe9d104b14c36a14041e65eddba9639aa8627cd901

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7592a117ff02f3779177f99739b23fdc87de2049dfe84fb815d4602e059a5c29
MD5 ca37a3b3a6ac5e4737119b1acfcc9515
BLAKE2b-256 a17b8853a2133a8b0a588267cc67f46afcf5dee39a9c77a03ae3207c6f66c157

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aed37db41d269a1a8548160e837aeb3c4340b0b8d942b3a2df10cb33bccc0b9c
MD5 ba636bab2002dcdc68527363fd73fa43
BLAKE2b-256 d6b2306874a9e0745fcf0174096072024b862eeec7d265d47a431accec487651

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7a2c93457d3f13e68606e3be1c4c8141ae5d5fa585b204cf3a86b2e9ac59411
MD5 7e93d5957a8a8d9689d013211d397132
BLAKE2b-256 0df5e3883e749fcf5d8197d6c25a27bb5dee9091613571e931dd05cae77da8d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 cd31b714a07161c6a4c15bb83b5286e9cb3bfc4da6a9aace1acbf6fff4881e48
MD5 109b3aff4371f58aac24e2742776b680
BLAKE2b-256 6da79abfd23dbc8e494726131eac73cf539764fa7bb50c37ed81d343fafcba8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.1.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.1.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.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 19c5fe2c6a3bea17e35ffec6d406c633c63f9b29bdf1c1d0bc6741559b486a2a
MD5 c204b2986434b3c2f54b2fa25646ce64
BLAKE2b-256 6be5ad1102da462ab73998a5373a6649694a3e7c3c4f615363b5b6b47f7d296a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 892925c78ce89659382ffa3c1f131bebf833c4498b796bc33d5e2ef1083d6231
MD5 1008774eb48bfd7a710512e2ab4dce09
BLAKE2b-256 e38a97737468118501d6404b4e16edcd6f3474beadcaf3bcb7e5c129b433072d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c1cbf7e9a74cae4628a8ac39101549d9db899a7d348d5012298b1d7f07ddbdbe
MD5 b10c873451170e5213c825ab6405114a
BLAKE2b-256 37d5ded0757e5b19bc3cbc2c6c544dcf46f26946d3474b9235cbb35e88bfd1cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 bceec8e420d41ae7f4ef260443c531c9347b0fc79ab8072ecacaf969f95b3bdf
MD5 2134ec3fa5d3d6dd2596e2eb8abf38fc
BLAKE2b-256 26ed8609fdc769f80c60414b2df993326460e8b0873a37d755e9f1f02a2af1f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0514573004aa02050be958ce0c85b04bf74c387ef7e715719d17375ad364f72a
MD5 f7609db0c1c4c38e58db37d6312b9a5c
BLAKE2b-256 a0699f76f0cb8cdae8bbd45ad04a7e8d90772a761eda2b0b6fdfd6550210aa96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 8f8374757bd9b2d66c0581ba3fdf4316bfa9b897c092207e828b3ea7537b2364
MD5 9d257128f9487a275621f93e9c80f0cb
BLAKE2b-256 e46822d370925dc44df1226d54e748031f79a174b3b0f9675b7328b85f616a74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d98396107172b20e6dbc45663f2ed350b49d33233e1b24720ab6113f0e820a19
MD5 b3deee900ec952fb283286f989588f1b
BLAKE2b-256 b4055c02a8bace13d3e644426bd67f8db1216ef99ff660bdfa2732903a69f8ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f9fd86af3272f1082d53b6eb002ff11992f52848b6572dc3e0d3e654123e00db
MD5 54b610343c48a03c68fd5a2403770991
BLAKE2b-256 db13d566faf4356bfdb2babea76b4ff6a69723b9eb41b5310ad49e4efe74788d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 16.4 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.1.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 8a865bb64c7120b3482d9c3cfb8785f241c9ee011ea7802d2ec2aad7fee8ec68
MD5 40f072908a7d418730edd318a3f5e009
BLAKE2b-256 cee61ceb6a6cf39b374c33f1dab54bdd36cc7c0aefde6af188178f5dbda03ed7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 17.6 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.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d936214391cd12598269ff15f8318218518617ed68e91355cd0b4f9aec2e8d40
MD5 cd08c19b29a15361788712f323337dfb
BLAKE2b-256 d3a34078d2e2af1026a9c0d6efd0991f7834879475115a5999e385ad0ddbeb39

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 16.2 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.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8c1c778f7f0d059410bfe5f1ad3da2c2afb5cb90cb72b12b337b32569b6008be
MD5 45bac8375d7bc956d4714ef1633339d5
BLAKE2b-256 347af4ab823ec60538a41251be11976d14508403e982219850297220ad3d42be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f7bffc1f74e8a7078d4be8f943e385adc25253b73a12e924aa5a16b996b50d0
MD5 89f3fc2254f989fa97d402e369463438
BLAKE2b-256 70a4e55c5042c934598986a4867c077fce4187a5e40ef8a52d502ad6230bbe45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 068bb5df18480dc6a0838c6316e251bd60f88e518b2110dd371b6992bf73d214
MD5 4cff32f94d231ba0c35c21c7c4c4f8d2
BLAKE2b-256 1a143fc6ef0503d6e46bd4a25d90fe5eea8e80d5197e3964e0cf1d67665b0cde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6480069831c3d7b7d58f380a51979738d003c8cb9b558e3249a767f40dfc4cfa
MD5 77d1ef236506c9f3d428a789b723ce29
BLAKE2b-256 7190c1c46017d68034be548c4b4cfbd6951f6631bcd83480db1f6262668163a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4deaa744a812c188b1241ff45cae529c335c5c47f890c594c53ad9d909d70a4d
MD5 d31268801175cc59466d8a2255b62fe0
BLAKE2b-256 421913614985b5490e06fdcbf303ba2836ee14a7fb90f09915a4bfe34448d894

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 03a75a4f63c35a2b4bb6a1cf95229671b911049284857cc22b531f259d8587a2
MD5 63f917c1579b25a484c0c15bfc821bb8
BLAKE2b-256 c6c9eb3ea0cca9d6f1429bae5070a49d734662aa8859187a938a5b8bd9167bfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dd530fd33dd076c8f36a76baa66c1fe5b9330b387016fd3eae1792f8873fd559
MD5 00fb8b05f584b6167b8ab47d822c8ee3
BLAKE2b-256 3fa8a8d1a3eb8d8dc38f3de31dd47a8651d52e78d3a9e7d112e719596126e67d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc534e4084cb09723952428364028f3ae6bce0d587aaeb692737f1ed328b4215
MD5 fc0bdf7190d0a25090050b0849eae5a4
BLAKE2b-256 238cbb32a83348d195cabd2629b21faad750dcba865449e130b90d0bfbdf08fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 29b1baea171e7c23dc14d6257c2064edaa9adc33b610a89aad2a130a4fc3e028
MD5 9eb54fd341a74c67bd5cc41697b2ec44
BLAKE2b-256 093414d56f12410f1f8c24c6b8df7cb54f6f57f493d042e3be334e644a12dcb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.1.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.1.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.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e307037860a275a454070d015757a48295d5cfb0b8635e30fd15e051320b2ea
MD5 87efbbf727be0c6806560ada2060c8ce
BLAKE2b-256 0038d199331145fbef6d9189bb327d76d8b20f33a67b0e033d9641582a7b33c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 13e8babd5c3d4cb71d0e8436c783a6b1616a792498ac026d0ee630788558fc8b
MD5 08007fe3bd14b9ab3cfe6c276e3d48dd
BLAKE2b-256 1987b54fc99d9a5f8ffd891dc4583bdc71b0e95d2e5494c781cb8285f8e9931a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 bbbe2335b1b609238b25ffd8de7f2273510ba93e86d31cff804ab754da6248da
MD5 b0724d9a21acd0ae952c4ac7863014d8
BLAKE2b-256 45f157d208e7a34edef5320e472d79b14f38fb30f51e362754f050a609f4400f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1524a4e949f435295e8f1ca44795328192c11d82119bdbfddb03d176f3167af8
MD5 624015623176e6131a02774742d3277a
BLAKE2b-256 64334c90564cbbd18c7fbc0ffd7be832d7584fc2be5a6bb13e76ef7b12ff04dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4dde95db285b5e2028ac7bf5ede9a150a19b0ebfd0b0b093632a6ddba0b61371
MD5 ead49e9a2e461250b8bb55244104eaf0
BLAKE2b-256 5a5d29b98a06e83450f5800d1bd4d6479fe7f46fe8dfcca4158a8ac226dea927

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 32c74d34f3753e3d7395226fcd854b5c376669c85b315975795958e6f9215fa9
MD5 ec39a8081c979dd23ebca457bd72d49b
BLAKE2b-256 10a4dbd1171968222c0c1fcb3e170a7810d7ca0a2f1807cab936937c7e8ccf6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98a07b659093ceeb4db3b78d02e8cdc3c448c5bf3eeab59ded27b9528b9f22ad
MD5 bc84910bbc13806e7ec9c38a160982fc
BLAKE2b-256 fa7a32239c16dd2e9927df7f8a317a03e1fe8964a7c54443a6b192318b4a1e5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0fc0ae5858d55067bc950976a621d76a2630ef154e6c01c76d43b572ddf8e9f8
MD5 5e9394447ffe861c942136c101f4417c
BLAKE2b-256 2f2dcbe4642972c14626964eb0ad16438a02bd3a2935224d45371c8882ca2be3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 16.5 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.1.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 086a3762893aa4a0a85689963e93922d047529e26bf7ab57ba8fd56f036f0976
MD5 cb886b2ef9c14e46d8546a1b8618c611
BLAKE2b-256 e362f9e91a8e9e61809449e8d57bf4d3105f8e3026bd7f3c9b2beb253fc942cf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 17.9 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.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 698ac213048e1de771ae90ae1ab6687f21fe1f5bf481ac5d86e0f37df6437fe8
MD5 701ff9f2c99e8424bcbbaf7e3656c402
BLAKE2b-256 31f5aec33009500e8dca8c0f088d01a58d39bd2bc77d45756aec0bc40a39f9d4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 16.4 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.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c9ac09e3f448068bd023a652bb1e6e34364f63f4c1fc2ddd4ff81ad06ade408e
MD5 81356ccd63461f427f22a4f88fad5be9
BLAKE2b-256 9712e060359e90059e1c97021fff5b6b17689086883465aa9d98e803e1f6db3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94a01742159a609ea18b567352876c83312f959dc81b7a08ed2a86a81221d9e7
MD5 5f5f9d0bed3dd70f0b9819559eee4b39
BLAKE2b-256 39a76e21a004a5da56d97e489c86c876f48ae3b8fe18ce3fb71a57c5d872f34d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 32cf1d9221f2beba21d3dcd3385e79eb3a02363f51221f1d35e1f2a1f2f3f334
MD5 39c1481233bc8e4744277c92b6213419
BLAKE2b-256 aa8261fd091833e234295730939409ccf1bc0c1814ffe47dff96285503b8fafb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 22298fdd4cfc0372a12495cffb1a058372f8ea65c94caf940b18fba46699a19f
MD5 53bfbfd9e355808e6f2b0f0160efbd98
BLAKE2b-256 b731427872e25df5a7b691d6961994162bc0ac91722017c215376faa86694b5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 20d93dcbb9d86070c3bb34f63df7d73d16228b10eaa4ab679b2fbdb4aef94d0f
MD5 2a572c28667c8561941910a0336a725d
BLAKE2b-256 4596d1bee0a1bc96715972c72447366d6e0d1073f81e95e61cbda6bf5b7f6a5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6d407226d1e65f8c32949c0da990294d2b99c1abf38ecebe0996dc52b7d6336e
MD5 5cbedf99694710a89448af2369dc2361
BLAKE2b-256 5f448bc560be934e80b0e22b9d81199872ec7caf3eb3fefe0acda5af1689f264

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d3a256efddd46739d61add0295b9c81c5e4efca4752ad13b79113749c2321c43
MD5 ea37d73aa2043607dbd4b0180d88449e
BLAKE2b-256 7ed9d5f693c316ca2b3a90c2d7382beb8de45625550910f608f062c7fadc7ae6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59fb05f1587fa5c12c2119f079c06583a361318383f8f19ee0376424fd6b64c7
MD5 83a31a10d780d90961ae894a25be0ec4
BLAKE2b-256 c112ad22ad17710cd46dd8d64a73d6ed98169a64f92435e1540c898bbb5161e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e1e4170dd5f62a3fa430dcd47819a60dd9e2319832df44a03e370bc791810cea
MD5 96eb7657178af00f933661597946e331
BLAKE2b-256 3deb16ffa812237d71ac44bb6759923d446f6f950b5c048489f0fa8d2e8fba66

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.1.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.1.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.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 16258094192c32136d655760ea807ba02a2fbdbb4a3fb6f3dac0c2ad10c7c27c
MD5 0d42f2927a224ae7c0d091e07cbad7f9
BLAKE2b-256 889b57435229fc6215dd5c75c009df1ee974a7df92d47251bc9ea5e12d027664

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3e3e280e2468c52262fda2029ca89687399b8f639ac4b6ca490d2ae67dbee465
MD5 e3e9acee66924d49372f2c7954c6b3a6
BLAKE2b-256 af269cd66be438896fd06a1c13eb2f64c67302ca53aa25349bbe63de4f2116a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5c8f4db59230ba1d2ca1980ce6d025d98a0d59820ff1a364c8949e9666f067bb
MD5 80051f576cb65771f390d7f3fa041869
BLAKE2b-256 17c0dbc7f04ee9ab0d8a8dd28f943e65d0ee1f0b0127ab28404f2d8621e096db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5f2f94e7fe1462f07b3d62739f9ef350b6e7856df5c1da932c4beb7fdc2015a1
MD5 a841de598e0e5d868530006eede61017
BLAKE2b-256 639117908e3061c162587d943b1c9b8b038af3963f1e7485ff359231ef62ef04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eea378510f30fb080d74d92e76105ec7c0cdb2474f7f376793c01d0345f91297
MD5 9b9ab351ccd831652ccd24287d134e84
BLAKE2b-256 43a51bafad8c189f3e700de86ac0a6d7f8b3710d8aed8dabb9590086421f441a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a3f70c9b04524685ac4d514101c595eb291548649e09c57e11490940e6ea8f34
MD5 4d0c2339842e6415b2cc762428b67a06
BLAKE2b-256 f79912456c9bc5e5bcb836a3c9fa251ac0012fdcca2e082a63d9351268061e63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6072c822a8481cb07d52f637cce78fb4ced2f6f582aac2705d216ca08c27275f
MD5 645325767895e7f9d408ca94a8552779
BLAKE2b-256 131f93b98aa90b90da05e176d7fff350c052c2156c070bb66c8da0f2a00b0d60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5fc3927308e8dfceb046d4f174e65d7c51dea95f9870335e175cbf308182fc69
MD5 ced59750f513e9956c63861346ff4093
BLAKE2b-256 e8dd7063108d89086c7384b8d25811185227b98401ebcc0f88dd5880bef3b904

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 16.5 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.1.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 1ef6c6682de184232e11daf0f080a008553e4fb02bc709d9bd3564c292c52f00
MD5 b7ef986c9b81e14186b376ddfc16854e
BLAKE2b-256 1bc5f49d2530a1b206668513381778a01fc7e476b32094a71ec2597e0c75b899

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 17.9 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.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e9abb56b2c922448ac9a5a487fc5f6a4da012f07396b0595b824959c7b6db3cc
MD5 528514b6c86c99e8d67e024af14f417e
BLAKE2b-256 6e2e95a1486ad3787eadc830f335a032ee93f72223b2c3eaa265d7d1b43e8d70

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 16.4 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.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 30672830a96f754f39fb8810b80f9e10cc73141aac19593a38f0caaddef3d29a
MD5 e7ae7e1bab754d4918098d4e22d1e6d8
BLAKE2b-256 e826946cbdc57768627f61212de35b359ada3fae4dc16eefb5f354e67fa36f62

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 78.2 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.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f3ff769aec7727501ecca391c7e0c0cc5c3e84a7a9e852c3af9041218f0d8ca
MD5 2533ea7bd202dbe2a26c529b9869cd5c
BLAKE2b-256 bbf3368d970239230964d459490d3d2fe309467e0179357f84bf93b1c290e127

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp39-cp39-musllinux_1_2_s390x.whl
  • Upload date:
  • Size: 79.8 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.1.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 27877b8bc90181329d88ecdb15a8bc147f57753a6585711ef97f28d219fd1dc8
MD5 3e71ea20c1eb7c92fa187ab034212934
BLAKE2b-256 4a787588e229c6aec8a0d95042705eaf014a1982174b2b6f1229492f8182d980

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 bed4648669b82df7c1cac37fad7c3a1f14ecc2dcde75f19f4c3e4e37c78f2996
MD5 70e21f47dbd7eab9f69243bc25862b8e
BLAKE2b-256 e760a8f1f530d3e70bff1421b76402e0c598afed590c5c3fbb000c882e8fc95b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5609509d3453de169307bf371b54952de174799aab064f2b4bdb4342cf6eda47
MD5 eea79b9190722a25b6c02528ebbff421
BLAKE2b-256 575398a14bcafbd8dc23b9ab93a14b6d7339799df4867e2e8fb31eb23f2bbb0b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 73.6 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.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 81b9e66c0bd74ee815d11414ef2af4c9839886f428d60c61700b37292895f650
MD5 ec493d628227c39f62d7f27840081b67
BLAKE2b-256 87a9299a58bc488160188d6b2364a8ea2bca965571ed8dee028c48893e3e68c7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 75.1 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.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e21a6347d96f24b97d6c9a7279fe28551dbeef1fcff0af92e1c0854b23cd63e7
MD5 2fb4479c9ab23253333d7c594748595a
BLAKE2b-256 8ccb95e49201af580b4c6b4951f1547520d831e9f0c839d27f929348c4854b28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34c3d6e97a71c96a5802b20ea91953709e7187a7f63a8f9cfc79bc5c57e91521
MD5 782af6717bf29a335751ef6c6bb7330d
BLAKE2b-256 8f41901e4d9c4ec7cd53f3cfc0a575a2b83591ede1639d9ce7f7493dfa592246

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 fa737e637558a8a97e74adfc451063c4aea368ef8bfe66eaa7ebc9717c711b3d
MD5 8d1d0adf6b3b3f173a0d0932cfb22c09
BLAKE2b-256 20102a33fc9ac6ea85d32d0cbd1338f7e51dd2f59a1a7c4afe7d3ccbd0728cc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.1.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.1.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.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b107675a853be2b5304313d5b0c388abcf77b9352c09d890ba10f0972c2cae4a
MD5 bb7f4caad1b8b7b27e68e79408f051c6
BLAKE2b-256 2dc85d8a384d2145f7a3fd22c0346f54f01c5a60cddeb3578f9e5fddd6241838

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b2742d1ddf19341e07e711463dc3cb2af10a6efe85c4cd7af30b099dcdc57a61
MD5 c3476a316852b1c0ca81748d2825ed24
BLAKE2b-256 e3dbbf08398960307395507c282f2bc129d0cb6fd4c6a71112680ca926f0383e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 17574ecbb0d1ce6d8f29878fe42d312641400465926563071d4c41a2a08a62e3
MD5 f4dcf758da60326e9db29e69efd5a175
BLAKE2b-256 f45481efcdedde91a456c263a78209ea43dcd179e3554577e4b40df42f5d5f68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5dbeede1cd21789618efb634854ef4a0a29e643e533087426de4922191d3e29a
MD5 05fff0806f88d1026ac6e0ec72477824
BLAKE2b-256 d0002085af6a84f3167d8f573d5c90518c8130e7f14ba92c79ab166adf2cb199

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e5b3218862e418b3d28e9f7c82733f7e5c1df4d14bdd112112ce481da634c8e5
MD5 4e5c6f0ef5e24538ad7101b12a2fb195
BLAKE2b-256 e99ef8d36548412bd9bd560bd29f6a2ce90dcf8cbaac8f82918416958a25ac98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b89b7ece384007d7fef6709878b726e749ef085c188dffec40be162ae6836f5f
MD5 b018f6550413039424e86c82fdf8b7a6
BLAKE2b-256 bfeb1230785b805a88ad1d8351f37d87ceb50818d9b7ce4611c57d062c296b7c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.1.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 15.8 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.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b45a9c6c030377bf571b6b349a7071490789bc10f81e40f8596b16ea80100d2
MD5 b372a9664c950c71a9ab887e9283820c
BLAKE2b-256 4b4cc519fdabbbaccb46ab1aecfd0e791c3430d47ad9a9edb73faf7eded6c443

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a8db7fbc0c21318835f3fc298a9909b722cc53704c750e769e35f75ef31e4f27
MD5 b35a3c2b1aca10314ed293bb9bcd56df
BLAKE2b-256 12dc55d62ef8c96ddc19a940bd82e29443dad9dfb25623949b4886e6881427e1

See more details on using hashes here.

Provenance

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

This release

6.1.0 This release

214 files

6.0.0

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