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!

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.4.tar.gz (33.6 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.4-py3-none-any.whl (38.4 kB view details)

Uploaded Python 3

slh_dsa-0.2.4-cp314-cp314t-win_arm64.whl (264.8 kB view details)

Uploaded CPython 3.14tWindows ARM64

slh_dsa-0.2.4-cp314-cp314t-win_amd64.whl (292.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

slh_dsa-0.2.4-cp314-cp314t-win32.whl (258.5 kB view details)

Uploaded CPython 3.14tWindows x86

slh_dsa-0.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl (695.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

slh_dsa-0.2.4-cp314-cp314t-musllinux_1_2_aarch64.whl (687.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

slh_dsa-0.2.4-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.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (679.0 kB view details)

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

slh_dsa-0.2.4-cp314-cp314t-macosx_11_0_arm64.whl (333.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

slh_dsa-0.2.4-cp314-cp314-win_arm64.whl (251.2 kB view details)

Uploaded CPython 3.14Windows ARM64

slh_dsa-0.2.4-cp314-cp314-win_amd64.whl (278.3 kB view details)

Uploaded CPython 3.14Windows x86-64

slh_dsa-0.2.4-cp314-cp314-win32.whl (246.5 kB view details)

Uploaded CPython 3.14Windows x86

slh_dsa-0.2.4-cp314-cp314-musllinux_1_2_x86_64.whl (653.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

slh_dsa-0.2.4-cp314-cp314-musllinux_1_2_aarch64.whl (642.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

slh_dsa-0.2.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (659.2 kB view details)

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

slh_dsa-0.2.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (629.7 kB view details)

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

slh_dsa-0.2.4-cp314-cp314-macosx_11_0_arm64.whl (306.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

slh_dsa-0.2.4-cp313-cp313-win_arm64.whl (246.9 kB view details)

Uploaded CPython 3.13Windows ARM64

slh_dsa-0.2.4-cp313-cp313-win_amd64.whl (273.8 kB view details)

Uploaded CPython 3.13Windows x86-64

slh_dsa-0.2.4-cp313-cp313-win32.whl (243.9 kB view details)

Uploaded CPython 3.13Windows x86

slh_dsa-0.2.4-cp313-cp313-musllinux_1_2_x86_64.whl (651.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

slh_dsa-0.2.4-cp313-cp313-musllinux_1_2_aarch64.whl (638.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

slh_dsa-0.2.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (657.5 kB view details)

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

slh_dsa-0.2.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (626.4 kB view details)

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

slh_dsa-0.2.4-cp313-cp313-macosx_11_0_arm64.whl (307.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

slh_dsa-0.2.4-cp312-cp312-win_arm64.whl (246.5 kB view details)

Uploaded CPython 3.12Windows ARM64

slh_dsa-0.2.4-cp312-cp312-win_amd64.whl (272.4 kB view details)

Uploaded CPython 3.12Windows x86-64

slh_dsa-0.2.4-cp312-cp312-win32.whl (243.3 kB view details)

Uploaded CPython 3.12Windows x86

slh_dsa-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl (655.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

slh_dsa-0.2.4-cp312-cp312-musllinux_1_2_aarch64.whl (644.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

slh_dsa-0.2.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (661.9 kB view details)

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

slh_dsa-0.2.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (631.1 kB view details)

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

slh_dsa-0.2.4-cp312-cp312-macosx_11_0_arm64.whl (309.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

slh_dsa-0.2.4-cp311-cp311-win_arm64.whl (245.0 kB view details)

Uploaded CPython 3.11Windows ARM64

slh_dsa-0.2.4-cp311-cp311-win_amd64.whl (271.6 kB view details)

Uploaded CPython 3.11Windows x86-64

slh_dsa-0.2.4-cp311-cp311-win32.whl (242.0 kB view details)

Uploaded CPython 3.11Windows x86

slh_dsa-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl (632.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

slh_dsa-0.2.4-cp311-cp311-musllinux_1_2_aarch64.whl (623.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

slh_dsa-0.2.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (640.3 kB view details)

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

slh_dsa-0.2.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (612.2 kB view details)

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

slh_dsa-0.2.4-cp311-cp311-macosx_11_0_arm64.whl (308.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

slh_dsa-0.2.4-cp310-cp310-win_arm64.whl (245.0 kB view details)

Uploaded CPython 3.10Windows ARM64

slh_dsa-0.2.4-cp310-cp310-win_amd64.whl (271.2 kB view details)

Uploaded CPython 3.10Windows x86-64

slh_dsa-0.2.4-cp310-cp310-win32.whl (242.1 kB view details)

Uploaded CPython 3.10Windows x86

slh_dsa-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl (641.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

slh_dsa-0.2.4-cp310-cp310-musllinux_1_2_aarch64.whl (632.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

slh_dsa-0.2.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (646.6 kB view details)

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

slh_dsa-0.2.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (621.3 kB view details)

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

slh_dsa-0.2.4-cp310-cp310-macosx_11_0_arm64.whl (312.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: slh_dsa-0.2.4.tar.gz
  • Upload date:
  • Size: 33.6 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.4.tar.gz
Algorithm Hash digest
SHA256 ae59ca1a95f79838548e39a358e8647a151d6757336f461f7e90aba51e6f43f2
MD5 70c93ff2b42231a3e025f1ad93d396ee
BLAKE2b-256 daa331ab39b5fc46583e38868c4065ff62328d370f4bde12bc41bbab5540a57f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.4-py3-none-any.whl
  • Upload date:
  • Size: 38.4 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.4-py3-none-any.whl
Algorithm Hash digest
SHA256 7d782a1aad85797e6b043a323ac4223b721b862e8fc964386699e89e76523a33
MD5 e2577f500eb37ec31baf883e772d7b5f
BLAKE2b-256 2903deda6180ae56eed24631556333560372839fab28b255d915230c427c4fdd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.4-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 264.8 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.4-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 5c8f2db963132d080e0b46b76f899572f4a0ce21fd6c12c8f8f6735a93d6ca89
MD5 edef2dd022f4fe84e69a3fd79b3c5abd
BLAKE2b-256 8b8af51893f11027fd716235bc7cd94fc1eec6a65f287b9f49e4b42d18807866

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.4-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 292.4 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.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 895d3899a4e4782012a5e1332637391c35b8ef6dbd2a78a8d56b8e2ab0b3a9c2
MD5 39e37005b6d2faf7428761003b2c0bca
BLAKE2b-256 128397896db0b0b656ac62c83d73b09435959b1dec510868f6ec74ff33ca1420

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 1562faed77c3fbf1e052b08e70173d144f14df82b04d41b2470888f3ea1f3fff
MD5 e7c58e2bdb0319922ac010ee775eeddb
BLAKE2b-256 ba06eccad469fcd317197198815c0ce5d8cbff34f9c1a5d445ec8f74e2cd6452

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f59b436577fa64fc4e475e1c313a90202ec69fed1d3774bfe846a78ae60b3a4
MD5 feb9d22e06634572b6748d922f4e183d
BLAKE2b-256 4d9f10cda3a508f2b6baa3b7da96e8ddbeb3f1a789c47b67df57be349f674f1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 378379e81c5fda26c64e4a3fd5584b48c6a5776b5bec65a3473620362526fa8d
MD5 5093ac0d55bf97bf7b76003adf253128
BLAKE2b-256 e84649ecd459a4f029edc81d2057f75cb36aa067c8d8f400b1bcf4812663f54f

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.4-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.4-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.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5ca82b0b9bd3988905862dd6d57f52b93587460a481ccd33887674c08b2943f2
MD5 167853a268d312562213a149aea33701
BLAKE2b-256 85ec62f9c3093821d33fe5d24aad019eeff8c8edb8d480a59c599d34d6cbeea8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 54f7eb4493e9d20b06860932a407e55b05c1ab76da6fc2d8d6fb11ded71813aa
MD5 4bfecf89b52fb082139109ff671eb86f
BLAKE2b-256 b78d1bac95fcea8838d2922141e3348bce969a09bddba4d3db1b609815961ce0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c7d079ea5bc83b17a9df6f339446b3cab1765a657654a424c9faa1ac072277a
MD5 47d2bf41e6b65e701d61d0c2c3220895
BLAKE2b-256 66ab7cd6e00d599a4cac7593412a6339a84a330089920e7491a089c591833b1a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 db1f270151ff76a0842f2c1b512b07f6223230ef5ee8216635f9944b4be1d133
MD5 2376f7f6e038139666accdad53a35e52
BLAKE2b-256 727b471d7a88fe1fbf10b6ce7b5af5cf7004f14c03826db63fc9b323287b39b2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d2569f4ef8ae2576d1c3de80d234f45e03a45d1ca47c8512273f3b1bacc78ec2
MD5 10d20e9149a0d58658c5cce9491b64c5
BLAKE2b-256 c7dbffb7ed20127aa77b43a4a4034c6926e3c2eda07252354ec0db4de4356c1c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.4-cp314-cp314-win32.whl
  • Upload date:
  • Size: 246.5 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.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f9256997118dc829e56a0cca7f25b03cc696b68164a15470df8e32707567cbe7
MD5 e5ee6135bc50b91c102d1e77e23156d3
BLAKE2b-256 9aa8c5201f6f0aebda5b797806c3bb68ed4dcb2424c8277eebbdf8475af2eee0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 528ff37ef8e36724f812e8fc87346da0ee154d9002401fa862a85504d0cc292d
MD5 2f8c2516042007f1dba593edfa7bf417
BLAKE2b-256 1cb2eb7472233a9fc41166c54be1a8086b727746747ebf4baa3f4e82ed5e6bba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6d13e7209d24e8a7082b9a3edaeb0727176ff91d96b27aec33dabd30dc962b62
MD5 cee648e15d6c9a5ef0585d1c5a8b85ac
BLAKE2b-256 c137145297bcaa9b4ded6aa282f3a761442a4ca533d04f1c7e1c1cb06e0556cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.4-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.4-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.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1b8ed850904c1c4d089953370ddac2c0f02693c7ee03922570bc126b90501943
MD5 6efcf1a2ffa64dd9a89d01d7887ac1f0
BLAKE2b-256 fb702603b18e1bf5d53238a742459afd59783773e143b52b95f4cedcc781b25b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 54547976166c3ffc7807ff058f2b582c970f3ca3dd643ed7fc088df6e927e41e
MD5 52c176f27a4b1b8ce3b66efab49d1192
BLAKE2b-256 aba7c6c03e1076fa42e5abf65c42d770296fe6050412c1f02e8bc9875921cf78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89b0cef6188c4d0d81043844f1f25a7d7980dc5d05e3d44bcbea7b09d00179ff
MD5 bc0a88a08d07cfa6178f2a8939642614
BLAKE2b-256 85a34fb651a2dfa02709812e5bd35190870a29f1e172295a1990cd34a90087ef

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.4-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 246.9 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.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 2af92b5fd22fcf4469d0f6e5ae80918c0d819915c20679d6332b2ed8c3f5c604
MD5 822af7c3b49f87dfaa6ff7d878f81163
BLAKE2b-256 84b43454a31f00832459b77f653d531e90eeb8c64398a74751b62fe64d9114d1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 273.8 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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dfe52836c31daf91db3e0152478a7f98d7bd5aaad3fce34120fdc703cea70a4b
MD5 17bdf1a703ee2d268593679cc5e2d617
BLAKE2b-256 d93a0204d2106feb583bad63b5e1dacaeb857bb09031b63e59b6565f8ce1dceb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 243.9 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.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 96e3f48ffcc9bc9cd7e44499869c7dfbf077856a3291c0f3489f09716a76d276
MD5 43f63a610370797ec08d1efd1c608ad5
BLAKE2b-256 4e34fab7ce2114af766ead119d9f6a0deb19d8d981a63521d59306dca62e77ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ddbc0bc5045e1e9316c962f273abb4a7892dc99550c389e56f1cd9a7de0fad7e
MD5 eccb2c4d472706c903bab9c2f856bb65
BLAKE2b-256 ac26886d3c6b84b0ed704df5097081a457a8afa1554effbc424a7d1488ab0b73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fa4e2a4a626296929f66af28bb5a9d55d41ac32fc04be1333014f4f291424da3
MD5 d491213e1ff8b5f117a41a2275587695
BLAKE2b-256 4849f95249ec46a2f57484e4aa9bd0aa6d99be3c46dcaf2e38f66af5dd4d584a

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.4-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.4-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.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9924fa805fd1002900a35f5d36702c9a9095552033037b29df269ca7c6350ef8
MD5 21d19bdd8e03933116f3b850287a96be
BLAKE2b-256 7f9166b54ba9b0a6c178f2311d6261e8ba84e4ce964cbecdbaf5feae2f7e5ee8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7fec665c36792ff37a5d359b11dd63dfc7372ec372e3448a92b72b8434ea81fb
MD5 a37745e60d89b931840104cd30ca0732
BLAKE2b-256 8a3184ffd80e0f1e8845aa59388d834780dcbf0831ca39615552ea328c6a700c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 954c2be9f5d7c9d29143e66e29c65d9c16db2a7bb3549a5853c48393fd6ca3b1
MD5 2ead63313698f3707c3ec3a6e0e939a0
BLAKE2b-256 370057c822fa967f4032281047b57ef1346bfb24253366b318dab373ce66ed74

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ed961ca5496c24d734109ad5b5e795e7a6aa5617e7a8c48dd517b91cf6c58532
MD5 b602bd1a5bdfd86df86ce53a2c1caa42
BLAKE2b-256 94a000e02a522e2852f453e53a6d6b2bfc78cdf98390eb476f4e2f07f077f050

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 272.4 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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 57193b68c4e2d842de729ccb972aec5b97f7edb2193073179f1ecbfcef86483a
MD5 d1bf6f31db21cbe4cb83674f1bca63c4
BLAKE2b-256 9532006511acd1ac6df2880f66ba6d61036c763795b3cdbd49f7268b01c5c9f0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 243.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.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b7861b6a7a8d973cf0c46a374bfa0947953edab88521e07fc5605a25a7f904ba
MD5 4482cd04161c819b1c3235323d048ce8
BLAKE2b-256 a1145df85e38f087579958346d20df43da3010466d15facfd35907ad58cedbf3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9093dbdb791b2818f93ff4fe3df7f4e160dd290643f8694fb5e93d58321f1419
MD5 f3789d0eaa4edb28d3f54de8a8ee7f87
BLAKE2b-256 973ecf8b4a5a551d384d943f44beb5ca2e38f25962545b0d59b15818476f04d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2318bac606d77df749918de0d4f28d37e2c0271f8b3ee86090e812668fec93d7
MD5 4f5f56c3e2a1a3ca2c6cedf626c9d76e
BLAKE2b-256 4efaa0406c9f5cabd113b2c44cf756c7514faa0906f8e8c6c0c4cc47773042b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.4-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.4-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.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b73d80af21adc930ddcab10660490356761f04f096a87a4b9404f5c220f5f61e
MD5 e6102f85c26f914096b4252293f5636e
BLAKE2b-256 9db8405f2a98552cc73b0ab3ddfa01bb4bc1ea28cb8fadebe66ee6c3ccbbb9ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 62b44d6f45a06a43f8f7b06f27b65269a50102564863abdedee46a41da60de58
MD5 95853e9553855605cb7aedaf06983eb7
BLAKE2b-256 57834d524ef4d78f997de81f7a09eff3781ea61672fd4030107659970b2cec75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17b0d63acc0c4cbf4bf5eb4b1447a086c7d2ec82807906343c663939aa5146c4
MD5 9d0ec434aad293d2b39ae4929b6495a7
BLAKE2b-256 a89a8dbf487c654f1d02db696ed83849f013b089c8f31614df373c2e6da7058b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.4-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 245.0 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.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 a85a00393a04dbf9153f655e7b408a10b847f00e4efaf0c5badc5f0e8055e5d6
MD5 cd72d0b71b78c25d430d38a6c0524640
BLAKE2b-256 655dc8bd44a05b23011236b16851932f74e9678771cf1ee1e19ccc574cabbdec

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 271.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for slh_dsa-0.2.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 78b14ef1f559f4baa0617c66fa198ef48459fb3f5dc8051cacbb802661462c68
MD5 2cf2c1b771b761fb9dca2b1619ddf882
BLAKE2b-256 f452ace0e777e5f353e555105f370c0c3e326dce8ef4f4e0809200e0c5abfb11

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 242.0 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.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3ca1b25806a8b546cbee5d34a589e5ce9de4b6701f43a417589681d8277cfcb2
MD5 02c53ef26923485d91690ecc4d8ad341
BLAKE2b-256 4ab1212b6eeccc850cc91546b0e274ba87fe8d9f31685a4c17aaea67bdd85500

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32af2ad7ca543bf518ab14728d94e9ad9229640000fd81bcdfdaf788015c6ad5
MD5 1420b952cc4616a70c7df78fa8e53dcc
BLAKE2b-256 0995aa115e7108000e1bf2c3195e79c4d27253e6859d77305aa32b2d7274b68c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 145fac58d9643035928fe8a2d09c8391c98e6aca4283416de114394d05c77711
MD5 03525803f046f96e50ce62b934128379
BLAKE2b-256 4ce46f7930e4d933f1d9d8969861c7a5d6b5640bb9c49e838b672e44774ded9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.4-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.4-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.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aa0467cf01c76bbf3453959beb33846a62e1710b2867f7a2008e8fb334a7736f
MD5 fcd639a38fbfb2db14cbc030929d9d1a
BLAKE2b-256 9cd03e28d130f2fa41f8899620b83b00f16a8c1965a9fe48cb6047f4dd11d725

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e32777e64772376692e07f9c877d1206c1330ea75ded2c76a68a629177a70045
MD5 9d9072734427a5dcc0e0ac51d72b640c
BLAKE2b-256 9701e7afdb3354e09c5e6b820682fc1a036de1157f8b34d6dc7b632a63469ba0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9c0199d7f64fc32d6f9e255a4846ffad82dcf79f1f1a1ded252447096e0c119
MD5 516c4dcb8074f8546b7ef9267f33bbd0
BLAKE2b-256 b1848f4b63a04098fecddbcc28f211bc3bbe9374b32aad8ee3e16d5120a1b233

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.4-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 245.0 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for slh_dsa-0.2.4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 778c81046606b8a35b727629c40618716c639c9b3d48630b70736bfb54d281c4
MD5 aee47b5d51ab46bbda3895608b224381
BLAKE2b-256 ba1d8f4d48641cd90d78c3a962cf165cd6c544446ed14ded4fef6875df7563ac

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 271.2 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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9178044626c0fc0be6199bf533d2479af559c1f18322ba1e1224e2f38f04d76d
MD5 07cc23a099dba5e0620d61c1a05f91ee
BLAKE2b-256 785083b291e3879049d3e8ad5fdfab9d8f04704b3ad8a885f06441f970487c97

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 242.1 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.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8a00ccbf20f0f6b0bcd0378a82a502ab4b0ba6548044e54ee9d3c9e3b1777a9b
MD5 dc1f6fb249e7ce817470ab4cb7bd4e96
BLAKE2b-256 edf70c31ec42bf02099a5fe2cad7893b50761ab0719d18a45bf24f3582c26f20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b7db65f0facf8f4576cfbb146badc7f59214b7522facc98fdce65227a165784
MD5 d34b1f0266ec89ac5a6f694b75a52cd6
BLAKE2b-256 cf8e5d89ee4ef09d9325b5063dbecef4e904c8f960c2236e52951a83cc085604

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7731a1b6c1a8f34f5c836ad63387e59b05a5312dd39b0a91fc61a8538ec5e781
MD5 9d6888e4226ed4e751d7ebd2656a4b8b
BLAKE2b-256 29f7de42a66e6e9afa48cc01a081ed4c051268c5ad45b463ca51b67eac945d88

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.4-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.4-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.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e556b9f2e7ee85082e1f42480c38aba6b72865d6eb9dadc1f0a35142c43908e9
MD5 9fff806f3b28712decf5af08b5855c93
BLAKE2b-256 0bef2095eeddda94349087de1013734b80a353e86cf98b886367a2d58901b9ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 964da48ed50ead5b13b4fb9b479ca307c863ea57e1b2e5cf7365632ce216ad6d
MD5 a13ac881e5b1a3a109716effcbc09da7
BLAKE2b-256 5b135a1b64dbe821d45ddaa7383ad82327ac1dcbe3b6ce9cd6a43eecebc55611

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4fc93b049f1623db62d170ce073ea9b7ee9a6783888a9e4afe9be525f643b19f
MD5 6455805048cd0df74efb14042b1a247e
BLAKE2b-256 7436be79852d20e1c05e4231a169968954b68a4f991499dcfc349b4c2a4e8268

See more details on using hashes here.

Provenance

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