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_PREFIX / "length_word_prefix": prepend one little-endian uint32 with the original length, then zero-pad the data to a 4-byte boundary. 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).

  • 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, xxtea.LENGTH_WORD_PREFIX, and xxtea.LENGTH_WORD_SUFFIX are aliases for the enum members. They are also available as XXTEA.PKCS7_4_MIN8, XXTEA.PKCS7_8, XXTEA.LENGTH_WORD_PREFIX, 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.2.0.tar.gz (29.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.2.0-pp311-pypy311_pp73-win_amd64.whl (17.9 kB view details)

Uploaded PyPyWindows x86-64

xxtea-6.2.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (17.7 kB view details)

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

xxtea-6.2.0-pp311-pypy311_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.2.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (18.0 kB view details)

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

xxtea-6.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (14.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-6.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (15.1 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-6.2.0-pp310-pypy310_pp73-win_amd64.whl (18.1 kB view details)

Uploaded PyPyWindows x86-64

xxtea-6.2.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (17.8 kB view details)

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

xxtea-6.2.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (19.2 kB view details)

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

xxtea-6.2.0-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (18.2 kB view details)

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

xxtea-6.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (15.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-6.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (15.4 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-6.2.0-pp39-pypy39_pp73-win_amd64.whl (18.1 kB view details)

Uploaded PyPyWindows x86-64

xxtea-6.2.0-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (17.8 kB view details)

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

xxtea-6.2.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (19.2 kB view details)

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

xxtea-6.2.0-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (18.2 kB view details)

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

xxtea-6.2.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (15.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

xxtea-6.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (15.4 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

xxtea-6.2.0-graalpy312-graalpy250_312_native-win_amd64.whl (18.1 kB view details)

Uploaded Windows x86-64graalpy312

xxtea-6.2.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (18.4 kB view details)

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

xxtea-6.2.0-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (17.8 kB view details)

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

xxtea-6.2.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (16.6 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

xxtea-6.2.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl (15.6 kB view details)

Uploaded graalpy312macOS 10.13+ x86-64

xxtea-6.2.0-cp315-cp315t-win_arm64.whl (17.5 kB view details)

Uploaded CPython 3.15tWindows ARM64

xxtea-6.2.0-cp315-cp315t-win_amd64.whl (18.8 kB view details)

Uploaded CPython 3.15tWindows x86-64

xxtea-6.2.0-cp315-cp315t-win32.whl (17.5 kB view details)

Uploaded CPython 3.15tWindows x86

xxtea-6.2.0-cp315-cp315t-musllinux_1_2_x86_64.whl (96.6 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

xxtea-6.2.0-cp315-cp315t-musllinux_1_2_s390x.whl (98.4 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ s390x

xxtea-6.2.0-cp315-cp315t-musllinux_1_2_riscv64.whl (87.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

xxtea-6.2.0-cp315-cp315t-musllinux_1_2_ppc64le.whl (100.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ppc64le

xxtea-6.2.0-cp315-cp315t-musllinux_1_2_i686.whl (92.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

xxtea-6.2.0-cp315-cp315t-musllinux_1_2_armv7l.whl (95.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

xxtea-6.2.0-cp315-cp315t-musllinux_1_2_aarch64.whl (95.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

xxtea-6.2.0-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (87.7 kB view details)

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

xxtea-6.2.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (98.2 kB view details)

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

xxtea-6.2.0-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (107.8 kB view details)

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

xxtea-6.2.0-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (102.1 kB view details)

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

xxtea-6.2.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (86.7 kB view details)

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

xxtea-6.2.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (98.2 kB view details)

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

xxtea-6.2.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (90.9 kB view details)

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

xxtea-6.2.0-cp315-cp315t-macosx_11_0_arm64.whl (16.1 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

xxtea-6.2.0-cp315-cp315t-macosx_10_15_x86_64.whl (16.3 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

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

Uploaded CPython 3.15Windows ARM64

xxtea-6.2.0-cp315-cp315-win_amd64.whl (18.3 kB view details)

Uploaded CPython 3.15Windows x86-64

xxtea-6.2.0-cp315-cp315-win32.whl (17.0 kB view details)

Uploaded CPython 3.15Windows x86

xxtea-6.2.0-cp315-cp315-pyemscripten_2026_5_wasm32.whl (10.8 kB view details)

Uploaded CPython 3.15PyEmscripten 2026.5 wasm32

xxtea-6.2.0-cp315-cp315-musllinux_1_2_x86_64.whl (83.1 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

xxtea-6.2.0-cp315-cp315-musllinux_1_2_s390x.whl (83.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ s390x

xxtea-6.2.0-cp315-cp315-musllinux_1_2_riscv64.whl (75.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

xxtea-6.2.0-cp315-cp315-musllinux_1_2_ppc64le.whl (87.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ppc64le

xxtea-6.2.0-cp315-cp315-musllinux_1_2_i686.whl (79.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

xxtea-6.2.0-cp315-cp315-musllinux_1_2_armv7l.whl (80.4 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

xxtea-6.2.0-cp315-cp315-musllinux_1_2_aarch64.whl (81.2 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

xxtea-6.2.0-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (75.4 kB view details)

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

xxtea-6.2.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (84.2 kB view details)

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

xxtea-6.2.0-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (92.3 kB view details)

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

xxtea-6.2.0-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (89.4 kB view details)

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

xxtea-6.2.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (74.9 kB view details)

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

xxtea-6.2.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (82.8 kB view details)

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

xxtea-6.2.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (78.5 kB view details)

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

xxtea-6.2.0-cp315-cp315-macosx_11_0_arm64.whl (15.8 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

xxtea-6.2.0-cp315-cp315-macosx_10_15_x86_64.whl (16.0 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

xxtea-6.2.0-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl (15.4 kB view details)

Uploaded CPython 3.15iOS 13.0+ x86-64 Simulator

xxtea-6.2.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl (15.7 kB view details)

Uploaded CPython 3.15iOS 13.0+ ARM64 Simulator

xxtea-6.2.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl (15.3 kB view details)

Uploaded CPython 3.15iOS 13.0+ ARM64 Device

xxtea-6.2.0-cp315-cp315-android_24_x86_64.whl (16.9 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.15

xxtea-6.2.0-cp315-cp315-android_24_arm64_v8a.whl (16.6 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.15

xxtea-6.2.0-cp314-cp314t-win_arm64.whl (17.5 kB view details)

Uploaded CPython 3.14tWindows ARM64

xxtea-6.2.0-cp314-cp314t-win_amd64.whl (18.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

xxtea-6.2.0-cp314-cp314t-win32.whl (17.5 kB view details)

Uploaded CPython 3.14tWindows x86

xxtea-6.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (98.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

xxtea-6.2.0-cp314-cp314t-musllinux_1_2_s390x.whl (98.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

xxtea-6.2.0-cp314-cp314t-musllinux_1_2_riscv64.whl (85.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

xxtea-6.2.0-cp314-cp314t-musllinux_1_2_ppc64le.whl (100.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

xxtea-6.2.0-cp314-cp314t-musllinux_1_2_i686.whl (92.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

xxtea-6.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl (95.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

xxtea-6.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl (96.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

xxtea-6.2.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (87.6 kB view details)

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

xxtea-6.2.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (100.0 kB view details)

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

xxtea-6.2.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (107.6 kB view details)

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

xxtea-6.2.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (102.4 kB view details)

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

xxtea-6.2.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (87.4 kB view details)

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

xxtea-6.2.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (99.4 kB view details)

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

xxtea-6.2.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (91.2 kB view details)

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

xxtea-6.2.0-cp314-cp314t-macosx_11_0_arm64.whl (16.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xxtea-6.2.0-cp314-cp314t-macosx_10_15_x86_64.whl (16.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

xxtea-6.2.0-cp314-cp314-win_arm64.whl (17.2 kB view details)

Uploaded CPython 3.14Windows ARM64

xxtea-6.2.0-cp314-cp314-win_amd64.whl (18.3 kB view details)

Uploaded CPython 3.14Windows x86-64

xxtea-6.2.0-cp314-cp314-win32.whl (17.0 kB view details)

Uploaded CPython 3.14Windows x86

xxtea-6.2.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl (10.8 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

xxtea-6.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (82.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

xxtea-6.2.0-cp314-cp314-musllinux_1_2_s390x.whl (83.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

xxtea-6.2.0-cp314-cp314-musllinux_1_2_riscv64.whl (73.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

xxtea-6.2.0-cp314-cp314-musllinux_1_2_ppc64le.whl (87.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

xxtea-6.2.0-cp314-cp314-musllinux_1_2_i686.whl (79.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

xxtea-6.2.0-cp314-cp314-musllinux_1_2_armv7l.whl (79.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

xxtea-6.2.0-cp314-cp314-musllinux_1_2_aarch64.whl (80.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

xxtea-6.2.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (74.7 kB view details)

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

xxtea-6.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (83.8 kB view details)

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

xxtea-6.2.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (91.6 kB view details)

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

xxtea-6.2.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (88.9 kB view details)

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

xxtea-6.2.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (75.6 kB view details)

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

xxtea-6.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (82.4 kB view details)

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

xxtea-6.2.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (77.9 kB view details)

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

xxtea-6.2.0-cp314-cp314-macosx_11_0_arm64.whl (15.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xxtea-6.2.0-cp314-cp314-macosx_10_15_x86_64.whl (16.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

xxtea-6.2.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (15.4 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

xxtea-6.2.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (15.6 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

xxtea-6.2.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl (15.3 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

xxtea-6.2.0-cp314-cp314-android_24_x86_64.whl (16.9 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

xxtea-6.2.0-cp314-cp314-android_24_arm64_v8a.whl (16.6 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

xxtea-6.2.0-cp313-cp313-win_arm64.whl (16.7 kB view details)

Uploaded CPython 3.13Windows ARM64

xxtea-6.2.0-cp313-cp313-win_amd64.whl (17.9 kB view details)

Uploaded CPython 3.13Windows x86-64

xxtea-6.2.0-cp313-cp313-win32.whl (16.6 kB view details)

Uploaded CPython 3.13Windows x86

xxtea-6.2.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl (10.8 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

xxtea-6.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (82.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

xxtea-6.2.0-cp313-cp313-musllinux_1_2_s390x.whl (83.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

xxtea-6.2.0-cp313-cp313-musllinux_1_2_riscv64.whl (73.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

xxtea-6.2.0-cp313-cp313-musllinux_1_2_ppc64le.whl (87.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

xxtea-6.2.0-cp313-cp313-musllinux_1_2_i686.whl (79.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

xxtea-6.2.0-cp313-cp313-musllinux_1_2_armv7l.whl (80.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

xxtea-6.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (80.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

xxtea-6.2.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (74.8 kB view details)

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

xxtea-6.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (83.8 kB view details)

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

xxtea-6.2.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (92.0 kB view details)

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

xxtea-6.2.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (88.8 kB view details)

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

xxtea-6.2.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (75.6 kB view details)

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

xxtea-6.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (82.2 kB view details)

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

xxtea-6.2.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (77.6 kB view details)

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

xxtea-6.2.0-cp313-cp313-macosx_11_0_arm64.whl (15.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xxtea-6.2.0-cp313-cp313-macosx_10_13_x86_64.whl (15.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

xxtea-6.2.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.2.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (15.6 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

xxtea-6.2.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl (15.3 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

xxtea-6.2.0-cp313-cp313-android_24_x86_64.whl (16.9 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.13

xxtea-6.2.0-cp313-cp313-android_24_arm64_v8a.whl (16.6 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

xxtea-6.2.0-cp312-cp312-win_arm64.whl (16.7 kB view details)

Uploaded CPython 3.12Windows ARM64

xxtea-6.2.0-cp312-cp312-win_amd64.whl (17.9 kB view details)

Uploaded CPython 3.12Windows x86-64

xxtea-6.2.0-cp312-cp312-win32.whl (16.6 kB view details)

Uploaded CPython 3.12Windows x86

xxtea-6.2.0-cp312-cp312-pyemscripten_2024_0_wasm32.whl (10.8 kB view details)

Uploaded CPython 3.12PyEmscripten 2024.0 wasm32

xxtea-6.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (82.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

xxtea-6.2.0-cp312-cp312-musllinux_1_2_s390x.whl (83.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

xxtea-6.2.0-cp312-cp312-musllinux_1_2_riscv64.whl (73.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

xxtea-6.2.0-cp312-cp312-musllinux_1_2_ppc64le.whl (87.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

xxtea-6.2.0-cp312-cp312-musllinux_1_2_i686.whl (79.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

xxtea-6.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (80.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

xxtea-6.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (80.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

xxtea-6.2.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (74.7 kB view details)

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

xxtea-6.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (83.7 kB view details)

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

xxtea-6.2.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (91.9 kB view details)

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

xxtea-6.2.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (88.7 kB view details)

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

xxtea-6.2.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (75.8 kB view details)

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

xxtea-6.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (82.1 kB view details)

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

xxtea-6.2.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (77.5 kB view details)

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

xxtea-6.2.0-cp312-cp312-macosx_11_0_arm64.whl (15.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xxtea-6.2.0-cp312-cp312-macosx_10_13_x86_64.whl (15.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

xxtea-6.2.0-cp311-cp311-win_arm64.whl (16.7 kB view details)

Uploaded CPython 3.11Windows ARM64

xxtea-6.2.0-cp311-cp311-win_amd64.whl (17.8 kB view details)

Uploaded CPython 3.11Windows x86-64

xxtea-6.2.0-cp311-cp311-win32.whl (16.4 kB view details)

Uploaded CPython 3.11Windows x86

xxtea-6.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (81.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

xxtea-6.2.0-cp311-cp311-musllinux_1_2_s390x.whl (82.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

xxtea-6.2.0-cp311-cp311-musllinux_1_2_riscv64.whl (73.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

xxtea-6.2.0-cp311-cp311-musllinux_1_2_ppc64le.whl (86.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

xxtea-6.2.0-cp311-cp311-musllinux_1_2_i686.whl (76.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

xxtea-6.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (77.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

xxtea-6.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (78.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

xxtea-6.2.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (74.5 kB view details)

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

xxtea-6.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (82.7 kB view details)

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

xxtea-6.2.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (90.2 kB view details)

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

xxtea-6.2.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (87.7 kB view details)

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

xxtea-6.2.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (74.8 kB view details)

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

xxtea-6.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (80.8 kB view details)

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

xxtea-6.2.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (74.7 kB view details)

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

xxtea-6.2.0-cp311-cp311-macosx_11_0_arm64.whl (15.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

xxtea-6.2.0-cp310-cp310-win_arm64.whl (16.8 kB view details)

Uploaded CPython 3.10Windows ARM64

xxtea-6.2.0-cp310-cp310-win_amd64.whl (18.1 kB view details)

Uploaded CPython 3.10Windows x86-64

xxtea-6.2.0-cp310-cp310-win32.whl (16.6 kB view details)

Uploaded CPython 3.10Windows x86

xxtea-6.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (81.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

xxtea-6.2.0-cp310-cp310-musllinux_1_2_s390x.whl (82.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

xxtea-6.2.0-cp310-cp310-musllinux_1_2_riscv64.whl (73.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

xxtea-6.2.0-cp310-cp310-musllinux_1_2_ppc64le.whl (85.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

xxtea-6.2.0-cp310-cp310-musllinux_1_2_i686.whl (76.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

xxtea-6.2.0-cp310-cp310-musllinux_1_2_armv7l.whl (77.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

xxtea-6.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (78.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

xxtea-6.2.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (74.5 kB view details)

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

xxtea-6.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (82.3 kB view details)

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

xxtea-6.2.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (90.1 kB view details)

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

xxtea-6.2.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (87.9 kB view details)

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

xxtea-6.2.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (75.9 kB view details)

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

xxtea-6.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (80.3 kB view details)

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

xxtea-6.2.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (74.4 kB view details)

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

xxtea-6.2.0-cp310-cp310-macosx_11_0_arm64.whl (16.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

xxtea-6.2.0-cp39-cp39-win_arm64.whl (16.8 kB view details)

Uploaded CPython 3.9Windows ARM64

xxtea-6.2.0-cp39-cp39-win_amd64.whl (18.1 kB view details)

Uploaded CPython 3.9Windows x86-64

xxtea-6.2.0-cp39-cp39-win32.whl (16.6 kB view details)

Uploaded CPython 3.9Windows x86

xxtea-6.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (80.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

xxtea-6.2.0-cp39-cp39-musllinux_1_2_s390x.whl (82.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

xxtea-6.2.0-cp39-cp39-musllinux_1_2_riscv64.whl (73.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

xxtea-6.2.0-cp39-cp39-musllinux_1_2_ppc64le.whl (85.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

xxtea-6.2.0-cp39-cp39-musllinux_1_2_i686.whl (76.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

xxtea-6.2.0-cp39-cp39-musllinux_1_2_armv7l.whl (77.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

xxtea-6.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (78.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

xxtea-6.2.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (74.3 kB view details)

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

xxtea-6.2.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (82.1 kB view details)

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

xxtea-6.2.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (89.9 kB view details)

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

xxtea-6.2.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (87.7 kB view details)

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

xxtea-6.2.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (75.7 kB view details)

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

xxtea-6.2.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (80.1 kB view details)

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

xxtea-6.2.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (74.2 kB view details)

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

xxtea-6.2.0-cp39-cp39-macosx_11_0_arm64.whl (16.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xxtea-6.2.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.2.0.tar.gz.

File metadata

  • Download URL: xxtea-6.2.0.tar.gz
  • Upload date:
  • Size: 29.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.2.0.tar.gz
Algorithm Hash digest
SHA256 527593b0ba85f3936f0ea4822898488cdf62d536934c0588e6c055dbc461296e
MD5 7e74d1b9f2f7a6e46fc776a8453c0b62
BLAKE2b-256 6a18f662d7510938caa2daa56a9411a02d1ec7335917f54fb450a55f821e1c6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4309654d9f642246064ce588fa54174e26e6c202ff70a86944b2bcea3d0d14ff
MD5 6a5d897aa8e8f2aafa70c03f13b3fb64
BLAKE2b-256 a731c44ae392c49491dbab2f43fab5d5b67d40dd317a61d2085878428b73ca1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.2.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.2.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.2.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d1f0c79996d91b96935183f2c52b544cbe0f103b0c919a3d571671b89b25a80b
MD5 02cde455ff6d7d03d35da8da08afefc3
BLAKE2b-256 57d8de318b6ca317750fc71233bd115c721cacc33bb2eea074cea99ea18ffa1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6b9ad420e609fd9a44700283a1748d030e6fe5ba7b4ee57a8e6061a79ed90510
MD5 ac5c44f656190e1407fe1dabe42d3b25
BLAKE2b-256 e13328334e960303cd27cbc3dad583b19683eb25a9926c25fde84631af0a997f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d7b4be877c3ff1af5303e97f02a9c70c33f240d5094db483248d416580d1d916
MD5 03544b4dff206d4cf092df8983386f82
BLAKE2b-256 0f0a2b0fcf3ad9175b902b5499100a2b023909d5607b4fa408900b2afa03c043

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25b6049bae1920687eeb2c7f75a721e7c18019554d870b84ce6cd23c93a37c95
MD5 e1628626f15e02994a64d7c93194a51c
BLAKE2b-256 70e9d0fe8a64f8e14e86502eb3af5ddcd1e3f071f9b48e83cd67abc4710161fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cc32cd149ba6c048b44197a01b93ad8355e9bef62073f2a1b4d1700b32db3eaa
MD5 d0bef6118955e1e6b2f9c3dda36e302a
BLAKE2b-256 19a902bd9937d7ff77ceaa47fe43870e6ef4b667313d567f65143d86308d7f75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5f902d64782d00df51e6b9f2d4277c2fe973dad1293fa4bfcf7d2c73758daf44
MD5 11524e829fa8c7ad2b657e297da9cb45
BLAKE2b-256 445ded397d6a95dd53439ca91d14fab9e6b302e908e1e8a1513b545c2119dc8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.2.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.2.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.2.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f676a702431457d9a2c413082ccc887ce3fa905a32f8ecc62ee58d8fc686585f
MD5 aadb1f565b4d6787c48aa3a8585b18a8
BLAKE2b-256 af6fb83994321e8b2f0418b361c77335840e14913f1a312dd4e833c4e2d3058a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 71e6968d466efd41a219631a2776e927e8844596477ae976976161595ef373d3
MD5 f0abc1c5d7b52a1ad3bc2810628a3f01
BLAKE2b-256 002e79b47d39dd3fac7044340d902666b7479c932ea50799ad279fa2d909dc32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9fa1d9e2c199c09c5de631f33efea83825c1faf343192ae44ec3755e86ca9956
MD5 1592513cef2fe05e3dcadc860e58c40b
BLAKE2b-256 43491568fe0256cdcfde59ed62a260935dd686ac4e15ebe111cce52eeb21d17f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9440d93290b0bfd24e6c401cc5fd042b6f63dd1ed197e6282fa652f0220e0e12
MD5 6747216e7e58f174397f9e27db538ad6
BLAKE2b-256 0cec68e20b94f3a8732996ade1220f8381aa53bea7ff717b3cb90f8d0453cb7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fcd6c03f058b714c7669202b3bd9dee56a79b9c70509e6ff562c5b470724f10b
MD5 72b4acfec91bbfb8560a0a0c7be9b80a
BLAKE2b-256 de3de2e3bc94d5ef32e78704ea69174c142c685bd7be256efe7985f2d981515f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 21dea9ea4b4bc3fa77ad30a03076bd26c394d4198c6f3a393544966283208712
MD5 fd7e8ba110606da5a670ce643d48a989
BLAKE2b-256 33682c1ebab042d2ce7a13a05eef32689feaadb18f5baf5aedab4ad96ff90224

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.2.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.2.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.2.0-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 91e5200a1069e1bae12b856cbcce6fd6096c706f959cf0592b538f28f52875bb
MD5 5d6db35978c1b3bec7b24649be95d0aa
BLAKE2b-256 e8e1b7c64cadf24ea937e946c47c47e5a47f39660b208b543e8849a1317e6e69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 00f7b8750c39e73996124040fe6d6d9c3c9049d32509a0403a4ca550b1a264f5
MD5 d27e6f512f140af97a2d666014f27860
BLAKE2b-256 6ff39d9afc2b36dc9f6eaf47e268a81fb0e243d185c307c12b992a05857f3f92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-pp39-pypy39_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 040a7e971ce8d59a9966ccc58560330ce1979a5fcfca52941eb1a59e1fdc9f1e
MD5 c61c1e8712390252ff03548799298041
BLAKE2b-256 f678e86a0166f40114af358de2514c2d4039fe0548b47642b27b10d62946a40e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb04947dde870587f2573e24594e70c1a0ed65a77524f7638288e4e0f5ec87cb
MD5 7f065362ec25b563b997e43b4dca2651
BLAKE2b-256 1726f0899af015cdf3204761125fd30bf04b4a66881f309da887dda948810509

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b0cfa60c2742d4d12c2deeb0e2e6bfe2f9bc2f5bdb0047f4147657b78870fe01
MD5 25df113cf9beb4fd15046372b1dc531c
BLAKE2b-256 cc067d0ed9852deb4fd0c3807bfe05fd72ae10ed6d1f41f1226a419e87c6a648

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 27392502fe1dd76e44a6f7f249f460be649d4acd9938390761c467db8c2f1f92
MD5 68f1f1327174465787ba103b9de7da0e
BLAKE2b-256 2f0de9e27cb0e678fc20c4989dc29e9bc2582e859917833056964136ca66d375

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 475de35e0787f00549e556a22a4c493292406434d9a3f47db7618c60aa465221
MD5 01af9f077c93e7a036dbc3c3025ab04d
BLAKE2b-256 aaad0405c935aecabdab12952d9b69edbb6c3af2a9923aec5d2332b15ef9c6bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.2.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.2.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.2.0-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e79cad5e7237c103e8590ce7865a7c7f34315a88f38ad427155b5833309b1b6b
MD5 99ae650b51a5ed5ed2b135023f7e35ed
BLAKE2b-256 49095d559b7aec47345940516d75001c9a3b70a3eac48e26d6a34ea8314c69c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be0383261ef88902c1eeba088166153e4f267eeba98214432d056ebb2d40d7b4
MD5 d74bd6da12a2d0b4028872e5990edac7
BLAKE2b-256 5deb1af8b757bc773e9ac9a2849141beef92834507b94b920acae32b611059ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d8f26248f16abd1822f3ceb1f8afdbc6a21abd2da0f00abe52038fd291edc51e
MD5 bc027308330de9680b476aae87004b27
BLAKE2b-256 0a47aac14e32876a3e44afb9ff1611b28c891d05c16953ff36da6aae29b29e80

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 17.5 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.2.0-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 57fdf4308e409c03648fda69e94eaa0ec6cc6b7c440ef0549814f498bd7c7f56
MD5 4c0a3ea81f43ec6ff42f7d2cdf709fce
BLAKE2b-256 ee84ed4a826a9ce1f23fdd1232fa4db8528c3e1e1f7e80d3fb35cb4ef7447ea2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 18.8 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.2.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 05336b93778bbb1d7fc197b00c0357bae8056f6ffc1407f7ecaba0cf5fe8bcf2
MD5 68e7bb8ade1f4082b6ac873e159af374
BLAKE2b-256 6a5bfad867f3aed3b5a6b39280df4f2fc3b56b8ae0d6c10d5b9ed126a292da33

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 17.5 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.2.0-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 92be27b30d0ed0805b2f9accde146fd303dda1f31e5b37e33de7f001413fca6a
MD5 c44de9d92d02661f0323902d2cfad01a
BLAKE2b-256 044fe927c4b5b3d54f41c847d203c01a09793f5438555ecc1ca722c1df670563

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a4757d6962dad4d286eb4ed085771a3f603f40455de57063349eef92fd97053
MD5 fa79e4d35629032c0c9c0945e1128d2f
BLAKE2b-256 8771f5b165e3c549df70e5e74c682519c97c6c34805326d39ef5f05a813192e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ba02c0d333277b787bd7dcbf0202eaee0cb82587a1513768079441c13094754e
MD5 c2e0435600962fcc682b6c7bd2c7ab92
BLAKE2b-256 57adeee04e0d48a10298e8dd219d458a7b5711cf3b66978718376d2bbe162c3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7da0d7f0159fe51c32c09cb1457150f41a651705928fa1083e37311dbe40697f
MD5 ffe1847eaddc8127ecba0fc1b88c7fc2
BLAKE2b-256 ede7f8ad638523566912685d0b892984eab71394d83f7d18ccdaadb4e2e29d9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7f0e8644825d7eb0e5e820202b9db50ada048ab85f046f4556d41276c18971ec
MD5 b59081dbb8c7103834d3810ca3582f37
BLAKE2b-256 9375ed985598f77b4e52c8bb5809da57de122faa0876c17eccd0b3ffcdd67bdc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d766fc5ecdb9e94e67d5235cb3d80c428ebf32be4a337f303f70f60bc2452ba5
MD5 cd68e452322f89d03484a876838e07d2
BLAKE2b-256 475396123a2d10498004f91d4bc10c02b64601fdb3a471ea8648a1c2d15dcf2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 754f498f3eae9f14a291bf51d1c49731997aa3458bcf609253e3539b2e8e9fe7
MD5 8fb6e47f064bdf4bd022ba91faf00c85
BLAKE2b-256 44ccc5ee7a8d434e2af8b3d245521e060a3a60b11b15bd127953554f6bccce8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f352afb2f764be5628ce3ee86ac627cd40c731d0086db55414ccd2da09da88cc
MD5 8123219d2d9fc7c23f97dc9a89a77e97
BLAKE2b-256 b52fb06c43aca847ee9fbba4e8c679f5f3896725a04682c5526553804558324b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 472e831d7348693f63facbe76e485d21197017202646643186da285505d33248
MD5 166aee2246fbff5d0df7f7482b20e4a0
BLAKE2b-256 39ee0913990598035889b06f07d6a3de7f28813d5c8322400cebdb6807f9b773

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.2.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.2.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.2.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5245146effb9ce37765729bd489668fa7eb3e3571101c962ec12c1e0b6c29835
MD5 47b8bce5d35f7023f1f9c90245d9ecfd
BLAKE2b-256 0bc558c18774237f6d74f3003bc81254b165d1bcc64a16b41a76af310c955b16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 7e34d5d01af77291bf6bb91f0eae3376421baa4b32438ca502b2dc7c1ee05b34
MD5 adf2aba4b108d129edefef783c0c1ccc
BLAKE2b-256 2c4eab3ab50f6cf33746c8b78e8e0fbf1b8e6352744c7c5314625eeaf91ff371

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 daaeb49ae7a0d0ab98707f3e24006332136362c016ab3a83a8c5b6ad3d896469
MD5 e2499267c802f5d6623e1f737ab014eb
BLAKE2b-256 7f3e68a74baef795c9cfa68e592161e60c980c71b6e6ee143b205eeeb092f20d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 dd0b0e5c5d85e16fd2eacac7ccd0a2da33b00e64351ee2624e9f6d98b8a89cf2
MD5 5a6dd5207859fa9a29021470e76d1e69
BLAKE2b-256 fecefc0ffab4146b13d19efb3352b36887ec2c04565a2750ddfc2c5667ee43f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 72337b83eec7af9f8f0c7123a271287790bd649cf929800f50f2b74133ccee5c
MD5 ef7d8e58b233d530c66a26684527984b
BLAKE2b-256 5b9d70b8b2c7079be2782957c99ce09153187ec1e48916282144305cee353a62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c6881aa1acd26bce860940ef0da50cc41aaf3b9badfa86534b43e5c23fd2635a
MD5 6cfbf58bf5e1d6d32bb2f1ae2d8a0032
BLAKE2b-256 a9e27e72c5a5051b13defe2e27b5b31d805409c13ed5eec855a0975c8bc27711

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc6841a4e51ec7b599b9d55277543ed930112915b07ed031031bba308205a452
MD5 a9cb6697d6ae5dae7b4142237c682459
BLAKE2b-256 d0ca284453c25587ae542669af029950d54ef6ecc8a4fd8047b9d8dd6721e01a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1644386a55db23623a927082de9d839853ffb9ec5ddb6abf0a9b698541c3aa17
MD5 fea22b967c0bd89b2b20a6970715f612
BLAKE2b-256 2246d84f3f0df320c162886754c86d7b47d0ba7d14621afe186be2e0c9ab15d9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 17.2 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.2.0-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 0a88b5c4b8c667a3ec8615818f3a205d62dfbf9cb6397fbe7ddc94ed8fdf4631
MD5 a27e4693f2fd1ecb3860e45c589047fb
BLAKE2b-256 8ff6f8fb954d9ee08ce508d5aaec809ef832a307bf82e062891682362bb6170e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 18.3 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.2.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 22f8cfcbd6adc40ec480cd3298cdb6af687e960334c23eb2848b603a7abafda6
MD5 b976530c4b0716afe27d60f02ce1cf0d
BLAKE2b-256 bbd98819f636dc7f4dccf0165ba3ebbc0479dbd7dffa8358cad30fb207fb40a3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp315-cp315-win32.whl
  • Upload date:
  • Size: 17.0 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.2.0-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 5c3ea9884a3b8063ff47e91e17172e78babfcab242d9c3e19415f2ed9c6ffbec
MD5 3ae68f8a1d81849dc1369f2404d70f3c
BLAKE2b-256 fe67242da58d0eb8da4137f1124d53de7e23af278bbe94db8b18f1567e1af8b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315-pyemscripten_2026_5_wasm32.whl
Algorithm Hash digest
SHA256 c85b932124e2bde838ae28af9e1bea3d1ff580b245771d923a4ac2c0ad333d1d
MD5 a96cc702283ab84c32010bc1c8add24e
BLAKE2b-256 6e724daf0af2bc56bf17cab8f09d5e1ee0dd652788a6cb08936a4093d5ee4a05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 016d2dcaa2377d974b2c1d9f11966aeef170508ae28799973e80b642a21c37a6
MD5 4febd86d6757e31c2e2e887128d3de78
BLAKE2b-256 84f9ae1556a3e64b824dd19a36a926fa873557f98e96cbc4cae5c886515238a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0f61c4733329472f0a1930dd42a27591ad8fb8f2c95bda582ff086cebf881e20
MD5 cb7f2b7a152fb06e9436c7580eed88dc
BLAKE2b-256 cafa1e89b8d196f37222e44a1c397d71fb6203ad1e479deee82689779bb75457

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7bcf86ff88b8ef0e8bf6d40d55a687f8d2e264108a4d593eace5b648589181ce
MD5 e3430afbf566e7e6e400ccae7f7c7cf1
BLAKE2b-256 2d048a60faec7c3b85af59fa38d75e27c052ce70314e42fc070782a89d9c9fc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0251f4e7ca9733001199d924bb6ddc9156cb18c044f9daaa5c3e9ec26e5ae042
MD5 34a0734466ac28d72b8f5db019ed30c2
BLAKE2b-256 cc5adfee9ca44dd70d7d5a272ff6749caa0dfc9553736c593f6438c1eae70aef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6ee3b461ee280a674a3b736656cd8fecd196b6b754038a01bda5fbf1f0c71d4f
MD5 e2088fcfee5ab71264dca73855f8f8ee
BLAKE2b-256 5f59d7e25eb7c7a06543fb2c5a0fae19142566a4e017b81cc91adb0a540ff55e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 61818cd8e01cf9e544121cdcff831cdae80cba5fd2d21cc016f2d24340dd7e2b
MD5 03a08bc16ce5695d53922028fca2661a
BLAKE2b-256 64a67b0eb573a9fcebf56587565e99e43c4276037ff578a4145a031d5b0a0cd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 90d2d4f262ef563d8159fbe76ae5d8661222049539c8f1f427b2d412fd604b4f
MD5 87125d1b2e68501509e5bdea1c69d085
BLAKE2b-256 7fa80b52dfd77e002489612a0448510e9c70d2eadba02189cca4c924f9e5ef8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7d425d8d1b6251de64f81ec24b1f1ddd9b8a74fdad80f50c644d3843fb1a24f6
MD5 d20e6014cd6759ab230dd9ae26df980a
BLAKE2b-256 2b7784d86bc969a96a11cab03a85d1d2f8c8b471a0622d9a86b9cffa0a4c092c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.2.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.2.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.2.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 87b4a05fe3f691c30fe13de513e277e62018eddbfc635fa1d2dbc0015cc8c538
MD5 53b53d7a58e429e9afe7307be28f21b2
BLAKE2b-256 488cc7e5ef4a5e6e967ac034ae462f698ca48b2de241aedb63dbdd28f3071d1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 206422868f0e177ba102b6e092c2c2b5877805f0852fed2969e7bce6d19a586b
MD5 b351aaa2a746f2225e77d04fb7e06355
BLAKE2b-256 848df29c3775c8735256e68f081dac675ca0eb5f5c0ceae9799c31c5c08372ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c1bfe5c36a320ce0703820c65e2e415a3e8ccf59de04f5182b7c7d8d436294f6
MD5 5f9310be3143e6017cadc0089dabfc34
BLAKE2b-256 dd5961658e56cc0cb86ff287fe532bf3600ba6595d7e506150c7ef6de7bd28fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3167fe5845718b659e4ba4f900e40f940ad30506afec9a7ef4cbe78483df061c
MD5 e88445e777de4eba00789ef50c891bc4
BLAKE2b-256 6ff85fc97f82b8a29d9e16dbb1491c6a7a4a95b11e2438f2b6fd35e1a8ddf085

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7d528f8e1ac1f7f3571c68b009a092011d11d62916b604bea886bb3bb77fdbe2
MD5 402aacf0e45475c35849b570a475cc79
BLAKE2b-256 db608a44c612d1260a78eb5d53ce24654813e9f45424525c6aba7d041200e2a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6e4a4fe0d8d9649791ece0295e1dcb5b372376f1c079ab963495a2f78bd93f82
MD5 a120f254c7847be79b261d7222d6357e
BLAKE2b-256 b2640fcdd2eceb606a88d5d188d78ec8d630fcf2bbda3928abd069783fa0503a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c5711122f3b19eeeee92fe0ed16f7a25e3f3645cf827f9dfb20411f650b3701
MD5 ebc057752f00a13659b6f2f53f17838a
BLAKE2b-256 700848542cc1894666d59ed98a83fddccf03451e4b31391646d90f93e8eba299

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 799988cf846ec13db5360eada8e69e7ce551fbbc96325fbf9a8b1cdfc9b72f93
MD5 29f7f4e2a9de1451be71447bccccf006
BLAKE2b-256 9c1cbbea258144344d795d9fa49fec84cc261c8fcca6742d2551212c88ef28c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 762ad3b70430585e73d9395f55a139bbe66f6ca2525a004403ef2463882e0bf3
MD5 4982b8cb34fbbf824f7c83e2dc9af5b8
BLAKE2b-256 393fdbf3636616a78201f831fb9442d9b64d2dcaf66c400edf98a1a9ce8f3257

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 def8a70d1908178cf5707a58709c8161a77c2c8e943acfbe5308d3d298f234ff
MD5 41592060fccf85c158ae4dcc7fba0148
BLAKE2b-256 bd2f6e0db5897d2d1a50619c35a9c2d643509327490412c470c894e08d708734

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 c1387af705608d09c04e32006b6867f86562c5ac4374894e1a11660593fa3dd8
MD5 b754b780e9b9ea31825523872656f43d
BLAKE2b-256 2f2262202cb32e1ee2cd64741d6d11b96d3b690f70ececbcc155ae9fa9e2fda9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp315-cp315-android_24_x86_64.whl
  • Upload date:
  • Size: 16.9 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.2.0-cp315-cp315-android_24_x86_64.whl
Algorithm Hash digest
SHA256 6ee4a0ad5fc1ecf644d1095958fc6d8a22612f0a3e58b84c8c13de801a8fcbd4
MD5 456bcf839ac167a776cfc6fff9157ccd
BLAKE2b-256 ecf27763bbf5d488756b37e478fafa2833b161d0593e89e0a97406c92ba4b238

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp315-cp315-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 f9452d9c42d2d95292d1cbfde848b9b369f85829ff566d3b00c618f6df357fe2
MD5 2b272706926a957fa6f6fed5977e2e7f
BLAKE2b-256 95ff359a747b2913b22f78be1a5b8cc64af2abd7e1c814d28c9b8b08496486a7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 17.5 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.2.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 52f47d45e1b5d05b5fc428fef3f96b1b4afa91142cc8ee33ad09411d6dc33b18
MD5 b01a5ac00d6852857fa7b865d445e8ea
BLAKE2b-256 40db1d439b80f091bb969f47cc11f5b19d535be522585f859847ddc45dbcd09b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 18.9 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.2.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 14283bf201ef75eb6670f228f0db869b16d9b47ba71293a11cb5f282dea2e7b3
MD5 5fba975a8255a44efe5b38d4124bba5a
BLAKE2b-256 c52da8f2011c09160f64c51694edcca3ff55fc4a53dcd64e965ce0d8b4d8f25a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 17.5 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.2.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 b080f8e8ababddd9373bc1d9304cdf09ce195a6338b4f2f7b0c8609c7cfb2066
MD5 4c9e1740f931ad21949f4a6e0c8767a7
BLAKE2b-256 1da072b23435f1cd496007761c85b004d2f0477a106e5db5a5084b8b61060783

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 679ff09afa51be9a404e44065bf369dc430a0c15b741717c606d227cf1ef42bf
MD5 1be5b302ae0543f00699d2d92528157d
BLAKE2b-256 e759031a278917e34924ae0b6532b81f9813feaefb5da5d766a5d1099a41c66a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1cc60a80ef73f317b1a4d3eec4864e84812eba8f87bf1c7a232159c8050fde0b
MD5 d27df5e104d41b583c4fc1cb7ae28b9b
BLAKE2b-256 e71376400fa36b6de0fe98dfadad9ebc1b33ca1b650e5f7444d6c872f3f46560

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a91e9121c55308f0ee033267d14578ae8afec3cbef148d8c7ce1beb1c9240128
MD5 6ae375d6e1193b1667a8747ac54f45d8
BLAKE2b-256 f7423b5f4e9c0ce086783ed6664f609aed0560f0e782d3d46e1f30bff2b31faa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 671a7d2163e2a4ac1d65860b4cdabf10b932e8ecd611464a0c12b95be3f88413
MD5 c75a634a471229c8f4e88515d590820b
BLAKE2b-256 37130b29a1369a47c0916f62457aa9ce386ec68a8bfd0a1203aff1e8c7c8949a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 98d98c6b9279c518237926a8676cb83d1078d4418a2d24e3d9489487fda52ff1
MD5 59f98e8b17930a878decc57758e5d0ca
BLAKE2b-256 7d8c81ab796a1704c05683443c1fec0a59a5b5ca3b869263a8f754bfd35aedcc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4aa37ce52e9c8265e5860b1656c86fc0ae14b990f6720275eda403b88ac4e91b
MD5 a6a00ae5a2d52331b700bb4e41e49247
BLAKE2b-256 fc35309798582a4323fb4c2429ca12ba793435fd02c5f3f9d7ccde8b893e7e20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9141f1d52c18a379a680ba3018faa601b0288f3cd32c4d6ae58ac9d3b7944c18
MD5 f8fdcc65ad5e38a1a6b23c0b86ec4de0
BLAKE2b-256 ba21c515860fdec268201a901397f273bf75d1ed8e7dc70a4264778fa13732d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2bbe8fe3b2c3453be6e1194a364a6d2c40003e86f34aee8bdab7e3c98c060698
MD5 152bae8c16222d8773f7ee46bf4e08e3
BLAKE2b-256 09d10815c8d6830f47f8b2c6736ef90bd84f1626dd8d110008050296e743c79f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.2.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.2.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.2.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 510fb5fc7556f7a5686b9dabac3344ce814b01377d5c55489c6f59a202028a79
MD5 9e92d96dacdcfd8a4a219d2c0b4b378c
BLAKE2b-256 427cc95bcd1a3f713c791645c3a963d40208180d6866a631c1c2e9cfd7544834

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 05ba314faee923ad41a7a13ca96952a992b786820a39569f2120142e67f3e124
MD5 e2ce08299c2a19393c09b6bfc5985be1
BLAKE2b-256 d1f803184ecfaa23c7e07cb083034da1c142d72bb6b74788da3a9ad8961b09d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2b7b26c30337a72c872edf7effd5b5cfff23b7c365edbfb2e3d75e839b736943
MD5 fcc9a4d599f0c1fd87269e03cb671e33
BLAKE2b-256 876a3aa7c52313bf6e5fe5adb2d4e70d74ffa638eb0f659bd20c817eaffbfb53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 455616bae260763dcab39dd82d6192be029c10ef869bb1b8dcdeb96edf485ad5
MD5 4bd1e9109251485ba9b293c0c14c88d6
BLAKE2b-256 72c925affcba9d9106400e7e27732fbbc1d7bf7d6a66bcfad459692839298075

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c928e094ce083e1ae4ef877f552caebc075111eb9d9553dcd01d9afafddbfc1c
MD5 3b9fdb289fca33efa495d0a4d6901b69
BLAKE2b-256 8d232e36241aad5a89d722a68ebc8f68dddea1c59331cccf2b04fa24f98c1503

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 cc1b3b936a34494a064d2191fa3f2a8f5c5a797cb9c2f967e60134f1cca37424
MD5 3a308a179cb421bc72bcdbddfa787357
BLAKE2b-256 c1e3a8d652ed83a4f7af2a8e28668c664ceb94f8463cf552e63af285173eb9be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a44b3a11e380b571d9585642668e46cf924a8d37e0e7fc0a856ecbc3f5e0f48b
MD5 5f71cce1c88d6e1c3989489c4c74ee3b
BLAKE2b-256 16b8241291728a95fc8dfc220e5b92939db6ed31c09d4e675af25b37a403d714

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ac1b4575f2edbdbea32fe84e1802c9f13c0df0a29d4ba4827b1cea217d85a593
MD5 4c6efc5f2eb72671dcdb41cbb9f88fbc
BLAKE2b-256 cb1700ca53a1302283524a17555e7c593f0c4d5a4a64ae0ce3a36910b066fa19

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 17.2 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.2.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 02328c843f9207e38356254b6028c7a10f5e9d454acdc0572f83530d53eb86d0
MD5 e5a081a31c4891875bbbc437f411a255
BLAKE2b-256 f97993fe0b879376310f27254702bfd7c0287b7487fb38287caf3baa4d55b09f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 18.3 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.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1f69f62a40cea5abecbcb292d20d6f4b5a25616e0fd4201d30ffc1730e02bd15
MD5 c2ed2ecd97702200a8fd2c62a65ab8d9
BLAKE2b-256 4dbe5c1303e1ac2ce6eb10f2127b12e5dc5cdcceac040a5d8e18c7c96fa7d4ea

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 17.0 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.2.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 fd1dba302074df63c0fad1329a0065366522d3194ee7a2f7ae6a5dff74e8dec1
MD5 ec1e01becd97ef829b09e4726e8d2305
BLAKE2b-256 43fe0ee4042628f275ff1c2dc4f8c790076ec95d438ddd103438d090f448d7ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 8baff4d87a43f1b632830b1812b22d0fdeb7cd644bf60e0dd1956adbc0f0ca02
MD5 b351d7b365c7b883d32e38a1e3009c49
BLAKE2b-256 a5eddcf247713e856c06ee86090367fe1f82a7668a1ffd819b5d02d788c436c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aca2be995f4f3743ebacf2ec67a7ca1e21a7c1c560bdaea321c6456e252b3dec
MD5 e6f8e667281906fbae3d341d6428c2db
BLAKE2b-256 3a318af7d13c74ad360d495e29199602fea5969fede5c1997b92c29118a7d864

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8c4ac31e69af63bc94b1fba55d38b971a1af025b2d9555c8c98e7201b14dbeef
MD5 ced801a0a5eb347d70f4cf7b6b3a8b30
BLAKE2b-256 c25d791eb9525e68f0b8b3598ccbeea457ad6f913729bdb55eccc5246db46e52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 fd8e1126ed5315ab75a7b055249c727e0297b818728f37e1758d03dd8d01f1fc
MD5 219e777e5a6ec3f4c3511a19deda98ef
BLAKE2b-256 8c747e3f9ff659b00f9d0a47dd67ffff5aa99b8fc644e2b15295886e6d4830ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 54c7921f64fe907bc676e5d41063f35974e25898f3c16128928e3a534a3131a2
MD5 82456eaeddeca2bd864ecf2a239ae3c7
BLAKE2b-256 ce0fd10c9d9d52261f9a1d13b5a4eaa4f710599bcdd3cf8fb38d6f4b3f98f637

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6561df6aad2e83e59d5a9d030a874983b5827f12db88b0c712fe8081addfe871
MD5 de92a40997ab273e3b6d02e27a49b02f
BLAKE2b-256 90fe0f09a644da5ef40a7cf675da2dbfc9282be2c8366823a1eb3c716a1965d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 70a05f63ce35f43df128a2660e264f812a36eba0b34c12abf461fbe7563e38a0
MD5 123673980d71502461a7be9ca8ac83bb
BLAKE2b-256 76d36bf2dc4083f2db2edc5f0104e600aea016dc951dfe2b282583d81d541447

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 92d8553062f53a6fe7e1c5c3696826ad9e3fe7720bfe3fb38d01efbc6e5c4f30
MD5 123ba68efee8cf33cacdf2c7fd1b6dd3
BLAKE2b-256 72b749dfd97f24169e86c681b6e16d41257099454ff023dbb14ae13f5ecdb3ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 fc9c6eb1a2f7454e8e3fc87be7e017d9f30e5da505c1b233864766c476d6e354
MD5 40477563756a80ac3d8a1f3982d8fa07
BLAKE2b-256 7f5d758f5d36b24d0b6bc87badadd703b8586a3a15e5af28cd1df5791e13a941

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.2.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.2.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.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 250afe660976ca72f36090c027c2aee1c8b8decb7080bbe78c6c9705ac2acd38
MD5 69b5c22b06edf71f99369ecbed28af4e
BLAKE2b-256 5761364ced5ee1e1176a398bdda299164f924ee17dfe79532f3e5ee642a58ba2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a3f56b51694385dac134d6277d364de3bedbfa25e728bb8da7bf658beb6598a7
MD5 3b6ec9392d98113365d233369b166024
BLAKE2b-256 5e78ed6fb3989f1a0ace06dd1191e86801d4f615c2f6d09a6907efae6a89ff4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 00ff22572e0228a69deb55c34ce7b883077c7299dcc07da63b1d10cae6d1b0b9
MD5 b516f16b7a995ea37b0b93fc5464776f
BLAKE2b-256 3fcaac29e8f62da9f71e618d5c5390010588c154df8268a95c60bde0e37d37d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 640899d3f259f6a332d6ba5c2ac8fe4025236d603bd304130983914126ef5b3d
MD5 e58d8a12bfe4a5e0f2dbc6f0522ea8f5
BLAKE2b-256 89ffb6fe128b6b9334932215e41524bc0ebd28fc9cb990c48974dad6c130e7f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4348c1215c42533c0f855a45050d6457e5de27258cb914bc55268b78946d6288
MD5 65db6ddca1e150b5efcfed04910c2985
BLAKE2b-256 2f25b700f1374b3a9c957e69624b36d9097859ffcd193fefda1cb1cc84a3252b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 cfa667b2f241a3f6bd03ecc25e0cf7bc83972332014c94f7ef7b1a1e971947a9
MD5 c19fb72353a1bba394a1a68aecd0e0fa
BLAKE2b-256 091053cdc9742fb010e236eaaf95d4fa97c18ed86aa921022ae25fb65d1fa3b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9cc75ce3f5289255077582a30827c789aba521a46d232892ecde8c862e5026c7
MD5 3d647cf118dc9733ad781008b09d4f4b
BLAKE2b-256 35f3b7cb794025f07033574fa4f331c7cf94a48f8dc1b52a6b76864440deb5b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6ebef2d1974f1920f59ccb32f34dddefc5bdf1ea5d55d566c5c0d73018d73695
MD5 d0aaafc628257fbca914367e39be4f7b
BLAKE2b-256 4ac38bc01f51393fb08118f5d69d3fba3b4df023a90a3167e55319904ec0c7f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 ce307131a3d87402c4276fbe1bf412118bfa67abb097084efee33f68e239da28
MD5 5d69033cb29920404026aa565297d749
BLAKE2b-256 3352840e0a59eb5f4d70989827a8c7fc3bf0311dad69773790a536b50905ebe8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 5fa7ed86aa6f63d7e359479b8909dc740ab9fe528812a6c561c8b90946ce324c
MD5 552101761f3eeb0c7e752b41c8e8798a
BLAKE2b-256 b1a1b77cebb178222e84e82a6bb83778a8bab5a95fe6c173d741af77a0ecb409

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 9001d46fccee4eff87db4cb342c23fa2240595d48377dce031dda605d9c2374c
MD5 819ffe4ba96c131df85b853bfa62df2b
BLAKE2b-256 489605aa34e81556e2ed397c603b98f3330b8b0d1db5e3d11365a4f2a704cd6a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp314-cp314-android_24_x86_64.whl
  • Upload date:
  • Size: 16.9 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.2.0-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 d2eae0a8ffa5aa80584a77490c8333b04fe011d17751e6426bdaf2a55e7b14c0
MD5 1e9fe21c5cbbda12a04c3b625632ce93
BLAKE2b-256 ef2dd80186ff78129f4e086c4c59bff7e7d265e380fc089b8f69f6e62659bc67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 80dabb31ea812503cbbc499db215ff3abd74ef2d02b32c4bb8635f409188a03d
MD5 6c9e926f2ea6409063c6aa645b9a9cab
BLAKE2b-256 db49216b2e6b4c877e21d7e22043fffe9599d6030051c926ef103b67bccfc0b7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 16.7 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.2.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 eef23da762dee52d161010f8f75105a8b8472c0014376ded4469e8ac4f0dbb36
MD5 cfd90c74a1f44ce7ee0612a2ae0b501b
BLAKE2b-256 198795ce84f11437db60ca6f5b84fba83e5fa5c2cbf6e7f08d502b725df20c0f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 17.9 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.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d712cb65fc46c0f0c722b7701d048f104565ef629373831dedf8551f737f8a76
MD5 f6d0f1c706f20ea9c95e346643c6b595
BLAKE2b-256 eba2d977e9ff427ca9ee3895e10510655c58022638f64c11faf932c492e89b2c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 16.6 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.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 814de509ad2dbc3a7b5c8ddec8c15d215495839315738b15fa1e313672b5fd06
MD5 f1afe6b6d7aa2488b041d5690e78d6e0
BLAKE2b-256 c24f83c1d5f303df60d798e9e2620798eade022a81e118e32bf3c68302e0793b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 82b326de9c956b50a6b68b33700b84ee636fe3cd88126a86f8693a87a5a0586c
MD5 0a032c31ea2952c40544115010a7a22e
BLAKE2b-256 23d2745ba8836395c2a21cb47182042ee68153242325da430c8afc9c9d9f9cee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bcba7af96c3b78e14f81de8952c824d2db058bdbd2e0ae2046dcba40bb9c0b0d
MD5 971d93d27b7fc634175df57c887de18a
BLAKE2b-256 87b65f156a181dd3859adebc3e7360d4f1aa5366b33724f98d8dd50df5ea548c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 38c05e73c1d4ddae3617a296f92b7ccd8d161387c2dc73fda139020597730c6d
MD5 873a477aaaf8a68c55ad7db38bbd8044
BLAKE2b-256 be141091219086044f0cd8d5c93fca7abaa6fb5fe09c4acc870eeaa5db9b6b6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2d081c0f40382e81c1881a92f083d0b06ed900cbd707e6240fc6f41706095d02
MD5 acb3a760fe34642743b36c5cca22976c
BLAKE2b-256 dbbbcffe66eb5eb1c2e704799aa5ee1ed879d53a0ce88a28c5eba7b1daf9af25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 96a9eb76586e5f4eff869eeae089bc713af5c3dbef9c45890d37c1336a0dfc36
MD5 feb7b1869d5eb619da442a808a31d911
BLAKE2b-256 bd97b1eab32a4215257ec61433635c9ed04177055affabfb3d8aa2282dea5768

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 98bbc5c164515e3044e0aecdeac50adf15dc6967e2a4809290b541c6c3684a67
MD5 b26a371388fc37bd200042b4cde4fb8a
BLAKE2b-256 2ba3e4ae26d72f8fdd7079df1ceb8c12960a92d5e94b118d6aeb9dfa74944e75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 84be5e466a185befe1fed43b8e55ab7cba5d6650b1e6965e7beb68af1ec162cf
MD5 e89e4890e62b3219d6b1050f0fe654f2
BLAKE2b-256 4a6f93c4953ee172a6ddbdd2a4c3847785d196de858769fa1ec38191746ac818

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 77d9699d21406882f22e85a6bc9219528768106608b3942248ccb36986ecb3c6
MD5 9243dcc2c4ec86276c3164143d80fad0
BLAKE2b-256 651a6b0f7202b728bb43ea4d0cdac6e4658e9e6af1cc3449ec68d8273cef89b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 770e3ff48ac87bd8e9fca10d6934f0f1386bd9b8b383a1aacf8570a67613e0a5
MD5 80b4ea07b48e41f3921fd2dcb6b2a28a
BLAKE2b-256 33b7ae2a16259a8d2f5177da23c3d141c13b5e7715462ae767d862d78e044b55

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.2.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.2.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.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 49534b12956b5a4186c35dd31c00bf187d6f0305eb518aefb4eefcb4f4aba1db
MD5 e113e3f5a9f9f7b3da31c7bb3dd48d80
BLAKE2b-256 d5de97752d1851789bc249656fcebe0137c359a4efb06e3048d63042ba19ec46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2e212be183bd04293d8978dc657f45633fa91365633ea73ad85715edd7f6ec6a
MD5 3249919056a487770e1808c189ee4531
BLAKE2b-256 9f783ee0f539ba321c3397011255db28016382b4412c4a0ef5d3982ef8ea9585

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 efdfb610a06054f3d8e44e8301bf9a3a46842c1ec6760a42d63e0f81956da297
MD5 6ab14ee5e930934d3cc3a684d84f87df
BLAKE2b-256 5c54dfd91db789c02aef65fe1209dd0c27b3110824d5baabd166f427f7190741

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0e0989e95ea94b6410e1f9e802ba763befdb2d08a46aaeb9c5f86ef7a9b714bc
MD5 bc6e07a746ede0454d2612f7b5e0b042
BLAKE2b-256 5b07ed9a6d70235115866ed982da952a92bd381a076024b480efa9dfda7a7208

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9263550ae36508a844f8ef6a0a456ffe4a96d147d80001f6b22a485ad4a18233
MD5 6e86ef7686174337288574f356735fb8
BLAKE2b-256 a3c6b0aab76c6cb5303087f0d3b95b802d4d75560ef1a3ba897483ada1e163d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 35507242db9e60aaf6a8e8c9bb81d58150f8dd6948958b7b9d1706163a4a7203
MD5 7376de84df1539c8988cc881c9daa146
BLAKE2b-256 b165b390b2e3576f468a0e75f48ffc8ea5d472bbed1dd9a6fa0ae088b838b3a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64400acc9f427f78c4eb15c9e196a2c349396fbd2b7de20df66ee1332394def4
MD5 f45a760226b145964e5f3a72f0a33ed8
BLAKE2b-256 8b7b97f24972c919012b81b2e4fc2d2e4f1b79869602974638ff53c61b3bfa1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9df67f1c48c2ffce45e929c3e6e6f85507c56d67f8c842cf891910fcd4025ff4
MD5 507e81a768906ca91255ae48d07f7941
BLAKE2b-256 514e7e06ca52bc33a6103c21730a8e0f164cad373544cfff1c5527526784d120

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 7879663ef32e7f9b581100ba986db141e995c931c6141e1a93ed35b93681ad65
MD5 d43fed87bb8a894a50155e5de408827d
BLAKE2b-256 90aa5d0ce998d73746eb47f6ed53d017a5e77e65aded07d85feaf3157876d4c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 21f0a84658066a6b2c55ea883ef5bea7ce1194aec36833dac154bde671e3c90f
MD5 333aacd1a4cdb71ee85581a83a627c9e
BLAKE2b-256 18c55b7747671382ee352790abd0994e7d14749535b8069fcbd1b8f52584d9c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 018c23ad58fcbbf3b5dbd0b100371da7936105816aed6367eb887e746f3b8429
MD5 72ef67e65f5a831b0e5d7a56146aab01
BLAKE2b-256 f34c9372dcbaf02d1581e47a150c4b37ebbcb73fa2c93eb4c3d6725635d2bfab

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp313-cp313-android_24_x86_64.whl
  • Upload date:
  • Size: 16.9 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.2.0-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 69fca99b52f67d221730801b323ecd44316ee704be6fcf6514cf7318e1a71d8a
MD5 773d2d2433589ece56278529d4d3a68b
BLAKE2b-256 ac2f67188c424491f987bef5f26214bcb2aff3626da7278c58e6e881dd879027

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 95968c73c77b34af6a928160e462d4e00333dbe9ac9cbfd56457c71db8b2600b
MD5 77f7c1fb547ca443004920b890bb7fa2
BLAKE2b-256 b9b857e96697fe4b434acb80b5420d706f4ed6af2f9ba2819324eca01fa0d1d3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 16.7 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.2.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c7628eb8911694c1d567c97b84af8f6038d17a8d6164780859140c33ebf0befb
MD5 51ec67a720f3b598e50b219184b7f9d2
BLAKE2b-256 381710f3b4d155ed8ac5cd43087030f11aaa74386b566c45f88b12c35f09402f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 17.9 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.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 40542594add5880aa0fe0fd364c5fd56f2541af083b97c3696dba5bccef83f51
MD5 e12607a6a026bff277e58715a93ce32c
BLAKE2b-256 a4e5c5de5bd64f9c369645c6ff8240c1d91367dfc7f455ff1a9ae598207673a6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 16.6 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.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 363ed3d329b8846dab8532e5d4688a9dab11ab55b6be61e48995feb8acfb13ab
MD5 b6a84c6756205ff09ade7dde7b7fba33
BLAKE2b-256 81711ec78c2b051d4ae791c50430bcf8997538698dbc8d4f857d2359adb47204

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp312-cp312-pyemscripten_2024_0_wasm32.whl
Algorithm Hash digest
SHA256 7f85b2992b1a2683632afc6f583c6cc9efc8325796b551bcbd16e9a87c0c8b48
MD5 3ba666cf591e18963602fb2f22cdda7a
BLAKE2b-256 4ec549838debc2bee09a2204934e201aec7295e5eb7af92293ca9f123eb023ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a7c8558e0cf2a6463392053a1c66b30fca5d0a42ea88bafcd0f8f49c1e0e8aa5
MD5 48a2c8994f3796d8b2f31f800a7d698b
BLAKE2b-256 09931ba9980b8aeca37d2ccaa6957eefbd01b4852d737c7bedb301d00c77bf35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fbf1f57b7dae2cccea825b6217d22305d92825d48af383eff811dff1da7720b3
MD5 7e7557084d7e6b4d4c8ffb643fd090a0
BLAKE2b-256 ec2aa81545547adc94ae9bd53ffd04acf8d0be411ff30c06035c871961a28a91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8bae712ac4e0983befb10308f6e838e4bdbe75f9e0071e888e8030a3ea59ff64
MD5 75f830f48e9452566d0544c9bace5ef9
BLAKE2b-256 3a23fd175182e2d484ad559072e305f2c7bd63a48cc20cb80a2f6975a0e3421e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 53cac1b5b3290b388e117118e8d2f363f36843f287f71d0cdad876c80d98a442
MD5 bb33f4cb5ee7833777ee1cd23f11edfd
BLAKE2b-256 62c59baffc28f8ec691eca3cbf924f42e512260c8dc283b83b1b9e0bb74f6209

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 85a387fb0513c63f7ac4982cb807caa54b8e7aa6536821656551659d5ab15476
MD5 66213fedaf3c9af6b1924b5021fd07a9
BLAKE2b-256 05961bdd605fdc6f4e4d6f0d56adac0900221b7b299a19176991d08df84b60b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 606f8d705713fe7984b937122aaba9ac919c4eabdef961f6c08218ed911b19c1
MD5 1e95a8aff957dc9877b874a8f1dcbcc7
BLAKE2b-256 5b0a639378275c7dd129539e3b3bf3ce4cc2fd9c68348dae6bf0397f5002583f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5662087d74eda6af3084de480851435cecad9d095952b9440afc9a9a4a2e81a3
MD5 91bf9db2ee9e2ad1c0a473f73c7b38ea
BLAKE2b-256 d6ef496ba703bc12f53f411c8909c77c14138c9283df44bd06776e062d92f714

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 49b1c04291c6188989ac1591384448e4a44ab3eefd09273fb7562f2a848dcbfe
MD5 7058bd8173d7a6cda7a05a656d21fed6
BLAKE2b-256 b9098c085f46d35a40891ced1261b6a64e989c2ec90fea1077cba2c446c4c30e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.2.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.2.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.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a3774048c81cabebf0b09cd050ab5321fd8ce3e5d085ed2d0a39fe35566249de
MD5 4cd1bd498fd807b1fa88ba9f26a5e61f
BLAKE2b-256 3c2c02b3437c94e988a89bb10cb1878376551058e7f2b13d2fe83aee15ffbb10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 da146e44bc7a347c32a872d99a7448d615fd9535263ad9e6ae461993aeb5fa41
MD5 3b7c16fbd36dbe83f26a7986bcb36edb
BLAKE2b-256 082846875170116bf90251ce0074c4255d47a9d9d426b9cd2d1adc201f7bc41a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b6884103cc03763ef266c7d97fde53644904a97b9043ecda21b3b2a9ccccc02b
MD5 6746a055d319a1312705a1a461941dcb
BLAKE2b-256 918d9ab71b138b86f252d732d498d65563ce392465c0a1a3eb7c1d9443c2389e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6c53cb85790092869c100b5e9d79eda9293994cc77b857da6859984d59d04401
MD5 34bdf2ef61a0b9c0a3d4d74023cbad5e
BLAKE2b-256 99f3159f668a2ebdc774e22c7a3a527f0cb465d66ee41e213a7ec8f5fbf57bd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 41c92ff24effd4329b50507f07b36423e2450dc12959dfbd0191e8c2d47510a5
MD5 235849018318c7149872bf6a8fd8d868
BLAKE2b-256 612c3548c08d04a124fcb25a24d8d1c5215c581d9df84337fc3dfc0a7faf4954

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 719e499ffc903be177e3a17594ef9116e53a7bf4ebc0a416dffdf7ac7038ab77
MD5 715e29f314a89a9fbd8b7b3ff2b09063
BLAKE2b-256 af6c8f9b1de32bd00ef209b398ac240c5f2d1ad65dc0fb1ce8dcae92e4a1a8ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81a28bd130efcd521f32002f6c43b1c4a8721ffa1dc25f5d6e21f63d84ea779c
MD5 46e96c6a9c93e225c5b8a0644a7991b6
BLAKE2b-256 323d83e9994c397ad6e45bdcea9c7f12c477cba845457508288c04aa255296f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 51693c3b9a5f8ddd6f488cdf44a149d7f7d576ee75ec73b909b8b37d0fa7f614
MD5 9867bf0c3bb847dbef2235d1e438e8fb
BLAKE2b-256 e0499e521b36c40b97c9b9a196c1f28d5d99510120b59cda7372ebbddf3a4902

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 16.7 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.2.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 e3f445b71cfe7f1808ebd7cf4bdcd9720f00ca5515a7e93ce3308ccbd45ea8b1
MD5 52073bc3428c73dc529b4dd301d94a6a
BLAKE2b-256 9c27e3b48e03875f99463eb715dce9ecfd789873654d266ed5f8361fc994c7c5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 17.8 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.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f1ecd5964b71d717833c2485d1fd7b8d051a9169f2a3b428eb964e9db134e513
MD5 ce288555e001c8cf414ec5486bca9133
BLAKE2b-256 30c1ec6fd42a59d7168b854084fe95db52b1ef724bbc6104a8f539813cb1f337

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 16.4 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.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e18666aa3c5fe6bbc6a775b9437391693e0794af2dddff5542e9c95289e4ccaf
MD5 ae4273280de34cb866d71439aa943646
BLAKE2b-256 5c5e79c1d6df962cb72c93c34fda874f6076e437ad961f6baf0ece45db037e52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24f56f6a020df8e9068e4371d982a97fe82fab84b3fa59bb0a1bd36da193b393
MD5 252252da9315a364f394bae021178341
BLAKE2b-256 048608f7c2fdd3365bcbed89eb76bd2e376acf35fb968a930ccd71019e2d00d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 351e53ec04494cbef9b41f1ad80948e49259a8d0ae3f26b77518f3d48a9fe7ef
MD5 bddcd2695c575e30ece194901db19512
BLAKE2b-256 8007d2c257231bc8ea8a08267eac8d73659aedd8e6c4936052d681e7ce4ef71b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6b5bfcf9348dbc83bb03f683b937c5417020e3b22a0313d1ffa6de4527e394c7
MD5 cbbc49e04d71c8fd71baa7e59e9dc2ee
BLAKE2b-256 1d41a82a4ec338bbb1293c365c2c208b98e5c07e1d15ab8c4bc9af4425f6218a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 81ccd95ef72c5df330ad57d8e4e6111ff3bee8c00b07cbb16c1843659aeaad26
MD5 8688070b870681b0add64e640d13a914
BLAKE2b-256 2f8b042c363c8845c8890c9fc33ac5510cae3b733938aa8f59a61e3a66908342

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 912fb0522edffe1fd0d3ad31e02cd96a712809b34c1085e17a8e96492902a113
MD5 03d632818df650f34108eded3af9a6c7
BLAKE2b-256 259b13bb79bef06bedff19057964c6b5ef07e0ca0a70ce7eac96c480d097f681

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 baafaf0d28b56019f608ef4a57c9b7ce5ab8040f504015d60c04eeefdaf3f67a
MD5 8ca85fdf1c68b8a2a79abb52ecdb69b7
BLAKE2b-256 0ef5200e13cb0794caeded83825cf027874970b563f9437af1a07c317186b7a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 323f7cd1f6a809014925299926bd618ae5ff1a1b6b2944cdf1d8b5a43a27f128
MD5 c653d7c97640eb2cbb90f73cfa78b37c
BLAKE2b-256 c9aecd37f4b164ec6ccbd109d3e15d9421782c51258f298f581ab39e5537188c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 6aabd0f2d231b3c9d0a06f83eae200551c512b49aa859dac2d76ca02320b6fde
MD5 217fd9fd44852f591f0456b0279ae21d
BLAKE2b-256 f8620752fb07dbb014d78d85ee402fc8cf6d7d841f9601a200180f4ea363508b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.2.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.2.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.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e529dd32adede2792e802d297800cd462234afa34f1eb9431d062614684e2710
MD5 559da7292db50920c60e8fd8e874d92b
BLAKE2b-256 c44cfbbe687e95c03c1ed60a4788b098f9d7b140613600bf037eb135e9a7de0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 40f49c7e1d4f746b619e9ba859a859c72b4ecf60229eab0e8d0ee4213132fed0
MD5 3a420a3242d50d88729ae079b7eb92a9
BLAKE2b-256 9f317ecd59ceceec45babd92b809bee1d8315dab9fb4f62c45a3ae0e4ea09c4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a126b87915a467d4ac7cf911a60b73771aea629e10f322a622ed84a5ad5d577d
MD5 b47d4cdaf9e7f178f27bee1c4096ab5f
BLAKE2b-256 eab30bd4f304b06d35dc1a28b631de48895ce49b3818ac6168a043288f6a4129

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 21fafc4c966b1cacc9e3bbb28d97e8397a2a138b4239ffd63d0463b28c05e985
MD5 29b0e4dee1a721c5ac0004d5ed2ce079
BLAKE2b-256 a6e9d4d5d75131d644e6a5a968db40e8e1e9b155c828c9716eccfe40f40c5245

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 31d7f55e5d895f1d6dd7051c898a7cdd40353b4fe5bb66f7119457fe9ecb2a6b
MD5 67cea55d89b6ec2fb81c1c638764b3d7
BLAKE2b-256 0f0cc8b0f3236c3698249095b912aec3ea6f8ab4c576aa5664efe062e8201edd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 db95521c310ca5bf0cf7b5a985dea64220227563d0991ba0b140c99799a47d8e
MD5 8c815760873a3dbe4649930a21d917e6
BLAKE2b-256 17e174fb0de1fa233723c1c6ef6782f5c2a8e9b4ad8a4a78273c315d31c34e7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 552aaf92ab73055032f6f32f0edd85a5a523c2a34cc86ae0a949e666ac443160
MD5 b46c24a6eabc3e7e54d02a8cc83bce9d
BLAKE2b-256 4ab184109ecd40091ce6144c8d9984f7d3137473877943d9f3b94e5b3902a726

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 87d2ce4ff35d93fc54b99355b441335a899053ff94962fe2e7facc1a3b528df7
MD5 a0e0956705698391fbe2da93738a6ddb
BLAKE2b-256 99bf48ba69d5ed65345e8b63ee0b1e210985fb02477a9f18d3760722f621b429

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 16.8 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.2.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 5a588eb47bf1bb87306ef206619e170132333e562e51be89863863d6f4a457b2
MD5 a6740b8ffb8f3c36d6ded7be341040d5
BLAKE2b-256 c983a2048fe16bf740f6606a8e98c3a91d1aa6f24f37e2f8dc82cec7e02750e5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 18.1 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.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3744c320edc6af599ecf135db12dd36515220366e092f0217909d7ef149587d8
MD5 b6be5acdcc74c41a96f375e3637b5d9c
BLAKE2b-256 865d7e3b71ba9acde7d0cb6bca8a43728f09ee9cdaff4e4bc7cb36a8fee1fbe8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 16.6 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.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4988353d63b45ad669f3d5237910cb8d54ee2fd34e8a1912f5a2218d3a625523
MD5 cee94a1bd0bea2a3a390a08227c23d79
BLAKE2b-256 a0ceacac6db569177c486df5872510076357ad39b408d04942fb62738204f14e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d95798a4bd6ed526986644e8cc2174fbac99ffbb8ae799a1d979fc2d0893fc0e
MD5 13414ed6198f9e5b599888df3fc84432
BLAKE2b-256 61ac7e31368ce7e2a9c44699818d157c1070e7b50a36272d43c32f6e71e1df80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 bde52f708f74d590996e3e6ee6f85ffedac96dae4093fa581fddaee76ca7dd6d
MD5 5d0d504379058d342cc8b54da2d8af4c
BLAKE2b-256 26451c2f5d0523c3dd3b3ef4b56898991a3714e60eca41166bb135ceee65c6d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ab7a9260964960b231fb8074eca0860df4156b4013b4da20396240e10f64385e
MD5 aa6dd8647a3b7a0a902b8a782c308388
BLAKE2b-256 f846abb5cad5521a79812a39e83cba0e2c9a4377bc3fca8de295aada907d3434

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 cfc8392c6ded91d8f000d801623e41fe3eb93279c103341df0d5611eace8c8e3
MD5 aee7ade8422b85f45cdd4d533590b3fc
BLAKE2b-256 cd51c54d0a38d3e26c76415d4319027477ae014c8b3cfb2930dd0513ccf6d2b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6198ca962bb05b90a1e67209453a468c8dfda3a2c7af5ede737436779bd3b025
MD5 5837f2390b8e5e929fc05acd8b3e0ef1
BLAKE2b-256 f7db22b45b9fb3f6e81f70ffd5a7c317fa7060ff747e0867e3622dc7f1e05cc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2d7d43b9bea4edc5558771440a79f912e058d460c0b0f1105640d825e95bc00d
MD5 1c58b059ea90c17469e5e54cb01ee7e2
BLAKE2b-256 e14f0f34799df2370b0b12e50c32dfe7dd4ac89b28a7ce3904f7d809902d1a57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f2ea467ab7f2b35c7eba41df55bd63f6ec13bc0a9214ec7bcda59a82f5dc93e
MD5 b970dc8fd5ae77fcbf2eeda437cb3001
BLAKE2b-256 d1a689a7abe76acea4b1ee8dfee21e1e7045807bf25ef2cd0f0f1c556a982577

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d50350c72b1094584a5152ca165b21197bcad747558f7515101c536ecae4b9ec
MD5 0d337401ad96c25dff98d37249d4b8e5
BLAKE2b-256 f16bf0a77c060ccffb70d19112e5d5009ce177318cd48aad4498fc2b2f17e5e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.2.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.2.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.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 325fe7cd481dd55ee4345aab0a84bf7995c1eee43a9e91419ca2768d07f085e4
MD5 1291723648159108f8875b98386e5a29
BLAKE2b-256 f8b301cdd9e7f26f59a13a8371f765f8b35ea9ed5975767728d05e6c7ee7c1ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a5fa75ea7f94f03fb6f21c96c356d3a51a5e7a0672c4d661693d9911468d1064
MD5 88fcc2b20826138c038030d2a2ffcc58
BLAKE2b-256 75cd28dfb48fe8da52aec889b8ba0c0b9be8657e7a09e8d7dfa065e2fbd800f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9679ae50f06b4be8d025cc9211cf8832bcfda7bb32d53b1d196f1da9e14a5d99
MD5 f490ddd8238eb28734efd9be89b3f64c
BLAKE2b-256 17738b1879688247d2ea91e7bf2bb050848f98c468df40dbf3187a02716f246b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 14451864eb7c1c2849b143c943cfb8b53cb573a2fcd3ed649dc25d5e5c043e6c
MD5 2d44f08c355e373a6c0d77e42bfd47c8
BLAKE2b-256 e8db9cf4bfb5e27888b2cf23cf987dc6628610ff7216d71b4dee6912773cd063

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d26ec3925a7ac89fcb64343232d8e33e0fece9a80e16db8b76f1f12d9716e501
MD5 b42eed0d36e742e35e7deab7dc3ad83d
BLAKE2b-256 9288773f7cbd186dae35c26058a42c560cbddaa4a43d9362b0c83c5b5f7fab4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c9eab072a5bc221a274f8f1f57391cd1605d4392db6b1241d8988cb38dac16b4
MD5 bbfa72cba844e0ef5cc807de753dd953
BLAKE2b-256 0acd650db484ca7cda4303912b2a2049ec000a70036ca93a9c70409be0bda65f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bb72f0b9f4a6546a249208d4243f9164b1430c3718aa350a7e10a3634cbbd5a
MD5 ba979cb8d27e0738aa14e4ce35724fe7
BLAKE2b-256 ff16de6a284e5e023c8c261d138e9907322bd8de4018a442d49f54c31a949e8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 474d54cedab1739f140ab4e68cb0b79fe0d5b635d30b85bdfa4eee8ace6d62de
MD5 ec6508b2c3254478dc0ee0bca0d9ee38
BLAKE2b-256 cf10b496c9d135607b9e80707b0494037007b49108bf5e236e65d66521136564

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 16.8 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.2.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 805ddf0ce328486b6b1f776fb811b8e6887259e3a554b2ea6ca52677074318d7
MD5 30735b5d4628d8ba5f68d2d0c9d38eb5
BLAKE2b-256 fb42e956532f707c807669c491fbf852923bec7d8a8b41d8fe1050bba01d3992

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 18.1 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.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1cf405a538d4fcbe1c1dd3c91c9cee6e7c52340024fa9ff32bc61074b3154923
MD5 6c06e9ad26b665738c4ee558dbc43381
BLAKE2b-256 1a6894d83326468077fb4dbc01aa4c5a5c00eb4bacb72df8b55dd866c8f71e75

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 16.6 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.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f4b6ae3474cda04007101d80fb81c75f815d76ba80ce3e177b58792781ea1fc6
MD5 db5530f8bf27dce544942f8cf1e8f6ae
BLAKE2b-256 eaba62ec07bc8666c11479e37266ceb6f3e8f8be903f04f4b64224f4fce4979c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 80.8 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.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f571fcdd325b282d7ca90b48894c174c20830f19e9c7f8ac392c5f391a98f784
MD5 2abaa729573c8ed25186344065f00893
BLAKE2b-256 c583275a4d28f246144b26c947df61532ec56810e2703e3ff996c02da2a4cb7c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp39-cp39-musllinux_1_2_s390x.whl
  • Upload date:
  • Size: 82.2 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.2.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2e4f90f12da09049e17c293939667a23e5e6ee1e47d368b2f14632df009bf759
MD5 62d718346e5674a568050262dfa7127c
BLAKE2b-256 d787d19ca949a9135d95525f592834cbc3b70e8d3049209c0ba8290074d8d60e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3ed09e9bb6e79f18b696e36919d11dbbcebe3e1d1c4732d218cc330732fa999b
MD5 f8e3584fd79d6c248deabfaaa78a3f39
BLAKE2b-256 114fe6a5502ead48b9f38fc260b54dadfb5fddfcff9a1f2e2f42be15558d5857

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 85f08b86c93462d7731b5c09253a99468ac9fdb934c37c035c40664965692af2
MD5 30a9a8c38a51493f688e0164057df279
BLAKE2b-256 701bccbb2c3629180d7220d7c8d801db7380c5be35d29de5825c475372199ebc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 76.1 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.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b099d852b827441033e0c44b6bdeed282d36c34c5158cf319a47780c6e4753e5
MD5 72643cc0c3646fabeed2c45547fd6234
BLAKE2b-256 bc403a288cdc3da4e31775bc6736c118e5d615480ed68c9b62dab1c67edefb4c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 77.4 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xxtea-6.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 46bf5d9fc7130d7f58803d847fc67f8f6129bed460a180f7f3fc143a9a1a73d1
MD5 9b08926f9499d1f0355e0085d7401e82
BLAKE2b-256 5e37874c503c9e6de2b67cdd1b02461368cda9680cb3f9279e7ed7a1713d7e5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 928893670a015a5d1ad76fb67603eb31868cc40f7c83dfd06b8ddade3013fb65
MD5 1251ff850399fe9e65bcb15a7ed93eae
BLAKE2b-256 ed14d352e4f6b5c6acec56bf0915b66aebfed71580df11d07ed92e92257e6759

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 9c53c4be6991e2f52d00b136b04fc197c30dd44bce3711bd92669346fa9bdac5
MD5 3ea83a82c18a4926cdfa05c1148a75de
BLAKE2b-256 1c632d8bb09d4d8fad16ca4758ade6c7d71c0a855dae7b62ba21394825261cc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.2.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.2.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.2.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4e248195a36af63da684efd897a8c0527325933d2fa058f8e35c24348b0f964d
MD5 f4ba9929fa8132d102434280ee938d90
BLAKE2b-256 94868e14829ff31e24cbd8c1c6ead57c95180a3bf2068557fda9e1e475558bcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 328bcc0bb94a47a82029299bb83e1238e43fd19513519d59af922a3a633448cc
MD5 76a227b01d4977a620fdd79f74362645
BLAKE2b-256 b9fa751a46111a2a409be0451f5ffded49645f991d9b013a79fa7100c9cb499a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0072be556e841d67817a8c78aae93cb89d983f46502387b4c4ee7d309c1aa600
MD5 cc13b5766bb61951facda096ca2257c9
BLAKE2b-256 c788621eb725df856529f468d39358d6e0342f01a9f62dfe527b069f29d52af9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 9b9134fd81094be6b7b7e34ea1be5bffede422d1465639ce4d31e51a2f51b700
MD5 ee377d6df3bc2a53fdb78f8723d9d904
BLAKE2b-256 3fafbfb607e51c15363c5fcd95fae88fd72a5e3cbcdd33936fce862a522ba088

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a8e429dc1410541cda8ec632015f4f7bcf4c42a39a0662d7a1b7d5bef4a298c5
MD5 5bcf087cf68a1e705fdab90968e63478
BLAKE2b-256 404eaee305c2d5824634c383211036382318b894e758d7857ec4eeac74fd8dac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 1e637a0814fbaf9f3f57ef04ae279368388bb2381dbaeb759877f2364dd7e935
MD5 091625f50f1942c124990b7f4f237968
BLAKE2b-256 977b42875202e8e80ec9fe1d66e24bde0edec4f729c99e1021626a927244df49

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xxtea-6.2.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 16.1 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.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac13180022c6c1277c478489508e3e6614383f5ef8e68344e8d0f62520d97424
MD5 0483e6250b7a0b4ecd972f81c1e67036
BLAKE2b-256 e013cd6164fa6dc9de57cb8de82889151feda4a2791b421b7ea35c4f49d5fc1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for xxtea-6.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 190873fa6f6e0fc8298fd6ae19cf50c5921e0697289755fdb4bbfd0b1dfa9df8
MD5 48e78f0940a7b38bb2457acceb42a514
BLAKE2b-256 abda988ed5b723bde1d6b24038da8e310ad0e95717e413bc9ea43d00a40a99e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for xxtea-6.2.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.2.0 This release

214 files

6.1.0

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