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

Uploaded Python 3

slh_dsa-0.2.3-cp314-cp314t-win_arm64.whl (259.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

slh_dsa-0.2.3-cp314-cp314t-win_amd64.whl (286.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

slh_dsa-0.2.3-cp314-cp314t-win32.whl (254.4 kB view details)

Uploaded CPython 3.14tWindows x86

slh_dsa-0.2.3-cp314-cp314t-musllinux_1_2_x86_64.whl (704.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

slh_dsa-0.2.3-cp314-cp314t-musllinux_1_2_aarch64.whl (684.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

slh_dsa-0.2.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (695.8 kB view details)

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

slh_dsa-0.2.3-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.3-cp314-cp314t-macosx_11_0_arm64.whl (328.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

slh_dsa-0.2.3-cp314-cp314-win_arm64.whl (249.6 kB view details)

Uploaded CPython 3.14Windows ARM64

slh_dsa-0.2.3-cp314-cp314-win_amd64.whl (275.5 kB view details)

Uploaded CPython 3.14Windows x86-64

slh_dsa-0.2.3-cp314-cp314-win32.whl (245.0 kB view details)

Uploaded CPython 3.14Windows x86

slh_dsa-0.2.3-cp314-cp314-musllinux_1_2_x86_64.whl (651.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

slh_dsa-0.2.3-cp314-cp314-musllinux_1_2_aarch64.whl (639.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

slh_dsa-0.2.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (656.9 kB view details)

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

slh_dsa-0.2.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (627.6 kB view details)

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

slh_dsa-0.2.3-cp314-cp314-macosx_11_0_arm64.whl (307.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

slh_dsa-0.2.3-cp313-cp313-win_arm64.whl (246.3 kB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

slh_dsa-0.2.3-cp313-cp313-win32.whl (242.5 kB view details)

Uploaded CPython 3.13Windows x86

slh_dsa-0.2.3-cp313-cp313-musllinux_1_2_x86_64.whl (648.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

slh_dsa-0.2.3-cp313-cp313-musllinux_1_2_aarch64.whl (635.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

slh_dsa-0.2.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (654.9 kB view details)

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

slh_dsa-0.2.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (624.6 kB view details)

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

slh_dsa-0.2.3-cp313-cp313-macosx_11_0_arm64.whl (308.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

slh_dsa-0.2.3-cp312-cp312-win_arm64.whl (246.0 kB view details)

Uploaded CPython 3.12Windows ARM64

slh_dsa-0.2.3-cp312-cp312-win_amd64.whl (271.5 kB view details)

Uploaded CPython 3.12Windows x86-64

slh_dsa-0.2.3-cp312-cp312-win32.whl (242.8 kB view details)

Uploaded CPython 3.12Windows x86

slh_dsa-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl (653.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

slh_dsa-0.2.3-cp312-cp312-musllinux_1_2_aarch64.whl (640.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

slh_dsa-0.2.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (659.7 kB view details)

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

slh_dsa-0.2.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (628.9 kB view details)

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

slh_dsa-0.2.3-cp312-cp312-macosx_11_0_arm64.whl (309.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

slh_dsa-0.2.3-cp311-cp311-win_arm64.whl (244.8 kB view details)

Uploaded CPython 3.11Windows ARM64

slh_dsa-0.2.3-cp311-cp311-win_amd64.whl (271.1 kB view details)

Uploaded CPython 3.11Windows x86-64

slh_dsa-0.2.3-cp311-cp311-win32.whl (241.3 kB view details)

Uploaded CPython 3.11Windows x86

slh_dsa-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl (630.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

slh_dsa-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl (621.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

slh_dsa-0.2.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (637.7 kB view details)

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

slh_dsa-0.2.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (610.0 kB view details)

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

slh_dsa-0.2.3-cp311-cp311-macosx_11_0_arm64.whl (307.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

slh_dsa-0.2.3-cp310-cp310-win_arm64.whl (244.6 kB view details)

Uploaded CPython 3.10Windows ARM64

slh_dsa-0.2.3-cp310-cp310-win_amd64.whl (270.8 kB view details)

Uploaded CPython 3.10Windows x86-64

slh_dsa-0.2.3-cp310-cp310-win32.whl (241.2 kB view details)

Uploaded CPython 3.10Windows x86

slh_dsa-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl (638.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

slh_dsa-0.2.3-cp310-cp310-musllinux_1_2_aarch64.whl (631.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

slh_dsa-0.2.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (644.6 kB view details)

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

slh_dsa-0.2.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (619.4 kB view details)

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

slh_dsa-0.2.3-cp310-cp310-macosx_11_0_arm64.whl (311.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

slh_dsa-0.2.3-cp39-cp39-win_arm64.whl (239.1 kB view details)

Uploaded CPython 3.9Windows ARM64

slh_dsa-0.2.3-cp39-cp39-win_amd64.whl (264.9 kB view details)

Uploaded CPython 3.9Windows x86-64

slh_dsa-0.2.3-cp39-cp39-win32.whl (235.1 kB view details)

Uploaded CPython 3.9Windows x86

slh_dsa-0.2.3-cp39-cp39-musllinux_1_2_x86_64.whl (602.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

slh_dsa-0.2.3-cp39-cp39-musllinux_1_2_aarch64.whl (596.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

slh_dsa-0.2.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (607.8 kB view details)

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

slh_dsa-0.2.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (587.6 kB view details)

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

slh_dsa-0.2.3-cp39-cp39-macosx_11_0_arm64.whl (299.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.3.tar.gz
Algorithm Hash digest
SHA256 c09f8d1d27c1af722ad7fa9d5f593ba079733e41ede512940fcbe1d374c54c7d
MD5 78291dc2f7a0f6ba35914c7a3ea6378b
BLAKE2b-256 6c21d51dd443470cdf93bd5c2c3df5aa2671728e24bc0f94324e7ae0b66243d7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 d621b6cae9940f35689acd11616710453a591186e1a951086b6283e8c3b4acd5
MD5 ea283986046985702429af009eee6b49
BLAKE2b-256 5b7a2318a824214b4f82ae428c7297a42989c2ce50aceb8b0409c894999fe548

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 327cf7f2ac5fd4137800b7fb867fd0489d16ef4841a6d0e0e97629a9896a729b
MD5 ecbd1f9fc74911dff451cc284ce818d1
BLAKE2b-256 2a22e4d6ada2dfe97d245d647ec770e4924ae36da57e3aa9140f11c49d94500a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a2adc417958252966c3f8a8e5b35145eea893c6051dee819cfd6e1ebf61b0bf3
MD5 fadd62c66f3f8db5b44acd4408e69cc2
BLAKE2b-256 231e400c668372ceacffb029b900bb44bfeb38f03ddc45704e08fd1529189551

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 02e1a94943afe661813cae8c66dc769652e0fd3213b7570190d27c9c4681503c
MD5 34fabd271270e3165fd0aad00d0a5923
BLAKE2b-256 22b20830cf4e39014665bc43caf3c94c124ba73261634b9fd347e59dbb468665

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7cb960571176c9aa55785d81ca90944c3e49389345398ecba110aec42c2872b0
MD5 c2c7d62b306eaebf49989a0f18dfec73
BLAKE2b-256 4047f8c42b0c4c456b5261d334e37c8c457bc00de55724a1b096b0c7453695e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e7099c4708e50091fab97bae879eded00a3c4ec54e982523378aa03c9f19e0f7
MD5 eef3245883bc34c18315df23c791fe66
BLAKE2b-256 ace029e1d0691909343c282113abaf94bb4a7e2094c776a6da5f3777d02bd6c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.3-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.3-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.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2658f154464dc230e11b7fd081b73af2001fd3bb1c6618f948c67d9ec7996ebb
MD5 a5c9e9c134eab431f4a2ac4c3651fbc7
BLAKE2b-256 e657089b8833eaabd61b4a0a99f4cdde0bba3c180258c86980f9343f2e7c2bf4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4411316aaed67b305a0673f072f7cc25aab6ad68594928d466e177708c6ef0dd
MD5 5e5d7bdb943e9ae3a4924a8ebea594eb
BLAKE2b-256 83de8fe151d528c49970885ee1e78129c70098f8b240938af15911e8af88d55c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48a01c0178d93b3c03dfd92ed5bea11ad19f192145e18160085a3a3334d5e12b
MD5 6b2f71572ebb20787343196ab2228624
BLAKE2b-256 156ac0e36d0eb5d097ff0e6fadd99ea663f1faa6e1b9db5c2f7eed9434cdf4d7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4e743b93a8b441b114b0bb200d4dcf2a566fcd260dbdc065686b956a5aef11a1
MD5 e63bd3fc8d68512896a01393c9a2f680
BLAKE2b-256 c697df2513b4413885dc7d00ccffaa00a5b42b46fa6372d006dbcb3ac0edeea5

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 76ad304bbad7ce527a25808d4937cf3e24db6f56bfce9abb4f41411d15bd41e9
MD5 c598cdfa94c29949699165834537aab1
BLAKE2b-256 7ba2791cd65f06e6498f9f568c3ce4439561de5ac1459aca56f45642c58ab9b5

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2efc546ac156a69fefc9a9518bb37754d4c7f7ba3bd3fec97bb4551d1f6652c1
MD5 0dd2ebdf8fe8ec4c48fb50f64b892134
BLAKE2b-256 b4a8c676f483814532f27031b3dea8e88e6352cf39ca26b72ca478de7970b8d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 46985449a9670c20dbc04182c20cfe62f51952dbbceb988084a5dc1e39774df8
MD5 05db34b75c487322d7a8750e8aef1313
BLAKE2b-256 463c98e58fe0c850448b09baa3dada46bdd13aab098bb2705971c6e37c1a872d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e45f5c6864251d114e8192647b7b64e6e10b632671e34a917190826f0bdcf1b
MD5 c8de4ac3c0f6fbae86850b71afbf488a
BLAKE2b-256 68ab434532e0edffb76f3006a36bca594f2ab51f15e753fac487aa98c9a6c36d

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.3-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.3-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.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1197eeb3be027e1fc0556fc466e0e2430eac39c1c0f4cb630f9476b8e39e1828
MD5 5754c98669dbb01a4f22a172d1068361
BLAKE2b-256 ba2786642dc3db953b9a39e4eb5f069848db0e18ecd677075a7d5c6a403569a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a2b9a4471569e46edef946fbf0a22190f71cb70f3ce617e8a7a00e22a31ec506
MD5 93637a80d4a38f7b3b29e2e297e46a22
BLAKE2b-256 608c8ff759e0133d95941551bcbc78377ea395e45e87f06a945542450de6541e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec8c34c68c11e5ae28666b407712fae9a95b1a37b1e618076be57bf60d042bb3
MD5 4af0af54bfe2c1a0c011a5fd207a0282
BLAKE2b-256 dd0b4888c581202f1d2fd5a7468c8f7729f48ed6bb0d4e0db4de8525d7a77b56

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 276425586ffe3693d5ccc9eb8c73c93d0718ed99cc8f6bf0f90a4637500bab60
MD5 4a80f61ab20b12f03395a0c611c43151
BLAKE2b-256 f3062600d6fee8f9003308acad5ad98624c2526165d15ec4c3023b9e8b5de7f0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.3-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.12

File hashes

Hashes for slh_dsa-0.2.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c620f26f1d5092ddc93b017f4ee9c7212154dff85ceab739d148b5f62f03aef7
MD5 1debfcbd2d0045f70120aa32fbe26e75
BLAKE2b-256 0d07636374a0252394a55c000bc484a74eaeddc9c4883dd29d8462d31bc2eef3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 479a57e80d4808292c73871b429edf078535e220c90481968bed46e4376a4ada
MD5 56da51a00d0d05fbfc6745925ad8c8ff
BLAKE2b-256 a28834a6c9b1d9bd654b0f9eab06c4d0ba561f6df7ad10dc991d19c1372e52f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4171ff38516b3a31e2a3e00d5cf1cf93a642ddcb1adedf4cbf1ec05803add62
MD5 f245347eab305b57ef60207342616218
BLAKE2b-256 5c918473b222cfb7d2be4a297a25483c8a86962a7e1fc7147ed6a750992af36c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31838d807b194adb4b4003a612b0111a572c2a70a3547b03bc8167041e3a2f37
MD5 711fb5d2b57d800bbc6e56870c4457f0
BLAKE2b-256 c849bfe285e024b0390c7994fe89d4ac9614263fa2035d3ea85cd908468ec58a

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.3-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.3-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.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 50521a5ea35461e1616d8e40cef589d835e47579fcaa68b8bb2e9b0a75362761
MD5 eed04a6bceee102092748fead70fdbcc
BLAKE2b-256 d3f53b11aa1851302c6d7c46944860336357bced8d36233f684a9801d5d8d901

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78cc13ad721001e1d2c99f86aca0ac25a4cd5985e835417a0c78bcfb374085c5
MD5 af84420269f493a33ac22017c2648d56
BLAKE2b-256 f5c69881cc0f8b5b9f817cc469fab8182b3b5ee33c96860bfbaf2b41b9eb24fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0954ec44c1b092498672603c2cdc2220df2125ddc83fb7c2101c085ba30e90a
MD5 749bbb59dabc72cce6698d5355a2c54a
BLAKE2b-256 af609a38363612a1497b06e66a623fa94e39409237cce07f84b70cac9572d201

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c01411849a19f1c6efcb8f05b595195aed4240f4c3603909f7d6b6850dd445c3
MD5 1ad5d7efe8bfa6bfd14e71edf72989b1
BLAKE2b-256 600a18e918ec769a0e9f0b4862c4cd3b67a2f12a111e42c5858afed024a1782d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 38348e50b2e39d5efcd3e3f86c806f3f2db3252eef04ef537852a47c33aeae3a
MD5 84334c7be668a07c14c68d5dc1c773e9
BLAKE2b-256 c1204bf3ec464f95a2b6a46aec79b4dfa7090c5e66402198cbdc40c153ef3caa

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4d42103185922a1252d5793c11af87bb3a95cb3fc7eebb9a0871cf7973d49913
MD5 cce8874daeb9cb2474f92b382a365700
BLAKE2b-256 a3bf05297c36f35abd931c55cebf9a0583a58f669dd69272ec1fe2a4e1cf706b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5df0320fdb08afe72bc2fbb737b63bd226a165cfe487cc4bea4978230fd30649
MD5 907aefe9d2368e35fe22ad442ecf5cd1
BLAKE2b-256 ecab812518853b3de4689ddda6e3992279471e48d6efcd5549b4cb67ef33b06b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 887e9918a4464f34119b0419fe7850dc04d93320d52433a7db5eff83115bba16
MD5 9145a7735da5e06e16b4957434b6e9c6
BLAKE2b-256 9888d0b7984d9cbf1ce340558eb1b3dbfb55abceddd3822f850af9d77d80b0bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.3-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.3-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.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6eae666588a241d77aae9f19de59c1ffc1b69f9198c62cc31a09faf7d81173d6
MD5 55844b235a35606a35df895fbe1fee5f
BLAKE2b-256 221220b12dda013d3e78e277e97bf59c3ca67d1b77e49590aca0e99329317e64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6cdbbcd81d2f079ce0666720b4840ff34725e5b4e5c412bf88d75d8bf3086eac
MD5 529baf7164b02c65092318e737f24b19
BLAKE2b-256 54bccdff0a771156eb4091406a4dbab933509895fddb417b83f31fa8bd9e603e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9490e3f63661b12e1d7fcb0beff0dc8aa15de42a6d0c73c5957eb98cc25d3dca
MD5 5c6c6957c38b94f6dd3b59461d2609b0
BLAKE2b-256 7c6d6571756eef87582fba4c2fff4591cdbbe53569f5050083e52953d9393b7f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 aea18bd7454eb6971be9494d5f894278a3a912c5893ec84b97c96ad70982878e
MD5 409b2bea37e30ab0dec19fe0276cafc9
BLAKE2b-256 48e35505c9f3e0e50b9352b8d64486bd623228e46a6a32c612db48e77984701b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2746bcc9901422e967651773da0f7e60cfa6416ce9fa7f524c06b47c3c7d66f6
MD5 04c0f56013a5fb315f427c4108930742
BLAKE2b-256 f1008b25243c337296297790c492a6a52d06837b574a992c3ed493d211bfc640

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 19ab1bbc2629030e65d139557417382a700ad64093544c8d999d7912e9397027
MD5 8f4cc8734d68e0399b254e9ef9097b0e
BLAKE2b-256 d26fed3b7ac1aa8588bec7f266ac52c274e7600885aa31ee6bac3d28f46e78f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c7d780594e78abec417fb8d4797494d352893649deb11995db69fbf58592e3f8
MD5 dd6bccd7b9b009cb37d275ddabcb5ada
BLAKE2b-256 58359f528e739ec1ae0243d2a2555872e9eb2cca515b85ff67f95c67565ab0fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f88610328b9ad7db3fc6b98014c6497870738933264d649b2a2788c9142ca75
MD5 90b0f29053cc5f8f406ed66f3afca6a0
BLAKE2b-256 0620dfcd9e8334c8bcc078b8548a40f30ae33f2f55aa7c30893408e9a1316d94

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.3-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.3-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.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a47a83757ea07a8d446f4b9bf46ca4192b891402cfd4774b364760c23472c968
MD5 26b1a6679837e787006f1c33683f935c
BLAKE2b-256 16de19107083c7e25d508978c5d3f97dd88bf5b87aa1e7051b0a9ca42546962e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b57c4499ba7ffd79b5884704d96d06d93db960f838e01c946ccc0ccaf36887da
MD5 743bbcfa51b6f4a4366a76351493b593
BLAKE2b-256 f6ab3c4933c7c868d402af11d870c63a9f30cd34ac5a2376b3db7847a891526b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bac600a11624d60591fd8408e91d358a2597d92fa0cfb0ce25cdd280082b23f
MD5 8a49e251b2bd2f5ce3a6fba82995ae4f
BLAKE2b-256 ee5479ff3c46ae464fdd41a19db3bfe085c1d55718a7362c006b6bb3b3957efb

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 7a2247365ef7c37a14e4786063bb7016d70e0da2874c36b67fc05a3b482b0d99
MD5 d80023c0c025d13c1c1177e878f0bbec
BLAKE2b-256 dde4327d4e4efa16e28516d13610fe854e986b25bf054eec21c6920942dda98e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 09996058f3991ba85ea03682ad06aa13896ffc4ebef484a6d6e953415060463e
MD5 f42d6d48855750c008aec24101d316c2
BLAKE2b-256 05580080cd9dd5f0796418dd7135f09129bf138ba72dd8169a8939d2c44d0232

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 25a9d7b13c2950fc832bf837d0bf48a67fcfa5362b36811145492d82f9961876
MD5 947075642226d3c763734caffbe2b13c
BLAKE2b-256 646b48caa0e800e88370d9895fbd2f004dabb63786b699dd96af2fffda87f693

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd87c65ee810c35a52c96841331064d35d6990b25d11510371f70a974d6b70f6
MD5 2ba9b494f3fc3fc0123da4ff24329f94
BLAKE2b-256 cc579fceb82b082eacc6ddd60257d836dfe693ec8b6fdededfe622d6b548e732

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c76befdbe0d48433abc335841f77bb84cbe8ac3c4d8bb8fd0adca6ec99f5c55a
MD5 b2825afa96a4e10395bfc198e41a6d7d
BLAKE2b-256 0589b6d5ca18466b9359e87f655aad2219371f24a2addd601c157e09fe707461

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.3-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.3-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.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca28d66453dcb8803f7e207f893e9575718b3b2397677116161f8ef94ca421dd
MD5 8ab68c28ebc2ccae10a2430ebf84c1be
BLAKE2b-256 cb9d6f53fe7b58cacdad04d9efee7befa932aebb265001f1a050a05a60e3582e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e6aa0f4536bd2f9585ab4ad282565bc21e93ffbb8d27e5eb95bfb46570508aff
MD5 3bd6f0ca95813d426c56aad28a4aa000
BLAKE2b-256 768787a97d6430c522b80851a26f4317afcddf58316af30a42fee85d8772dcbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97f499a164e231abcbe6978b5a6ff8acbe73a220ee5634337644cf244215ddfa
MD5 41681ac5007d8e0283835daba6092ef1
BLAKE2b-256 5f73e0807b7dfa1600a61ee8866c69cc4556fce98734b62b19b6b9a340e4a42a

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.3-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.3-cp39-cp39-win_arm64.whl.

File metadata

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

File hashes

Hashes for slh_dsa-0.2.3-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 2bef1e8d94522875e776ccd2365e3aa1b8c978e22a137054c7c50a960dbb9d8b
MD5 d127cc4981e30c9aec142f187c6026b2
BLAKE2b-256 01782f7ca08eb22a1797518563bdf39eb5b1899b4f14ffca177ca7964d776bdd

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e1f91de082389d461583d7631b3a45eca012b99f80125ce31f0c3c1b21d43601
MD5 2f145bf67504ae9c00e6957716b4307e
BLAKE2b-256 4bd4dccfd23bf013a10221a4c5076e2a0f63697373e02de892c7695047a52155

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6def90d11ee3720df07964b5c90f9d110b38a674ea1db42142554ed434b305ee
MD5 4b9af093d94400e851328251c2bea189
BLAKE2b-256 763d7ef405448c316fc204a8875c84e7eb709322369af6f21cd3ccb3ba730aba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7cdf8048a21138db07ab9e965f9038e3bf7ed0143449e81dd589fce3d411ff5f
MD5 8bc228e259b17f4ec13e21dc5d1cce21
BLAKE2b-256 cff20d47f2383ef81902712166cdd0d3740b86e71bfca4b796bfb3b81a8ce424

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 76314ec0aeca090c168bdc96770948eb915c579c2ced026f042faaea87b7b184
MD5 a0807e98cd70c3d1cff9be166e1c497c
BLAKE2b-256 03b4aa3a67ba5896a3544d74a0c01756df345c84725cdbc1ea1251fc8c94223e

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.3-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.3-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.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 70ac9b7558698f1ded968e4fbb48826be7b3d9c6d7c93057f5bd79c0af52949e
MD5 fe12c24f7abf56818cf6ac9fb26036e4
BLAKE2b-256 95cad4f11a861a6b83a83025968d839020547edf119f2c8c0f6e86c2596e88ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 91a47c4d7edbc61db1f0f6ae0f6ccfeec54ceef5e0df95addc5bf5fd53be61c2
MD5 140dd87e61bf864e54a6b14c8f11f5c2
BLAKE2b-256 df1b72b484222c959e2bbc35c89aedf47e670e2a3705d0f22520d84ffbd27a04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23a92c2577cf526133767f06f1b4d415bac483fc148b30a46f69b96c7da44121
MD5 9f7995f2028093beb2def7103934fc43
BLAKE2b-256 66c6417675b140e5b5c1144250a292c8d50acc892ab8a8db76ccf1883faa9749

See more details on using hashes here.

Provenance

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