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.2.tar.gz (24.7 kB view details)

Uploaded Source

Built Distributions

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

slh_dsa-0.2.2-py3-none-any.whl (21.5 kB view details)

Uploaded Python 3

slh_dsa-0.2.2-cp314-cp314t-win_arm64.whl (248.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

slh_dsa-0.2.2-cp314-cp314t-win_amd64.whl (311.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

slh_dsa-0.2.2-cp314-cp314t-win32.whl (267.6 kB view details)

Uploaded CPython 3.14tWindows x86

slh_dsa-0.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl (717.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

slh_dsa-0.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl (697.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

slh_dsa-0.2.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (709.7 kB view details)

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

slh_dsa-0.2.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (686.3 kB view details)

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

slh_dsa-0.2.2-cp314-cp314t-macosx_11_0_arm64.whl (323.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

slh_dsa-0.2.2-cp314-cp314-win_arm64.whl (239.7 kB view details)

Uploaded CPython 3.14Windows ARM64

slh_dsa-0.2.2-cp314-cp314-win_amd64.whl (277.8 kB view details)

Uploaded CPython 3.14Windows x86-64

slh_dsa-0.2.2-cp314-cp314-win32.whl (241.6 kB view details)

Uploaded CPython 3.14Windows x86

slh_dsa-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl (641.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

slh_dsa-0.2.2-cp314-cp314-musllinux_1_2_aarch64.whl (631.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

slh_dsa-0.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (648.3 kB view details)

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

slh_dsa-0.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (621.8 kB view details)

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

slh_dsa-0.2.2-cp314-cp314-macosx_11_0_arm64.whl (303.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

slh_dsa-0.2.2-cp313-cp313-win_arm64.whl (236.5 kB view details)

Uploaded CPython 3.13Windows ARM64

slh_dsa-0.2.2-cp313-cp313-win_amd64.whl (274.4 kB view details)

Uploaded CPython 3.13Windows x86-64

slh_dsa-0.2.2-cp313-cp313-win32.whl (239.3 kB view details)

Uploaded CPython 3.13Windows x86

slh_dsa-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl (641.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

slh_dsa-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl (631.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

slh_dsa-0.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (649.0 kB view details)

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

slh_dsa-0.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (621.0 kB view details)

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

slh_dsa-0.2.2-cp313-cp313-macosx_11_0_arm64.whl (305.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

slh_dsa-0.2.2-cp312-cp312-win_arm64.whl (236.2 kB view details)

Uploaded CPython 3.12Windows ARM64

slh_dsa-0.2.2-cp312-cp312-win_amd64.whl (274.7 kB view details)

Uploaded CPython 3.12Windows x86-64

slh_dsa-0.2.2-cp312-cp312-win32.whl (239.6 kB view details)

Uploaded CPython 3.12Windows x86

slh_dsa-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl (646.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

slh_dsa-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl (635.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

slh_dsa-0.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (654.7 kB view details)

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

slh_dsa-0.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (625.7 kB view details)

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

slh_dsa-0.2.2-cp312-cp312-macosx_11_0_arm64.whl (306.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

slh_dsa-0.2.2-cp311-cp311-win_arm64.whl (234.7 kB view details)

Uploaded CPython 3.11Windows ARM64

slh_dsa-0.2.2-cp311-cp311-win_amd64.whl (273.8 kB view details)

Uploaded CPython 3.11Windows x86-64

slh_dsa-0.2.2-cp311-cp311-win32.whl (238.1 kB view details)

Uploaded CPython 3.11Windows x86

slh_dsa-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl (628.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

slh_dsa-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl (624.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

slh_dsa-0.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (636.1 kB view details)

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

slh_dsa-0.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (613.2 kB view details)

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

slh_dsa-0.2.2-cp311-cp311-macosx_11_0_arm64.whl (305.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

slh_dsa-0.2.2-cp310-cp310-win_arm64.whl (235.0 kB view details)

Uploaded CPython 3.10Windows ARM64

slh_dsa-0.2.2-cp310-cp310-win_amd64.whl (274.0 kB view details)

Uploaded CPython 3.10Windows x86-64

slh_dsa-0.2.2-cp310-cp310-win32.whl (238.9 kB view details)

Uploaded CPython 3.10Windows x86

slh_dsa-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl (637.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

slh_dsa-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl (633.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

slh_dsa-0.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (644.4 kB view details)

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

slh_dsa-0.2.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (623.0 kB view details)

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

slh_dsa-0.2.2-cp310-cp310-macosx_11_0_arm64.whl (309.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows ARM64

slh_dsa-0.2.2-cp39-cp39-win_amd64.whl (269.7 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

slh_dsa-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl (603.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

slh_dsa-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl (608.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

slh_dsa-0.2.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (610.5 kB view details)

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

slh_dsa-0.2.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (597.7 kB view details)

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

slh_dsa-0.2.2-cp39-cp39-macosx_11_0_arm64.whl (296.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: slh_dsa-0.2.2.tar.gz
  • Upload date:
  • Size: 24.7 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.2.tar.gz
Algorithm Hash digest
SHA256 78631cf9fd5bceccbe6dead161f122e0f1e0aa25b31920cd63a37d63097ff758
MD5 70a83e852a9d3fd4dfafce126443c2d3
BLAKE2b-256 3aea362df53d7c01bf9dae980a9e5f1eb2de8a70feda4aa103ab05a6111998ba

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 237a075671b9fc3e61f3c479a406c63dc58c3a147d00ebb74ed0922a528951de
MD5 09f2c816e0664c6ed28fb47984a904e6
BLAKE2b-256 782c9cc19b2fd38bb06fa9bb1be36dfcacdca77d5b6275bc5e0889c915906691

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 248.9 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.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 b55d8b7999936ede9f0e6cb93f659cfbb7b799a2897c222098533165057f0839
MD5 06049e221fcb8345eb4f4f6066651c3c
BLAKE2b-256 bfae56c61ef923bce3efe09493318688f687ee7db43b1d0fd918dddafce89b48

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 311.9 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.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2da2e17dff3eefaeef9da32197bb1be2f61f8ef6b360da83e6025c3a8909771d
MD5 5e67e84c7acce0b0e064c980f8ca690b
BLAKE2b-256 c87f19b7b1d65405d1f58d604b1f914982d4ce4a131343294572f3d0b0108376

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 267.6 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.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 5d4d512fbad3ba7c2ca474b215e7f135c6055c7e5ec4012735103ada3b13854f
MD5 1201123a1615b5681e9083dfa1b8d7b8
BLAKE2b-256 7e211e75fa2c919ce6729a94e2eb4aae971cc67e480efd0d52b53f7d59aa9d7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7b0ec2dfdc9561daa5a9ab80b6e850c303d3a398776b36ffab6722f52648e50b
MD5 b787b58465d97d5b287282947a257fa4
BLAKE2b-256 7c4d50ba8e5be1fb51d096c99c1de3417cfe376efa0fb4ae996a737843a20a0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 36e44e2b1ee54d10225fb8d889fde09e50190203cc827ad0feb373ef0659addd
MD5 184e1e4c5168ddecc138026689f7279e
BLAKE2b-256 cf0436b7c5ee907aa1636ae4ca7a62f7eea59f039b85c11ea89eec63377043c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.2-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.2-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.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c9efb328f51c69aee9c890cd8888d16d56ec46d665077302e932e0d9527e80a5
MD5 0d0a2f7a568cfdaaac3779305d5ea77b
BLAKE2b-256 77f724fdbc9a06c3f021f0d6d4ac386cd473d23a3f6800ba7eff96e72bae0c0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78af62fb8a81bce3826c62310ce933e47d9e6e630bf8c9ca124f64cc4e6b3dcb
MD5 53a97db8ca9ede9c9b017a1349e2e753
BLAKE2b-256 e05694fae2ba54db3504dbf31303114102baf9fc578a46d615a1f57b31916321

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47bbe51dbbe2f50b851a79b569cb94eb9d3b113d6fbab4e43a090512600761cf
MD5 20d1370321d9e914f71545818ab9cb1f
BLAKE2b-256 1cddea8a416dc3af921701544ca1eb9be36586739c9c1f5529b82c51413abc82

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 239.7 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.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 b28674036053637a081e2dd9a8ce44efc50ead483639185fb6c8636a35029a4b
MD5 a660d0c4888620e12ce7b0ba879da5a8
BLAKE2b-256 c7d03801093437ae4d1ba99711d8d34340e4c64492d4f5b817c8db8663c95dad

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 277.8 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 92b4021e635a2238c65502f3e468d04e47237b492923ea8cdfb5bac59339b4ac
MD5 510c462c5275b41e6af671bcd4314278
BLAKE2b-256 4b6cb495b0c912cd0b59e8af4a60f0d6ce58a249155816372dd79a240a42c276

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 241.6 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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d8d28680916d22d7a8b95f5106d207bf5fd672a15454fcdf48dbc6453d2be313
MD5 9ce5585b1b6c6a31a72820d7190c0ed1
BLAKE2b-256 ddf6cd0385cf9e988ae6e377f7298d48f5cd2ad8e875897f1688d906e44ea594

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d870430de7e34d27b7540d85c8e9d000cf6c5f6b09c14ea10bae9efbcd28f2cc
MD5 1cb33b0d4cd3204365262331a9bccac9
BLAKE2b-256 62bae19bc3fca60f164a7b3998bcbe7e16588b4706cf057e03c514c2fd387745

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e39f01cf11d7439cc2fbdb7e3b5f3cbb5e5a3bec92987b5e3693e645c5bdec8
MD5 c174bb102721ee0026291dac4562bac7
BLAKE2b-256 4e7114db6a3e0e35a2ae428b6c0a4b75338ee4fc8a60271c8299cb45787f690f

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.2-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.2-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.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 281f5adc16645d2c0cf2471950855c484314c51d4bb91c6bc4e28a23871e2cf5
MD5 e6e52d14ba951b55feb556d7a738a5e3
BLAKE2b-256 a73df7234a5d50c39c3f074af97a4529c41c5c9cc6109db1ec1615a6e5f595d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bed1a63f532e36022e7c34cdc09e35637806873dedbd9ae3c3a03369f6cc656f
MD5 ca3d4bdcfd9728705426988f80f8c628
BLAKE2b-256 c75e3c8bcc3328e7e131d1a51ceb84a7b49b196b7980ab97ddf8a0aba6348089

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e330d7c8d5c7701c4d6f03d290abcc7cf3637416b3a035c32e352e270f90d1b
MD5 185a97b6db6905b03f320a77c2207bd6
BLAKE2b-256 4326d5d4cfc5c4ec74d10823bd25f1642d0f2c12bd915323f588f42ee03a796f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 236.5 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.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ad217a3ace236007d3a311aaabe94f52c7c7806ba872e4abfe8af319453d9175
MD5 14a728d4ead304f5f6dd7a8f1f5a1796
BLAKE2b-256 f4fe06e9f968b406482419ee9a6b055545d8bdad9648cbd345d07e573934fc38

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 274.4 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3bd4788c6705cdae4095eba3b1201944ad9f47eeadbb5ccb776a873273f1b5aa
MD5 2d9e3a5e17a9030e6a30d066ea8d26ca
BLAKE2b-256 45d582f24e7bb440a12490016a8518ded2ffa671147c41cfd43cf1b966515705

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 239.3 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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7bfc9168362609a187165236c85df42b2c738cc2c38ff3d55d5be4c6e240f537
MD5 ee89639016eb97dc8a5709dbd53e4d53
BLAKE2b-256 3b1db140f913ef6aa99b685dd6f54f70cdbdaaa80f8c1f1133ad2eda9cb67fd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e16281d542d458b1c01ec0abdbd69f8e92ea70a89339f42cf9dede5e2e41e35
MD5 f242cc217a341a84453716b9e40dd85f
BLAKE2b-256 4bfb96f93b8452af3871effc4283fb7fdaa80c64ca090964eb960c96c6932018

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb0e5506567136af7879667ff402916321738d4ff6f0b9c26d9c72fe3d901f2a
MD5 4d33d5895b2d0bd9b34deee4478c2601
BLAKE2b-256 ffd0bafb8b8ed4b458abbcab43e97cc04d3b0b2223e658197b9c3b04b399b543

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.2-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.2-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.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bca15d2f625d7bcfcf90466bcf408a74c32d7105560746c5ad4d9e86804465bc
MD5 ec43d25abe0669eb1ea9bd4078168af9
BLAKE2b-256 14bd557dd85c46f31b80791d5110cb566e9c6625e45b0d4b4076332120b5c5fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 52a647a083b1a4cf40ad62020f68aa1b3250c6aeb2162ebfb287ac54aaaf547a
MD5 6fe4f64293f9326856243566141fa80e
BLAKE2b-256 bb240e43189e88797867bc7c90317c36ae0657408c92ad7be1d21396bfab3089

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b4b142267339823eb3b0655aef5c4e9a47e1f9111537c98c3d8806d72d72300
MD5 0c851461739dc4163823e41bfc417fa8
BLAKE2b-256 49a14e8fa4eee82daee6e28f63eba3837908fd7495bfec9d2271441ede4b40c4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 236.2 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.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a8a0dda3033c2358805a86610929d24caeafc95a72215f5d7ba9aed685b90f4c
MD5 215c685b371206e98cfd9d3b3c911a3c
BLAKE2b-256 fce233622d0d035bb90037a36eec5bbb33e1b2db8fbd8fb17e91b126996aa456

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 274.7 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b444b289e2db26ee9684626ded995a2b432f2e719e58809b6e5deb0714ac0ac3
MD5 50e0df7ca898a88c3c2383bdc2570a56
BLAKE2b-256 d0935fd7c51da6376996d4281e82239bde9e7d1bf54cf99e2b5adc3de09e1b30

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 239.6 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b85f2637428c4fcbf81757d076598ad09ce6b30bd8157f7622a298de3087e665
MD5 d6a3ec23a13493c8aa7b4036bc950867
BLAKE2b-256 90ed8306718e0343cd192a7be5472cd4bfa9bdbf73055eb2ea263cf9feb53c42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8818cc11aa65a85d2bb20144ff4a9b79daf805500fc8bb422e529a22ecdf8201
MD5 e10b42b511d455f25d5c0bfe1757df43
BLAKE2b-256 2c55870116fbd7be28ce97b882b0d647fa5cb7c4acdc8bf502476c1ef0f15b7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fea53b33ee47ae1d2774f266d264289336eb4c3384fda818c9b9281f2c921e67
MD5 0ddf8fd491ddad8e9803f43d50a38060
BLAKE2b-256 624cc55620e54d48f7b0cc564e2ce0d1e2265f3734e7d4f401337c153424fea7

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.2-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.2-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.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7876f295b2a8c32b273603aac028dbf98363d86841f1e4039d5880d0dc8d443a
MD5 ea2c3d7ba0990ebaa1afd02ffb3cec6f
BLAKE2b-256 b0f5e97cbce1e6c458e554b37a0087eb16c20cfca76a8d3d7007334279822e94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 58fbbb4c6fc5641ba3925442251259168d6687aaecab63da7c2a18d254c45644
MD5 6033f68e4d636755b64824f6cf965a54
BLAKE2b-256 059ce2ca2ff8b7ec7e7373e46649c53b85793a0d2550994fe6ad8de8fa7f3162

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 04a8d3254c037136bdf369a401b4f394dc35d226489e7c58ef9f570467569655
MD5 0f0dec2f8ceca858767eb429f4b80ef6
BLAKE2b-256 410cf7a8e5c6e01d628952137e46cfc9868cbe8a7ab07cce1434075aa91df075

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 234.7 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.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 455cfaeccaf72f99a126cc725d9d787e5576e1a33df34935f30a56f0373d5275
MD5 c2cfae39b9bfc91caad78e502ae9af8f
BLAKE2b-256 fc3a4fabbd2df54c1b01834e54e031375cb2e607a44f6ff3637fdf6b66922c16

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 273.8 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2758bc15b6447f521ecf55ea97a1cb7f0777d7456ea506a31c54c8ba6d9fbc46
MD5 41f5a994c81e2a8870e9b08dabf72356
BLAKE2b-256 d8499650262c61da5884230b61bfbdaac90958a5fdcd93d04143ac414e8d1eba

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 238.1 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7dc1f5f01f253d3ffbe7ec8b01095821a37bcfa5ca8553b3e9d6592d7371c816
MD5 f88703c197f2d59258348c17d514949a
BLAKE2b-256 ba0a54d8c875cb374cf9c030edf5294a4dd26a57e7ab9662cea676d6d98bb2c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c8d6729a11c06d281d41f3dc46ad78ae2663f911e76bec59496cf743e147eac
MD5 146d0a83003f040c71c029ecab76b417
BLAKE2b-256 f52c0fe66bd67c39c867acac8df335c72f05777110482633360a371e0a76d61c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 759c762354b8e0a0c33405a73867163f0330198d4768a033dc39775809993b4d
MD5 47c77fb7a4fd9e8f9e2468f6e298c6b3
BLAKE2b-256 7b4675a7e4565e7f5a03af828c7792aeb028e120e8342b91c0a47e77d5f3ba92

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.2-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.2-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.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3e52d4b11d9e3fe0526a98d25d588b8e6b1cc79c37af4f6e358b9c71534626ba
MD5 ff426d9aa352b82f010d957dfa80febe
BLAKE2b-256 ad379ef146b12b4f814bc0e6a7359fd6b423f0293380c13de81cbe699207a2cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 77e66416ab6c8e1efd3983dd1b976003544404b36309c74ad62c9e87712043d1
MD5 86ca502e295520a30de688622f23e90b
BLAKE2b-256 116875495ebbcca83cd1af00378b75b32852fe2139c49713dfd3d78b79cc1389

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a37ea0859a4d725b8eb50cb2a6a43cfbd000a85451c9a74310c08ea8a3e1214
MD5 0ef10777f0141d02318f473a3c47f5ae
BLAKE2b-256 f6a3be3ee8577f43255a390a2f775876f1bcfca0808d04fb530d88d433b1c32f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 235.0 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.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 9ea51ab2d1fd95c7c0344020025e35d5264642e6c46ec5978edb49b51e9f9a8c
MD5 2bab9fb980c5301545b882fbb6d420b5
BLAKE2b-256 4d6cda2867880221ee5912ccbe7f04ba2de87be58f3c555b641f1d6be0799a8a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 274.0 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8a0989fdc65b8b6443f64e07f5c44c883f4901521ab1fcccc0452a5b81c27b9a
MD5 e90bdc30b7053b9f7a22f7ced15daeda
BLAKE2b-256 c91c6cf29fa1c7639651c8cc1da1dd2d962292b0267b06bdc7177d98e566c446

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 238.9 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9edcfea5bbbb270907e1d72fdc7f2d607e5733a44f115d281b99b9e331a034bf
MD5 b2a85c6d356cb7b04d98bd64cff526e3
BLAKE2b-256 95e0550bfa516879992617745efbcd72f9a8e9d9355c9fab1705af6353767f88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83edd8482dbb8f6a54f45b6fe7e305e07916285e267623889c3874e3e4848c19
MD5 71cb6106108a7902a588345cc25c5db5
BLAKE2b-256 6ba35ab59185692de7e5a7dd1d05bf8331921f596a25298b6f74afafa7959d2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 deca2381be701d477df78e6e2ac1ab6e592d6f3a8b122cb72f4601ade326b73c
MD5 30d94b3b491496c8a5588f2285532255
BLAKE2b-256 87b14b22a8b8316d1264124829e26f236927355301df3e3e3375ad26e85c527a

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.2-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.2-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.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6ceaf3d14e14c51d32c8699e6554f48a803f13779aab823e4fc9faf771f9d890
MD5 9c75be99f9ece0687ed65bb05af0b069
BLAKE2b-256 ab5ed79bd813495e3490df3c39699ffa5460e718701e65bcbe86099ba7969368

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e5f77715f46b8446a7fb093ed041a7dc6703430d755fe2a4a94accb0258b7cbb
MD5 44b300f313b399cc66610842695713f8
BLAKE2b-256 74f1c46cc14c63a12ddc4a08511ff7793073483408a1679bd529c83f48b3b1be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f695f3c8544d83e8354f3b3d5466cdff3aa24316e2cf07017ecdddd7b66fc19
MD5 f81840bfb7247c85997db4ea58c4b0f9
BLAKE2b-256 53f88553c88241421814a23c58c76d8ba7380dd5cf658033449015a422ca8c0a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 27e312bc5903476e4fa4f4eb364c610cbfd90cb47e90d324a3066e20498661fe
MD5 5683a38151d2f636a18d257b475b1ae4
BLAKE2b-256 3c930ff663d97a7055822857815100035046d1c4318095cfa9ca14f1dd030b25

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: slh_dsa-0.2.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 269.7 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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1033164730c77a040288fe51658644b0d3b44d14bf2561970933961e18e690ec
MD5 365faf9a7f0fd48881670fd4774fa69a
BLAKE2b-256 ae0e60eade64a74f0ff13f588adbdf38da20f81da0c93d7ef690e40a1dfa65b8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.2.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d78bb1e8cc080ca19383ef5a29149bab46eced04aefd4982c45c77d7e7558ab7
MD5 b63f5dfdd07096051444ee64e1f5e9cc
BLAKE2b-256 11d5aba853ab665dc93b0a725145abd33e5a189de8b1bc244d15aa30363709c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a3fd90825269238cefc44edaf8839652a1e9455094a48accae28689bcc34b2b
MD5 6c0b4cc6f492f1fabe33c970f50cc007
BLAKE2b-256 bdeebdd30d115ff10f2308e6dca4c56b6e43b88c0214f8e8ad7c83e04b27eb36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01cf756ec0756655674f217d796b0965e6bd9d88133c23b711835f9f4305324c
MD5 a626cb5db21cac7ae02de9d81ea0446d
BLAKE2b-256 fc1953bc0ee8aab2d459f1f1efeba34734f5b94b6c0f9870a80dfa0a5483158d

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.2.2-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.2-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.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 09a0fa47feb375e96672d36abfd3bd31956fe40803ca3ffeda180d897a4598cf
MD5 7c3280fe41ac08e9d9413757ec543781
BLAKE2b-256 41781a875fab08f505ed40daa550125800bd72f1f965766cfb54d2165763041e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 06b115bf7e78c389a0655147bf6c9084e93a66987c6baf2a0bc1d87b35c82cfe
MD5 b83a5269a6f9c5b481c105330a3823ac
BLAKE2b-256 ecb2e3416463f3df6bf0232daa87557a8f8294e5591c8849163d1b15f66df46b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.2.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9f98ade98317c163a8e789d2b41a98d3c4f6737f9263fce73affeb09fe546c7
MD5 e74905c761d7bccf9d93115d30e7305f
BLAKE2b-256 ae1c34104068fda7c2a1809c5b3e63a63c92a38ba9dcfc6b52a064a82f424e2d

See more details on using hashes here.

Provenance

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