Skip to main content

Pure Python implementation of the SLH-DSA algorithm (based on FIPS 205).

Project description

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!

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).

Project details


Download files

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

Source Distribution

slh_dsa-0.2.1.tar.gz (24.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.1-py3-none-any.whl (21.5 kB view details)

Uploaded Python 3

slh_dsa-0.2.1-cp314-cp314t-win_arm64.whl (244.7 kB view details)

Uploaded CPython 3.14tWindows ARM64

slh_dsa-0.2.1-cp314-cp314t-win_amd64.whl (310.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

slh_dsa-0.2.1-cp314-cp314t-win32.whl (263.6 kB view details)

Uploaded CPython 3.14tWindows x86

slh_dsa-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (710.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

slh_dsa-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl (686.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

slh_dsa-0.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (701.2 kB view details)

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

slh_dsa-0.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (674.4 kB view details)

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

slh_dsa-0.2.1-cp314-cp314t-macosx_11_0_arm64.whl (310.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

slh_dsa-0.2.1-cp314-cp314-win_arm64.whl (234.4 kB view details)

Uploaded CPython 3.14Windows ARM64

slh_dsa-0.2.1-cp314-cp314-win_amd64.whl (274.8 kB view details)

Uploaded CPython 3.14Windows x86-64

slh_dsa-0.2.1-cp314-cp314-win32.whl (236.8 kB view details)

Uploaded CPython 3.14Windows x86

slh_dsa-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (634.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

slh_dsa-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl (613.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

slh_dsa-0.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (625.2 kB view details)

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

slh_dsa-0.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (603.6 kB view details)

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

slh_dsa-0.2.1-cp314-cp314-macosx_11_0_arm64.whl (291.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

slh_dsa-0.2.1-cp313-cp313-win_arm64.whl (230.4 kB view details)

Uploaded CPython 3.13Windows ARM64

slh_dsa-0.2.1-cp313-cp313-win_amd64.whl (271.5 kB view details)

Uploaded CPython 3.13Windows x86-64

slh_dsa-0.2.1-cp313-cp313-win32.whl (234.2 kB view details)

Uploaded CPython 3.13Windows x86

slh_dsa-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (618.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

slh_dsa-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (612.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

slh_dsa-0.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (625.9 kB view details)

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

slh_dsa-0.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (603.4 kB view details)

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

slh_dsa-0.2.1-cp313-cp313-macosx_11_0_arm64.whl (293.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

slh_dsa-0.2.1-cp312-cp312-win_arm64.whl (230.0 kB view details)

Uploaded CPython 3.12Windows ARM64

slh_dsa-0.2.1-cp312-cp312-win_amd64.whl (271.1 kB view details)

Uploaded CPython 3.12Windows x86-64

slh_dsa-0.2.1-cp312-cp312-win32.whl (234.4 kB view details)

Uploaded CPython 3.12Windows x86

slh_dsa-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (621.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

slh_dsa-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (614.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

slh_dsa-0.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (628.9 kB view details)

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

slh_dsa-0.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (605.7 kB view details)

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

slh_dsa-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (294.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

slh_dsa-0.2.1-cp311-cp311-win_arm64.whl (228.3 kB view details)

Uploaded CPython 3.11Windows ARM64

slh_dsa-0.2.1-cp311-cp311-win_amd64.whl (269.8 kB view details)

Uploaded CPython 3.11Windows x86-64

slh_dsa-0.2.1-cp311-cp311-win32.whl (232.7 kB view details)

Uploaded CPython 3.11Windows x86

slh_dsa-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (605.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

slh_dsa-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (605.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

slh_dsa-0.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (614.1 kB view details)

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

slh_dsa-0.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (594.5 kB view details)

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

slh_dsa-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (292.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

slh_dsa-0.2.1-cp310-cp310-win_arm64.whl (229.3 kB view details)

Uploaded CPython 3.10Windows ARM64

slh_dsa-0.2.1-cp310-cp310-win_amd64.whl (270.0 kB view details)

Uploaded CPython 3.10Windows x86-64

slh_dsa-0.2.1-cp310-cp310-win32.whl (233.3 kB view details)

Uploaded CPython 3.10Windows x86

slh_dsa-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (614.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

slh_dsa-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (616.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

slh_dsa-0.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (621.8 kB view details)

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

slh_dsa-0.2.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (604.5 kB view details)

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

slh_dsa-0.2.1-cp310-cp310-macosx_11_0_arm64.whl (296.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

slh_dsa-0.2.1-cp39-cp39-win_arm64.whl (229.7 kB view details)

Uploaded CPython 3.9Windows ARM64

slh_dsa-0.2.1-cp39-cp39-win_amd64.whl (269.9 kB view details)

Uploaded CPython 3.9Windows x86-64

slh_dsa-0.2.1-cp39-cp39-win32.whl (233.4 kB view details)

Uploaded CPython 3.9Windows x86

slh_dsa-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl (604.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

slh_dsa-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl (607.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

slh_dsa-0.2.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (611.3 kB view details)

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

slh_dsa-0.2.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (595.9 kB view details)

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

slh_dsa-0.2.1-cp39-cp39-macosx_11_0_arm64.whl (297.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: slh_dsa-0.2.1.tar.gz
  • Upload date:
  • Size: 24.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slh_dsa-0.2.1.tar.gz
Algorithm Hash digest
SHA256 024a1e57823d17c7e7c7700d3a39d236f91e990db5a4d9714013ae84e3c156cb
MD5 43db63b57d12e64e8dc3fcd078afe557
BLAKE2b-256 88bbf896bdb47d0977f90c8216d54cdb552da2247f5c362f497b96d3996ea1d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1.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.1-py3-none-any.whl.

File metadata

  • Download URL: slh_dsa-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 21.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slh_dsa-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 232702ca9c255774f78e4de8de20624a147d1e690f7a832413e6ffe8b4993c0d
MD5 a540e9a7da0d0b4ff8f13cd65e146ae9
BLAKE2b-256 a8e2fd8b97e93b1e62536fc01743668febe1432bf7daf091bf70ea5fb4961008

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: slh_dsa-0.2.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 244.7 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slh_dsa-0.2.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 7efb7966a3587921666bbc4e419dbdc6ca28ec59eb75ff5b6007a6fd147ddd96
MD5 da71841b92f0c6c69dd5fa7ae6bce63e
BLAKE2b-256 052fe79c7a37cb24cc22f045c6444bfd581de8c52fa4ccf8b1c02edc3022d5ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: slh_dsa-0.2.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 310.9 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slh_dsa-0.2.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 0cb7c34303e574b888d10df37644fb6d0d50fa8549a1efa5315e284a32185790
MD5 55ec1e8d613ee00a2a7adc3818938a40
BLAKE2b-256 145f0ac4e5426a4ec1773a008223156dd0eda4f82bb26ce106f2419d7ccaab99

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: slh_dsa-0.2.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 263.6 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slh_dsa-0.2.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 53c5268c6f704f39f804583f0e4ca9fac9504ae3906affec2371056cc682cb03
MD5 65db955846e1e38f4b9d02cbed82319c
BLAKE2b-256 f9fda8dcb9c9da6d74baae50d1611e197acb2ccd776cf5e54fb9fac0cc0fb1ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90674b530ec6099b533a20c8b835aaee7f711e10eb6b93630a76012b90cc8a04
MD5 330a7d474efab3c5d6cb09c0588252ec
BLAKE2b-256 b7180ec1c309f2bbe422cd0b648ab9f5bfe5539518a3d6ea0bb0858408673912

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd5e57c14e88b5de4d28d34fd1cb85075e2a7d28f7c2bb53fe33ed4a09e53d64
MD5 dbcfa973129f16b013778908b78c3539
BLAKE2b-256 776b86ee942a232276ff61fc84e2bc9df943fd2b906586ca43cc7f2d9cd1eb36

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-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.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 802283c758b241acfbb67b45d672c582032474b6ddd1f3286dbad45b1d4f9128
MD5 9bbc42940576326da92ab4eb245ff6fd
BLAKE2b-256 a027282b3c96b4cc3661e356d84594951a967d568e4a852938b94f0d2cca3763

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7d758ddea68616e0aabbff2624b5896006027beed895ca7ac9597d29a17463b6
MD5 275c7f250a1728e2b38e9414ed1420d0
BLAKE2b-256 c821cbb9ee7250da80ac57b06cb11dcc8e7fedeb78439e6fd7487f9747ab5440

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 127ead8b70029c1818f1353a769fcdc6aad22f2965b48780824e716739661900
MD5 6283a788c1d43b01cc8591f5e3196aa6
BLAKE2b-256 47f002aebd59b8ea3cd78ac217646cad203ac3b33e8ae8cc24a399d280d59b69

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: slh_dsa-0.2.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 234.4 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slh_dsa-0.2.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 196e5d698905b89134ea3451fa29771065338c44b2da922bc2d57d10fe387956
MD5 66fd8d1c3f1da92ea7951167f7315bb3
BLAKE2b-256 de9e1e7a899277b10b9e4de9f0076ba7ac5d3850de72bb3c024c38f9cc9d8d94

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: slh_dsa-0.2.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 274.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slh_dsa-0.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 81efedb28f42eac75d506b75675e46d0084d26bdae31f49d35c507f812cee2ba
MD5 7b3522f7f183eea77c7a970feceda7fc
BLAKE2b-256 42a94940db3cee7f96707d94768ad31e29291db7fd42eb64eb7e213ea64adc84

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: slh_dsa-0.2.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 236.8 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slh_dsa-0.2.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a838a3ecfdcaf28ef1818a056f5b66da9a1f439a312adfb1c56df0d4d47e0408
MD5 be541c77842c1d4fd0aa95508dec326d
BLAKE2b-256 3ed2b9191cf085233ce3fa80e783b387bd754260a8aa1277ee3183eccd6c0958

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69d3e6a0ce3c2972904e47cde268fb19d94e32a4fc2a267c12e364bd77e6ad99
MD5 c107c319da506c76c54a22bb2fc7b22b
BLAKE2b-256 3f6a3fe62b4e41a93068a2de42a1d5453027bf22238795bc12d5108f926049fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d7c7d0b52602c26dba98a1c8f6d85b320e7253c979a9734376971974e27a5910
MD5 945d7ed022ede86e99d2384adc795048
BLAKE2b-256 552905ffe985cb678a900539e51ff314fed3d598c85becdf3f4468a0cb990ed7

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-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.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a3ad6406aefda447dbdae484176d8f94986dd592cd70887e82f5ec1b87b9f5e3
MD5 012d058a171cd6481dee6d8290af64ad
BLAKE2b-256 5a812ea894bb3a62601006fbc9d5dba3a8ba641f4c4b0f70f583f4a782aee405

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5fcb7404c06d253181c6c75ead498734b48b71ef63815c6f5f6babe3d9644330
MD5 d8280e8f3015771a528bb25358b1ff98
BLAKE2b-256 2ec25c879f1fc313b38124d3ef7967a5db7e9c0ae496a86443f495704d490fce

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03b7a74a8eac1855a968aeb82311c8d972ec77212c990184e1a87ec385fa0aa5
MD5 0be32119e0fb7d5ed0ebc378f0fee74a
BLAKE2b-256 e7dd29d976d888498fe8f6ffde5a82b63cec5fe4289c096d0d4b7af8fe744f23

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: slh_dsa-0.2.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 230.4 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slh_dsa-0.2.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 3d18b5286baa576677d1070b30a29c48429da2cb852f994b19fd0709977bb7f7
MD5 aa85078d9fba6832f52426d1b1508f33
BLAKE2b-256 84e002881854c90c3654acff4f750efa9c751eaf5d2c5bd72a452238df33aaf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: slh_dsa-0.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 271.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slh_dsa-0.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2c8d0851dfaa7fd8f399e1ae116617e9bb440a56d066a4f7ea40df10aed9d87c
MD5 c496b0f509407da824c3aefa3ab2f145
BLAKE2b-256 6a387ceb916e00d6472ad8284450026c4491786398c5301e49105ac4ef77008c

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: slh_dsa-0.2.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 234.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slh_dsa-0.2.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 12a301da9e8a5437468d77816603b6b1aea9d16603a37cbc6e128961abbbe81b
MD5 9c2cf8606aec11e3186047a43d65d356
BLAKE2b-256 2545ab7710e3908103d58156ae6c11a8eae22b3ac4597e9495d7579d1c9d2e33

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f5276314b8880e57d7700063c115705c21f49e488425ee6cdf7bef96a9c28074
MD5 c003863cb84d19d2b2fce40eee14fbb5
BLAKE2b-256 f7918e7e4a1d049b21078d1c4df7476801cd2795fb7b6fe71d58762e1be47935

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7840a71c6ca103bce7e168bf1afe3f9cf5f031c0c653f12eafe62041734ea3f6
MD5 b5ed9052a78cc12833d30d9c7dab83a3
BLAKE2b-256 862545e83244c20c73514b080521ad7784bd71a67e5f6e2bb5f187cef563af1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a95631b60396bb0a11c5469aad81adfb0583f5ed7a25aff56d720572b0acd295
MD5 262a2f1df270dbd0ed8b89d638755395
BLAKE2b-256 b5b168b7b43b0b2c69afd332d1e58d4474a1e87bdb4b8a3af80b127f9018493f

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78d46192ca039136cf6026151c11ce1c1e2fbdf4caa3cac5dfdba5a5a08bdbe9
MD5 e09b6127293ea34f6cfd7cb56311756a
BLAKE2b-256 744395f82f5f99d95af692912d7c324b45112c4c2a550052e767f10fad6b3b2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3339fef6c9872cd7f7bba31acd5eb730441aaaf4e86fa51c4744234659583ce7
MD5 6ece3bd51a26bfeeef28904ea3bd9244
BLAKE2b-256 f5247c3c9271425b5091bfb3d031d1fc051299f119027861b656047e88c9e02f

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: slh_dsa-0.2.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 230.0 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slh_dsa-0.2.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 80ce3d6447dfaa8995d01c8e3e903c0d6d2391fbf9fedbfc583ea807f041d63d
MD5 b43837afa8a4b53f57263a57e6c3a8b0
BLAKE2b-256 71c89f4f59363ef6ea2cd179d68f75a91b81bb0511a5783cd5ffa7a9d78f99e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: slh_dsa-0.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 271.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slh_dsa-0.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3a7bf84d593c87823ab9d6dafc1b6e508e5d8bb7158e17d88513d06feccf3f0f
MD5 8b12407c4af9528d02e2c889c0a409cf
BLAKE2b-256 209897dc303db0987eebc732589e349ac98abe24ca5cf870cb4bb2b046aec9a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: slh_dsa-0.2.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 234.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slh_dsa-0.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4c95c2a188e3ad2da44b51656fa3fa306a17871e0531d0a99d6ba09edc0c472e
MD5 dcfa55a7e652977fd89566b3752bd396
BLAKE2b-256 5d968bc6bf0b8c572f3cdfed4b92e0dc8c6af5fca31f54b7d52bd8145699a525

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f99e5510530459e89b6d359f8aad12340d590101bfe019dc8733754e47b4581
MD5 d7dbfe3e7696e4c83d08e71193063876
BLAKE2b-256 df8f6d90b1b9579ce94cf6d3d8e5ca3767645815bff1b0c18f0eb6ccd8883c3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cf00accd2aec8953fd6a9246101857ea9aba09887f58bd4ddef4aacb77efdf82
MD5 70bab39ad557ba8478b741f392e39f5f
BLAKE2b-256 9909d95a9775a3e54b6957d8ebcdd594047de379fe9046d6ca8a4fc521831da3

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5f1067a7a0a44e7b4229a32b062bfd35324ba0cb98d163719e63f85a358fda23
MD5 057630fcbf162ecdeabc331e85a10872
BLAKE2b-256 42f37619116e2650c28ffd39bea2987734f98bc9fc579310b14442da541e39c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 04b67934b7288d44f485ca6eab523aa88c93a4b03162566a10f173f4057a9ac7
MD5 87cf2c71b5a5af05ff3a3395c7dceca9
BLAKE2b-256 599624db905af6cc02f90e05000a249bea8e905d069778545d7721281cc04fc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e5e0a9a49008ad8eb16bcc13ac6485c7031ae617ecc68b22bc8d2bc03b76ff0
MD5 ad5593d5eeb16c52e9cfc50237dcc9d2
BLAKE2b-256 5fd2e39425c4fd3c50da22a808dff08c4c4edf78fd69eebd462e3773c2a84b24

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: slh_dsa-0.2.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 228.3 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slh_dsa-0.2.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 25f5d503e0dfcc58ccfe7542f97eeb1c41f7d284830c6a01dde2ca66d578cfd9
MD5 e74d1e3946e1a3d7b682421cfbed45c2
BLAKE2b-256 337b2b1ea59e452deafec67e981d6341540b26f88335ea73d08c965103914fdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: slh_dsa-0.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 269.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slh_dsa-0.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 93072371362abf0c6f1fb0cd749a3c014072caec372eaff35a0981533046f6b2
MD5 97f28230109dcb52bdc95ee1c0657c32
BLAKE2b-256 761e56a741c03ca19fdac1c235ab00bdfc43585f2e4ba552540d0a4759c8f92c

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: slh_dsa-0.2.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 232.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slh_dsa-0.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7b989040607d40b0a089e7dd47617b08c2d919f2f5effa1b4db220554adde100
MD5 2b26e7cb097041d2057e796568780a51
BLAKE2b-256 3d7347b00fe8b22775c373642b3c5231ae73378d813122bdc5c79cbb08a7838e

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3723e09be3d84d6ca6924e03c57550c78a06921a376f6de4d4c012073547e97
MD5 6f3662cff969f6d9ba92f581d0aad61c
BLAKE2b-256 725c3d550e5a5e5a5c541847546524707cf1d3dee320a99be381c1929fe0ed9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9cf0877b92a98efc9e7fb65b4fe0dbea07ab45a1ea9f99de74e177d16bb3be1e
MD5 f49aa74cf0f02f94e3b2bb80137458c7
BLAKE2b-256 fa5dad6ccf58b7017137f68ac06a524db458fbca77206a2b3b0469e9f56de296

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0a7db11db178063056b9b1f2b341ab08c54b2b3d2a514ae99d91721bc14d7932
MD5 d5842fa73f68922d34f43c83dd44937d
BLAKE2b-256 da6143d67313ab297808676120d4ecf6dc8765c217493d9a33f3e28506061801

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a8350abddb5c899139d5e12d0fe30dc1fb18e4e1966e04530f0f68c4de32e436
MD5 f27e16c4743b331317e8fb18f904c1d5
BLAKE2b-256 57257fcf87244bf8a8b67aea81215d9a553fed8a50fe8952e9c5eba2fd3ba37b

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc500ee2f081a0e6d5b071961504ce9f9071906dc20fa84046c85777b1d4f788
MD5 62d2209df01c815f70f50872aa5fbf5d
BLAKE2b-256 1f64f4379c66deb916e90ef26d16b604a3b38ff76e9acff663bc880b26dbd6d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: slh_dsa-0.2.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 229.3 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slh_dsa-0.2.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 f66f1b52b26eeb5ad0c7f7269df42ef226111a8cee922558b082d0917e35e01a
MD5 5877c1d1e1e0bd147fbcfdd475d157ff
BLAKE2b-256 b20c57bcdeca6dd75672d8683578367c7ee15fa14472f7a53ff17cc671db6932

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: slh_dsa-0.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 270.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slh_dsa-0.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 58fa5d34bea63f3aa6739d3406ac4026367c9acd6a594f4ffc33c8a1da29e5b0
MD5 a9389606a446b9633caebb393d1350ec
BLAKE2b-256 60fb455bde6b381da80eeba4bd9e1ad87329818e3dc566f1ddb910e493bdb184

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: slh_dsa-0.2.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 233.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slh_dsa-0.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e159cd4fc15fe90a8582b432b255438598ed27e124d1a4f9b87e3a3a537a0da2
MD5 d4c3304198aca764c39d162027b64d64
BLAKE2b-256 1ba3062fe6570de46204b17ad196ed66b63e1a5735517604b4b8b8061f7b56f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 592f92120b05ce72fdb5fe74f097ac15cb043b6f7a546b7da47b204f59ccf11b
MD5 e16a5a8336c606f9f25ca3b0263e8fbb
BLAKE2b-256 9fbbd8e967416fccb47284c3ea68f393d5f49718e96070571531d4b868bf1858

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2979ea4c7b82f08daf7abbaecceb4cea0ece60e1c366fd5ab7473ce5533c188c
MD5 d2ac73aa2f2c67c061dfd21c35925eb0
BLAKE2b-256 310a5496b4e928b18cb945b93469cd00c310546a52deb6660b5f6e5880e55a68

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-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.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0fb2d19ae64d1a2bb36c35deb4678602a4575fe88a54e4b0e67a19313a13b846
MD5 2d3e87f50edd3fc587ee13a81f914eef
BLAKE2b-256 5c173575a11c657845548d7cea10aeb8c63bb5869580bfa60cd1bc48e7ee9476

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6857c1461872cf800af20c2751f632da6d0ce234149a5906379637f370161438
MD5 b5624ee47fb1a03ac15676cd657ac813
BLAKE2b-256 7efcb43031c2d11f7fa9159ebbf6bc0c583b606dd3fa5bfe3c5f8b57e5501185

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-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.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e08fd9f1d649b1adf237f1e5559d776707ed5a760dd0cfa7164317dd73ae2e27
MD5 932ce526eb1aab66ad5d8d831121879d
BLAKE2b-256 a406ceb557ed51cdfa942bbd9cf82b071356f353657bc734705381d996dbc38c

See more details on using hashes here.

Provenance

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

File details

Details for the file slh_dsa-0.2.1-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: slh_dsa-0.2.1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 229.7 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slh_dsa-0.2.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 a37ca214bdb46c78679815431f2f5ae3acd7db88e998a08d541e68e99b754e08
MD5 e70d59c609731f8b26ff9681898fc501
BLAKE2b-256 ff5eec9a2b1f17b93938c458706c5ad7ce6147afa672411630a20c4f95b54819

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-cp39-cp39-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.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: slh_dsa-0.2.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 269.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slh_dsa-0.2.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e88ef2bf829a91eb6f3c63ea8400e9c74339850b2aa73a4dc6a03329e04a9213
MD5 181c072b565527589fcb5173e0907415
BLAKE2b-256 dde42b21306e220f7f9b2b8e7b2e6337f78f6c0ef9c3e01a83d3ca6f57f761e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-cp39-cp39-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.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: slh_dsa-0.2.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 233.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slh_dsa-0.2.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 11ab9f205ed3d909c5fc5b5882f40f25bea83e412e2724c56ea2d992115af981
MD5 caab0e7a18e7192ed1d3d39646835203
BLAKE2b-256 1423f9dd3bfcb6aee46701c2c678ae28fd2350f31d7c2ea54035fbb06107efa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-cp39-cp39-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.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 47ca113a00b0f8dd60a0c875a0ea3a4b41ee1a370c995800d2140c6c3fb4858d
MD5 6ea60a3938d3e232a20b54e9157dcc31
BLAKE2b-256 97230deeae6fab19f63677f31a94564c6d997e920e944cde139092ee6356e752

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-cp39-cp39-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.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d77d34183d4885c5c7ca1bc322533c59aa2e3d76aae653e6f99ae1c5af66571d
MD5 9c31eb79c2ed7be4e588d3179d05a3dd
BLAKE2b-256 c1f51641ad60219ba24019c065445ff2fada521b4b2399b27adfb2f19d04a0b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-cp39-cp39-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.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 38330e2c3cf791ff5d1b2b42833c27dad2eafd305fddcd87dc612dcbe8b6e8ee
MD5 eaefdc673752cff5ede9c5508baf343f
BLAKE2b-256 2da04f0dca560544595f3b29657dc890cb53c2d066a1ece18aad1cfe6d8c6670

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-cp39-cp39-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.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 41d1e4338de7c939724bc23d59efcb753bc94cef4071d64ebe3d3f66ce8a184d
MD5 6691220d4e5ff40d022c2a78ed2c4f3d
BLAKE2b-256 3a26087ec27044fcf282da993379accb39e789ddb0f33f4d99400191ec155909

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-cp39-cp39-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.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for slh_dsa-0.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afdca0171df000409b110a3c88433c699a02684ca2d324185218852bf658ff5d
MD5 2577698205c41ae11bb91313e37c2f42
BLAKE2b-256 49a74d9eda0e13f81c97f02ac064bef942cbf40c8694a20be896310b68029a6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.1-cp39-cp39-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 Pingdom Monitoring Sentry Error logging StatusPage Status page