Skip to main content

SLH-DSA

CI codecov PyPI - Downloads GitHub License

The SLH-DSA project is a pure Python implementation of the Stateless Hash-Based Digital Signature Algorithm, as specified in FIPS 205 (derived from the SPHINCS+ algorithm).

Features

This project offers the following features:

  1. 🍻 Zero dependencies!
  2. 🏷️ 100% type-hinted codebase!
  3. 100% test coverage!
  4. 🔖 Supports modern Python versions!
  5. ⚒️ Designed for humans!
  6. 🎉 More features coming soon!

Notice

Python 3.9 support will be dropped in v1.0.

v0.2.5 is the last release that supports Python 3.9. If you need to continue using Python 3.9, please pin the package to v0.2.5.

Installation

pip install slh-dsa

Quick Start

The functionality is extremely simple to use, as demonstrated by the following example:

from slhdsa import KeyPair, shake_256f, PublicKey, SecretKey

# Generate the keypair
kp = KeyPair.gen(shake_256f)

# Sign the message w/o randomization
sig = kp.sign_pure(b"Hello World!", randomize=False)

# Verify the signature
kp.verify_pure(b"Hello World!", sig)        # -> True
kp.verify_pure(b"Hello World!", b"I'm the hacker!") # -> False
kp.verify_pure(b"hello world!", sig)        # -> False

# Sign the message with randomization
sig = kp.sign_pure(b"Hello World!", randomize=True)
kp.verify_pure(b"Hello World!", sig)        # -> True

# Export the public key digest so other devices can verify the signature
digest = kp.pub.digest()

# Recover the public key from the digest
pub = PublicKey.from_digest(digest, shake_256f)
pub.verify_pure(b"Hello World!", sig)       # -> True
pub.verify_pure(b"Hello World", sig)        # -> False

# Export the secret key in PKCS format
kp.sec.to_pkcs("seckey.pem")

# Restore the secret key from the PKCS file
assert SecretKey.from_pkcs("seckey.pem") == kp.sec  # -> True

# LowLevel APIs
kp.verify(b'11223344', kp.sign(b'11223344'))  # -> True

License & Copyright

Copyright (c) 2024-2025 Colinxu2020. All Rights Reserved.

This software is licensed under the GNU Lesser General Public License Version 3 or later (at your option).

Download files

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

Source Distribution

slh_dsa-0.2.5.tar.gz (218.7 kB view details)

Uploaded Source

Built Distributions

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

slh_dsa-0.2.5-py3-none-any.whl (33.3 kB view details)

Uploaded Python 3

slh_dsa-0.2.5-cp314-cp314t-win_arm64.whl (168.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

slh_dsa-0.2.5-cp314-cp314t-win_amd64.whl (184.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

slh_dsa-0.2.5-cp314-cp314t-win32.whl (164.2 kB view details)

Uploaded CPython 3.14tWindows x86

slh_dsa-0.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl (441.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

slh_dsa-0.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl (435.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

slh_dsa-0.2.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (444.7 kB view details)

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

slh_dsa-0.2.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (430.3 kB view details)

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

slh_dsa-0.2.5-cp314-cp314t-macosx_11_0_arm64.whl (212.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

slh_dsa-0.2.5-cp314-cp314-win_arm64.whl (158.7 kB view details)

Uploaded CPython 3.14Windows ARM64

slh_dsa-0.2.5-cp314-cp314-win_amd64.whl (175.8 kB view details)

Uploaded CPython 3.14Windows x86-64

slh_dsa-0.2.5-cp314-cp314-win32.whl (157.2 kB view details)

Uploaded CPython 3.14Windows x86

slh_dsa-0.2.5-cp314-cp314-musllinux_1_2_x86_64.whl (415.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

slh_dsa-0.2.5-cp314-cp314-musllinux_1_2_aarch64.whl (407.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

slh_dsa-0.2.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (419.3 kB view details)

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

slh_dsa-0.2.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (401.5 kB view details)

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

slh_dsa-0.2.5-cp314-cp314-macosx_11_0_arm64.whl (196.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

slh_dsa-0.2.5-cp313-cp313-win_arm64.whl (157.0 kB view details)

Uploaded CPython 3.13Windows ARM64

slh_dsa-0.2.5-cp313-cp313-win_amd64.whl (173.0 kB view details)

Uploaded CPython 3.13Windows x86-64

slh_dsa-0.2.5-cp313-cp313-win32.whl (155.4 kB view details)

Uploaded CPython 3.13Windows x86

slh_dsa-0.2.5-cp313-cp313-musllinux_1_2_x86_64.whl (414.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

slh_dsa-0.2.5-cp313-cp313-musllinux_1_2_aarch64.whl (405.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

slh_dsa-0.2.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (417.7 kB view details)

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

slh_dsa-0.2.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (399.6 kB view details)

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

slh_dsa-0.2.5-cp313-cp313-macosx_11_0_arm64.whl (196.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

slh_dsa-0.2.5-cp312-cp312-win_arm64.whl (156.9 kB view details)

Uploaded CPython 3.12Windows ARM64

slh_dsa-0.2.5-cp312-cp312-win_amd64.whl (172.3 kB view details)

Uploaded CPython 3.12Windows x86-64

slh_dsa-0.2.5-cp312-cp312-win32.whl (155.3 kB view details)

Uploaded CPython 3.12Windows x86

slh_dsa-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl (417.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

slh_dsa-0.2.5-cp312-cp312-musllinux_1_2_aarch64.whl (408.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

slh_dsa-0.2.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (421.1 kB view details)

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

slh_dsa-0.2.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (403.1 kB view details)

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

slh_dsa-0.2.5-cp312-cp312-macosx_11_0_arm64.whl (198.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

slh_dsa-0.2.5-cp311-cp311-win_arm64.whl (156.3 kB view details)

Uploaded CPython 3.11Windows ARM64

slh_dsa-0.2.5-cp311-cp311-win_amd64.whl (172.0 kB view details)

Uploaded CPython 3.11Windows x86-64

slh_dsa-0.2.5-cp311-cp311-win32.whl (154.3 kB view details)

Uploaded CPython 3.11Windows x86

slh_dsa-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl (404.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

slh_dsa-0.2.5-cp311-cp311-musllinux_1_2_aarch64.whl (398.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

slh_dsa-0.2.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (408.0 kB view details)

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

slh_dsa-0.2.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (390.6 kB view details)

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

slh_dsa-0.2.5-cp311-cp311-macosx_11_0_arm64.whl (196.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

slh_dsa-0.2.5-cp310-cp310-win_arm64.whl (156.7 kB view details)

Uploaded CPython 3.10Windows ARM64

slh_dsa-0.2.5-cp310-cp310-win_amd64.whl (172.0 kB view details)

Uploaded CPython 3.10Windows x86-64

slh_dsa-0.2.5-cp310-cp310-win32.whl (154.6 kB view details)

Uploaded CPython 3.10Windows x86

slh_dsa-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl (405.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

slh_dsa-0.2.5-cp310-cp310-musllinux_1_2_aarch64.whl (398.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

slh_dsa-0.2.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (407.8 kB view details)

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

slh_dsa-0.2.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (391.0 kB view details)

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

slh_dsa-0.2.5-cp310-cp310-macosx_11_0_arm64.whl (198.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file slh_dsa-0.2.5.tar.gz.

File metadata

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

File hashes

Hashes for slh_dsa-0.2.5.tar.gz
Algorithm Hash digest
SHA256 dcbea5bf9f2722b49e9dc0104eba1a617adbbdca5b2c64bf8a191aae4fbb08fd
MD5 a9d125abd8ac312991f32980225654d2
BLAKE2b-256 738bf8614f784ca5756a7a541f85f2288d78bcb27cf9b36e32be8d72396601e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5.tar.gz:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-py3-none-any.whl.

File metadata

  • Download URL: slh_dsa-0.2.5-py3-none-any.whl
  • Upload date:
  • Size: 33.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for slh_dsa-0.2.5-py3-none-any.whl
Algorithm Hash digest
SHA256 9d8292a4b606085089fedbe526d26c8036e9a57da43b67ac3e97f44545e6bd9d
MD5 11cb3dd329a845f473480e2cc10b153e
BLAKE2b-256 63e473e08f03594907c5f227217d314b935122e7dd75ffd79172827e9a66b072

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-py3-none-any.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp314-cp314t-win_arm64.whl.

File metadata

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

File hashes

Hashes for slh_dsa-0.2.5-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 ad8429c3bb36e51c7fb5abad8388a213dd77fd332c63179d971a6f5b4eaf58ef
MD5 51d874f88328bbaae7458927219a515e
BLAKE2b-256 83ac62c7f685eedfd3ccbb212bf1ad48a58666d9e61c319ebfd7437d6921b840

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp314-cp314t-win_arm64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: slh_dsa-0.2.5-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 184.8 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 slh_dsa-0.2.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 96f4e149bf0ab6fe9cd3c41ded99cb3f72c7b2b01547443a11bb50f55ac6f153
MD5 e07f2776114e024be79b9c8188fc2107
BLAKE2b-256 a13bf40499c63d4ac560c2dc8a5f34b92d3c20a3bde009f5c627937ca321c773

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp314-cp314t-win_amd64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp314-cp314t-win32.whl.

File metadata

  • Download URL: slh_dsa-0.2.5-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 164.2 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 slh_dsa-0.2.5-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 d02439f8fb265170a4deba3f619e3e9701c77f7232d8c13f86bcbd2feb807c7f
MD5 e87ac7a8011b5b45fade4febe432cd2a
BLAKE2b-256 46e3ec77fa3029919c317d1f3f0b7a63660d96e1b07397668d92793344e4d266

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp314-cp314t-win32.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f97862a1e6740e91d752c19da0bc64f7c12e3030e27893172af205881c60546
MD5 bca1cd9d62f2719872f917663691fd76
BLAKE2b-256 4341ed160729d6f28ff8c99d3b15209fec0c251575527a690383ff8374528f75

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0123920f495402608c047d2eac7b311c8fb97ba83f323ae625db2fa39ff44e6
MD5 f565f95d99a9cfa8ea90d7bb67426740
BLAKE2b-256 970753a555d0e73b7cbac204cc88d6d2cd296a4ac06788c52ef438700adf1290

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4ebce0298c450f0e71689a249769e3466b89000cfa0efaee5d95c0ccc29541e4
MD5 df9a4df8330f5234c31de9061f39d2fc
BLAKE2b-256 ff2a3e52286fd8f17fa3f99914d40b84772a3474409c57faad0ee5db911f6647

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fcb4eab246b56d1c352be9b657c30d2f56d6cf5e098f1da4b11d9029fd21b813
MD5 cf5cb2bdf55546986b313494f6b99824
BLAKE2b-256 41d90995777903dfd3858ece7327995c0d953f07b8f9af8e88b73d252472a9a2

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82a5a749d210b4a546b57e43b9a0688858a221e6fedb17a571ab1cea5bad10a3
MD5 a1fae9f846e53f251ebae93b046c4ec4
BLAKE2b-256 54263ce21304bcb0fafc15c01200a9d5cc558d48ba0b7b09162de04408739fb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: slh_dsa-0.2.5-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 158.7 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 slh_dsa-0.2.5-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 b0c998c3108319505f5875c2ac224e2c3c979fcedc3ff279588a7333130d8416
MD5 4a2cff0d3f0bd7162c618bd98ae1779e
BLAKE2b-256 07b54b1cf8d7e34057157128108a8810d069893774d4f506b815d0af6fea2c91

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp314-cp314-win_arm64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: slh_dsa-0.2.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 175.8 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 slh_dsa-0.2.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b7b6b14045607ff0d45b9ffd92c90d235d7ad96d79b245de2627f350a037f68e
MD5 e6c2bbd96e5bd9da2ff50f04b5ae9db0
BLAKE2b-256 6fad8271e8bcdd533554aa81f2a59cd99d54aa502c9f21dfceed644ce0edad6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp314-cp314-win_amd64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for slh_dsa-0.2.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 12e32a4729b2f62f89d7e2d142f3693d764a8715fa0270ad198ce14eed9e9f9a
MD5 86d1bca8c2b2782e632b73694544c65e
BLAKE2b-256 34e27f51a681dd6ee05eff68541e2e5385a316c023b2301b70f02757ab45cf84

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp314-cp314-win32.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 82066dca766532b5a089607f3b3c6000c38f4daeac361da926d05bf2fbd05399
MD5 a5298f76ca9760c13013a63264416e1f
BLAKE2b-256 dba29a63706fa2f50f6db149c41aba5644db49da0cd0a1997c4a901ab90aee5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b3e052f274f36823aad435fd72a7cf817ef1535b3a01bae376b03d35dfbfd5f
MD5 1e732b45c27d6ede483857e920fd7b12
BLAKE2b-256 df2002b797ca9a2a69c2a1612eaee2cd4362986f9b3ee341ff067720d4db43df

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9fdc0285c7ecd5a8bde5e4551818f793f82d9c4c06c816ec3cd5c86a6d4113c1
MD5 33701268de339912aa74f3fc5bd192e1
BLAKE2b-256 1d7c01e0500c8f22d53b2694b9d5aa0a42779aa957a2b95016ad769f00eb3ef5

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 67e86e7bfa9cd54c936d00c82cdd6158c8d638b139c18928d0be95d6c38bb2a9
MD5 04ea0430745049dde3bc8894d16dfba5
BLAKE2b-256 ae99937f64815069102b3a600e19de4b62540633d3efa770198aa7f5f9a77ae6

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3da9dbacedb49c07e230f41f74f6029adcb8acfeb82bbee342b337852e8414b8
MD5 74ab27420ee12e844fdf274e2ccdfd10
BLAKE2b-256 96c62c332f6053bc1453c88f2cd4ee1c09e0224183af908f8c1ce1da3d928d33

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp313-cp313-win_arm64.whl.

File metadata

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

File hashes

Hashes for slh_dsa-0.2.5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 40aab51576e327fa1a7354b482a9ef0356abb0deb38ae2f24bdd9f46a3fce777
MD5 c0c4d8f70b762a301b004fa58cae2b01
BLAKE2b-256 e332b84a375765c6fa8ac930869221a4045c4d80ece930341d6aa5acf0d6ec0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp313-cp313-win_arm64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: slh_dsa-0.2.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 173.0 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 slh_dsa-0.2.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 08652232f005cffd258f1e3b1af131e1000e5e0367fe244f92074c28a9ad767f
MD5 611ffbda63e5a9320c0b17fe5e83d74d
BLAKE2b-256 d3e7fdc5730c5b2e3b234ed004d2e15633cf9a31d05d370af4cadc6c4adbb0ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp313-cp313-win_amd64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for slh_dsa-0.2.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 85a55c40cac0f93f1c68ae0bd344a61908bb7a5c42eddbc438b80dcb5cc2a708
MD5 82e63fde1b81c41bd7893beef2542521
BLAKE2b-256 019b37b5806b072254f06530320368b27e54d423d1d75ff7b286965f8c5f9600

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp313-cp313-win32.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 13493517d24a34ecdea689c388511459224bbe0f384c0c0486211efefa3061d7
MD5 ed334b786c1cfdad9b022bd41c1917e0
BLAKE2b-256 09450525bec7ea53935f38826d4c3461353f638abddfc462da1e019219bd0fa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9ddb7b86fd0b0a805f3a4ec451232cdf521b5bfcb2574fc1f12bae2340eb44d7
MD5 4a0491783d7735c7d497cecc24880b8d
BLAKE2b-256 70b5bfdbdf425fddc8b0a7e4331a13afae012c7b37e8998264bb937b8ea46034

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5913b2a1dde6cf6bb6d86982b9acdcdd563d0e28c09388793c200e80589be2bc
MD5 0b002eda23a4272a34af12d6bfe884c3
BLAKE2b-256 6a00e744600396238df413ca5aab99e8d256c5ec655404a26f5c487e0a4d8200

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 445b5c621282821323a7f37dfa4a6e66c32ded47d7c0ae145f3f4c44b486b83a
MD5 ac613a9c4c3ee8475775799735f893db
BLAKE2b-256 197c44d1eca29da5f15fb141bd976c93bbcacc786dffd9904f5e4d9ca7745f14

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70b5aea1024853519fbaa29279d08c28212053ae3866dfebf9a2c7e57a197e6e
MD5 3201ba7e9c6eea995e9379e660a17a54
BLAKE2b-256 6fb2931adc843b87694991ba2ab612c9cb2d00b7d07e5d5cc447b7dbc8163cae

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: slh_dsa-0.2.5-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 156.9 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 slh_dsa-0.2.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 efb61aab3f64f4e6b3ec1a90434a16b1a336ebfef9e5777b2d6ec95e10928077
MD5 054f0408d5431f74323fd93fc9b91a9b
BLAKE2b-256 b0053f3c7731db53bcd038aed3b01fa52f42b316941a3c19efbfef0fadf690a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp312-cp312-win_arm64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: slh_dsa-0.2.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 172.3 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 slh_dsa-0.2.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6df12cccbed2d070b559e7115c86c52b55115f0364eb3d3ef16eac6807004b40
MD5 2b2817ebcf58bcb763cae028b07781ad
BLAKE2b-256 cec7113e34cc3178fb721c15102bd7c2f22bef831eb6beeccb1527579fe29988

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp312-cp312-win_amd64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp312-cp312-win32.whl.

File metadata

  • Download URL: slh_dsa-0.2.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 155.3 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 slh_dsa-0.2.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f7c7dab477a18460b392b5124649f2e0b9356ce3aa12edcf122ad93faa69227b
MD5 6b7608417e1626dec4f5801f66775ba5
BLAKE2b-256 687631bdc84564047eecde9681a449b8ec17e149b01e4735c19a9f2491a076ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp312-cp312-win32.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54a984a8d68585246b81336f089919274cd7423a914ea8e3ebd7c4b6880dd5bc
MD5 ea4a9eceea73ef30531ca4ea6ddd5f07
BLAKE2b-256 b42e64da919025419a14386ad9ea328dc74ff6f0e72d8a06b4d00e9f3b61b6e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4832b47a1d9d9c578b93df77309b63a1abc3add783273a339f926e1aca8557f9
MD5 7fdec8f907e2f05e1f94a04682aca701
BLAKE2b-256 986297d235164884814cb96868fed890bb27196fab90fccf782a2b9a12859720

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e946fc0b06281190ada29b121ea777a7422fa1f9226a159ae2661c9cff0e80dd
MD5 2feaee830cfe40f2343353797765e5ea
BLAKE2b-256 d6e9451c7882e3a23fff11e064e9d6517ffd6b4881925e59722ad48f2f5bc1a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a1080b460c22cfa5aa6807a60067225c36495991d40331af75aede7bac75a8cf
MD5 ca19f8eee467948cf34f149d7614b3e3
BLAKE2b-256 3385e04764f2813d95aaec894bbf01d51a75929f98ab37fc1b7a13b37904c579

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7dca7b601c4c7014da93b8c8dab90e801a62e9f2bd6281c9e2f1b6e7a9756efd
MD5 5eefe4dd8284c0cc63cc6f3b78f98ad6
BLAKE2b-256 42e09a4967cc547e795ee08d0f6c681c3c17f9ba8fbe2e68fae3e5533f47b17f

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: slh_dsa-0.2.5-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 156.3 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 slh_dsa-0.2.5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 17076e47c9425b3edc0e8ec6c1da4fe959e73b4849b0bcef21f5f713526a175f
MD5 de9ed064504e2a98b483ae6120c45e74
BLAKE2b-256 89e80a9bd2778ff393b7de7c8680ed3ac450d0b55b650688a8cf8a1b15a877e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp311-cp311-win_arm64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: slh_dsa-0.2.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 172.0 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 slh_dsa-0.2.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d853504ebc3cdda98c47dfab3a0afce9b40d3a87cd936b708c1400675cde6796
MD5 aa7fc596f88526df803b714a43cdf392
BLAKE2b-256 5ecd9d932e8e1ad16038a760dcf5d7fd2cba46ec4f7ec9a19bc37d266b99a70c

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp311-cp311-win_amd64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp311-cp311-win32.whl.

File metadata

  • Download URL: slh_dsa-0.2.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 154.3 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 slh_dsa-0.2.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 729c961eb12e2eb5d1d7d8235fbd4574289cb3fa7b470751c8625295f3570b37
MD5 2f3768039581470d5dd54a02c649bc19
BLAKE2b-256 a03603639535b33c125c3119cd2d19c0c8f88dee48cb5bc8e655cbe526740bcb

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp311-cp311-win32.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d667301a827a03381ea0770f22cfe1656047e4ae847665559d273dbfaae7ccd1
MD5 6505bbfd5bfbc171d4d70f364e76da6c
BLAKE2b-256 9a9a887712f724b7865154e4b2d450007a48ec12adbd4645d563a6e485f9e6a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6a73a6fad593585354b42bc702856e090c7d0d0831e21de8843f70e7b00cd599
MD5 c382da7120dd4f956a72560179a4d7d1
BLAKE2b-256 da270c04c788e1d3ef5c665228e3deb700c62cd63dd77ca7f5312f44fef8d6c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 492b5cc2f7c516b71b549686603d80d6678c8d9795eabdbcebbff2782126aef9
MD5 3f1be1df93b95d85542602c89a112dec
BLAKE2b-256 4948e81b13f3a8e346e672e23ad8bc31fa54127074c1c82af5dd88434a86bcc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1616535b710c2345b554ed1e0b3a45b2198474eada7679f93d2ea15c8db2fc2d
MD5 4569cb608c8ec65feb07da5c2e9eeae5
BLAKE2b-256 e178f55d5cc070b6fbb366b8b5477225b4745e01208e7e5db83569fedbbd95fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae113a9a4be894036921a0e624f0cd6883de209d7c8978abf2c549b4471ac4bc
MD5 33dc70124ba67fec80361fad1c8bd3c6
BLAKE2b-256 69774501be58c971b1d824c550fc19a12b11ac19251daba2579fad6effefd349

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: slh_dsa-0.2.5-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 156.7 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 slh_dsa-0.2.5-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 e5297191067cf5d254d62ed3122e8a26e454e30579e09c83a1f1b2b1aebcdf5c
MD5 1f5b3d1e33f60eab3f2fef004aa5515d
BLAKE2b-256 e7380e2dc35565c4a7467ac06403ebefeb85ae68717c0cb7d4ec1a90dedfaa11

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp310-cp310-win_arm64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: slh_dsa-0.2.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 172.0 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 slh_dsa-0.2.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 eb454a87503905865443670cdde6121b0f2ea2234f17b2f4b4badba6634a48aa
MD5 8566759c72694ed24c9a98d78bff787a
BLAKE2b-256 ecd43ba0f16faae85be512e3b642e7d6e6237c173a4a35462e5e7040dcab30df

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp310-cp310-win_amd64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp310-cp310-win32.whl.

File metadata

  • Download URL: slh_dsa-0.2.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 154.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 slh_dsa-0.2.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e910aad6dce825631a80765082def6cfd3497c6ff926fd848b7074f406f69784
MD5 067905a96bf358a982aaee5bf06fd082
BLAKE2b-256 6d7a15273433d12ba6de2d1bf1b5e6f3f6ad383b5f7c15168bfaec69b981a939

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp310-cp310-win32.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a176d5b95497b63bdea4eb8bd962930f847d3906ce0c727cbc452b902ce81f2
MD5 6d55cd24a279711f51097c8b2456c4ca
BLAKE2b-256 f0f5b41e1749980fe49b2d01981ba6ac6d1e52c7d48e1a5ffe7b3dbf84e159b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f5ceb6ee84d224a71a2985af74d41bbdaa0d767e168ab7c21188beb83b398143
MD5 fd1040a19eb93bf16821000fe6ae5e26
BLAKE2b-256 7f275f11ef7ae6ea71847814c4d3b9ab044366e79e79ed88f0a3c33b4bae4a72

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8decd7ccd21fa93fcdde921f0bf7097a4f7b36b49b2b68593a5bb79f19cc4f47
MD5 1ef51ff769751fb821520059db2a39dc
BLAKE2b-256 aef20c62db8cef7e7b97eaba002f34d3ecae6b0436cd5c0dcbddc286d2c77525

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a0717bbdd482030937189d5a6a4a2296966c807c014c17b713a2f97cf86b7aeb
MD5 45fce9162eded370febd7ce351954497
BLAKE2b-256 ade6d9e36bf7bfc8dabe492af11f55e45e3983bc5465245da95dfe12a16ec8c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

Details for the file slh_dsa-0.2.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 484bc72504944d3a142b64d17bc085c19661a87936cc42fb3898477cc65c1eda
MD5 d1330cf84f9c0cbcb130921901586d07
BLAKE2b-256 aeb724a431479e00d2c02b2b508ee21173f32bae1ccf3dd246ac8375c4695189

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.5-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci.yml on colinxu2020/slhdsa

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page