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.1.4.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.1.4-py3-none-any.whl (21.5 kB view details)

Uploaded Python 3

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

slh_dsa-0.1.4-cp314-cp314t-win32.whl (263.7 kB view details)

Uploaded CPython 3.14tWindows x86

slh_dsa-0.1.4-cp314-cp314t-musllinux_1_2_x86_64.whl (711.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

slh_dsa-0.1.4-cp314-cp314t-musllinux_1_2_aarch64.whl (685.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

slh_dsa-0.1.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (702.1 kB view details)

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

slh_dsa-0.1.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (675.0 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

slh_dsa-0.1.4-cp314-cp314-win32.whl (236.7 kB view details)

Uploaded CPython 3.14Windows x86

slh_dsa-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl (634.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

slh_dsa-0.1.4-cp314-cp314-musllinux_1_2_aarch64.whl (613.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

slh_dsa-0.1.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (625.7 kB view details)

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

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

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

slh_dsa-0.1.4-cp313-cp313-win_arm64.whl (230.7 kB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

slh_dsa-0.1.4-cp312-cp312-win_arm64.whl (230.2 kB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

slh_dsa-0.1.4-cp312-cp312-win32.whl (234.5 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

slh_dsa-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl (605.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

slh_dsa-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl (605.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

slh_dsa-0.1.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (614.4 kB view details)

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

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

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

slh_dsa-0.1.4-cp311-cp311-macosx_11_0_arm64.whl (293.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows ARM64

slh_dsa-0.1.4-cp310-cp310-win_amd64.whl (270.2 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

slh_dsa-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl (614.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

slh_dsa-0.1.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (621.3 kB view details)

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

slh_dsa-0.1.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (605.0 kB view details)

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

slh_dsa-0.1.4-cp310-cp310-macosx_11_0_arm64.whl (297.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

slh_dsa-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl (604.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for slh_dsa-0.1.4.tar.gz
Algorithm Hash digest
SHA256 c80ee76c9e5fec4d60add1378762e9e7f9675c8d4cf19474a4279337c86a232b
MD5 4aeda4a26d7595725db5d2d9f631a3fa
BLAKE2b-256 5ef7aa9b4cc42fc32ae8eb220489485ae6d54b2d53492f841c249c84c557bc29

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

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

File hashes

Hashes for slh_dsa-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 7acd08c9ec8068fb67e383be237477391f94d140d42a403190805e3014145bc3
MD5 abbe5bf61fe3ac8557789b9e4f13115a
BLAKE2b-256 ad66eeda0ff1e0bbc63d1ac4aa3cda2dd0e795de0906dfb3cf49adc46f537d50

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

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

File hashes

Hashes for slh_dsa-0.1.4-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 f8748ce5e738c406314dc5e6b5719c07f7adf4dee6dd6f0cbf872b581c7af374
MD5 3a9573025a6ec9a0d2dc018e1d6c2ae9
BLAKE2b-256 60ae7617b0a2b31796b2f405a1734642f2a9b0b8747e1ff5e1686110146cbf64

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

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

File hashes

Hashes for slh_dsa-0.1.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 285cef340001e35e0827efddd8c6c115030714d1e9b87f02afe3d57f6f9c3918
MD5 bc6fdcb9d78d8d21f3c4a147b2dcf5ac
BLAKE2b-256 4a4a5d3629886a4a65fcdd3bf68bf7574249d5afa5cce929f033f78af2c35e9a

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

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

File hashes

Hashes for slh_dsa-0.1.4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 90bcc7a14c7f84e8dda36018696b94348c7dfccf5be6f2b44a2837414a273b89
MD5 5b43636e41ea96fc59e1ed313473d422
BLAKE2b-256 cddb7d6d186870b4d13b1464496514f2532ac81b0521b7906599af522d1527b7

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a406cf3bfb4468a325207fab9df95e1d313a32e36d9d1a332b3ac722c9cbee2
MD5 6ec67e11e5525c2c34d78e97e106cdaf
BLAKE2b-256 66d3995849c53d9dd087f3f4f5bc6a6cafadcb24b30d995e9f51482b83da2fa2

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b2916a3781a3edeef6a9b5dd14d8e43c5e4197fc8aa69920938279b5f3e9e73
MD5 dffaccbfda69f33f5a3444dbdebe9e8e
BLAKE2b-256 a51c7fe8cbb82260dac18435400469180118e9f95633a0b469c676aaf4dba4f0

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a3cfc42b0cadb44660637de146f96461b454556ee3280b8dc31f9b0f351177e5
MD5 c355562b7ad8d517fcb28db1bc1d8434
BLAKE2b-256 a0229d08a3d5be026bef0cff5149b3b2eb77bc3ca161783694e3412990fe2d48

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ea0c98d80d5f90ff297ca19349f9da0c763ca3952b7155aafea4132dd25f795e
MD5 e673a904cc304c9bc1b96535edc504d6
BLAKE2b-256 5543f54541e4f72907b6a5acba20f9496586c13af166c26ef267b5e0ce2b8077

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5ea0918a02bc6dd6e67705927ef42ccfcb8c457db810957704b876f3909c2ff
MD5 7185334231bfa3458d3ff632340d4210
BLAKE2b-256 35b415195179eb6ee66a75f805c9206647cb78d9a35ca929784ea21bbb95f63a

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

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

File hashes

Hashes for slh_dsa-0.1.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 392cf0b78b6cbda1fd54a1f6cc5e3d1af418af0835499ba2d6f1f1ae7f8a5950
MD5 a6fa113918768e31a99a58317c4049c9
BLAKE2b-256 bd09408c344c891cb2fa15564b6d75a03144292d5e8360d33c04179c93a2e17b

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

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

File hashes

Hashes for slh_dsa-0.1.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8f71b13837a682cfeb6e93951a96f6b227469c51292fc57ac600e25d6660c8b2
MD5 20158c7e23827c1dc49fb4066fdc9f79
BLAKE2b-256 da7324f3834e76814bc1e719a9d76e82f6e0de9f8558eeec200293e65fc88e11

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

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

File hashes

Hashes for slh_dsa-0.1.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 54ce07439a698e3fdc9bca9c20308f792fb9b23515ade37ade193417b2adb5b8
MD5 277313762b71015623ccdf2cbe864dab
BLAKE2b-256 c69bed637f8fa301375cc2707483031a2a2b819bb220567d8f56617ef14db39b

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e976e14ccf81d84e5519af43c6fb78d269c3449ef0684d392c1c15f5b1b71f3e
MD5 052d765573bd41e8f80ceb3be2356f83
BLAKE2b-256 4a2d99642bcb3411ff3a6d136efd26ce5744ea2371a28b1d832a00e357844c74

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 26c496f9ef31aa46f47412300906ca98350d929df372a51762e2c8468f2a62a7
MD5 b44d528363b3c9b910a9163d774ffe7c
BLAKE2b-256 eb2654d22e64620486519c8fceea4f8b60f06cc0720db3c24a3e6734138f1007

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ddfc43acd6f3a6c07ebc5c37078b140b9615df601418155f3b6e7325dac73d1f
MD5 7377ea879b1299c6adc345969db39303
BLAKE2b-256 0e853d41086e1a5e01b41dcb68d4c91280aaecb11bbfb62a3797440ae80bca38

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d710b00cdf9268d0a964426a22221b94a80589b4cf8e334f83f60435d3b2ff47
MD5 bb1ac508d2727383d6775ba0bfda8f09
BLAKE2b-256 59ff48e8b7d7ef818c7ab5c6995db83398e1ab76a403d8929c15c9122765b6c2

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bdcef02b9744cd90e8bd9e2e2da0158ba0e33e40ffd5acdaa3085e37b663ef72
MD5 dcaefb1568938b3990c648e7365e378a
BLAKE2b-256 232389242cf1efc047c1a6311abf51f437577568f593b0a62adc1ae425e7f2a1

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

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

File hashes

Hashes for slh_dsa-0.1.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 9e2ccf4a6a162459ec7c76054eee3e3204e1623d793a2cdee40bc5a8344503d9
MD5 047f934c8b5358958044a86ab7af3ec2
BLAKE2b-256 7c637215b6feffb036c75df274164377c7cec4956e596725ba74e85a129ffb9d

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

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

File hashes

Hashes for slh_dsa-0.1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 24ee2d1eefcc9a22809b0f0da2246df7c032e83fe559e9592b51e1b28740acf1
MD5 660c6d698b26cab00067efc3a656d613
BLAKE2b-256 0a331b5812315dfcc1459691897e892c25f1bbccd6260b6e53cf9cc0c9bfa5ce

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

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

File hashes

Hashes for slh_dsa-0.1.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 904646efdaf91b2581e4aa157ce260b52450f33293094260ce5eebf40c72135f
MD5 9bfbaa05294abd7f4b902d79c4c05624
BLAKE2b-256 2fc596a52efbf0a85ec9222b062934a067b9082221b11e2aef19d6d12be9464f

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0467fa42ebb3811be5df4f658e6497ab3072c64508918a471f3cd58b9c2049d7
MD5 43998fea61c3c961c550f206bbf582a5
BLAKE2b-256 ca4b7b5258728e74c1ce23c436791548ef3b5276eac3c08cd9fceef702d1c540

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20045732fd49578bff23a2afa9bc1d67dcfbdb28563371b3ba28b161899b14af
MD5 3ea606d1c20911e23d40edac580c2625
BLAKE2b-256 f005d919c9a115a5c4a20f7e9e1fd0518210fcec445bb972242a0ebda5c1d656

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ecc948933b39baab4b2f20c3d43e628b6cecc1049b0d1082876760ed5edbcb2c
MD5 d0e796ba2791389e9e43099968f119e5
BLAKE2b-256 cb256238505129b5b11e880b08f2038db7c2c326c66979ffced3a026395140e5

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 03d37d8ecf4f4e811bb0e3d4c5d363fe4ecfbb0d101bb1aba86da5cd8cc639ac
MD5 80bde961fcdf0bd785bd97c361cd1de6
BLAKE2b-256 d7a5da0dfe7b5c172c8524d2328eb4db58260d7fda59a71bca158290931c8c01

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71fce0ea655c66a02fb3b917ee8f9ce6e00941ddd04f29899afe384668e8cfce
MD5 0fdb2e3b95d49a050de128f27234cab9
BLAKE2b-256 4c9d09c3aedf0b26b8620d180be932304b0a0754c36c0dbc3fc1d02eb9af4755

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

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

File hashes

Hashes for slh_dsa-0.1.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 1622e3f62984867e49bc5826336e117aebb81eb00c6ac74ba6f5f00151152c49
MD5 d197ce6593086156c61ecff8c5fe9ff8
BLAKE2b-256 4f9635720641ee8ef901a0a7fa16ea6f94a41e27175bd64e4ddd1cf6e6b8e05a

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

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

File hashes

Hashes for slh_dsa-0.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f927c47837fc615b63cd27b74e5294f79811e1501c788a4b78e9915f4a36571b
MD5 ccbdb02e4400d31d08166325a3c4a79f
BLAKE2b-256 a7367d77bee728c3a9eccc54f28f6e6bd28628d0f45b23b78b8cac3ac4642c62

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

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

File hashes

Hashes for slh_dsa-0.1.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8a35d95194e17f4c9cea392063cb9517e7b2951e71b2d5da5275921d20c94b78
MD5 7d5991e655bfe9a67fc3c0f13c36cc63
BLAKE2b-256 768a8d0ed27bd0173b21b64a9bac4ee4b26077822fe337fbe19dcd18a45d3314

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef8dfcde92d41d1a66ffaec54d82448db79fdc66ea2e82bc68e3056ce33cc40e
MD5 5f0b1e8fb6ec6c8079c8173e4ec69a12
BLAKE2b-256 e5411df8b6b40e7d40fbf65cba0fc713fa281a1091936297c119fb5eb6ba6920

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50d83274714b4e04a2f3f4847090a0ad851a54508ba066de57acab132fea052c
MD5 88e02b86a54ca7bbcc21504933ae8eb6
BLAKE2b-256 5ea6df611058042cb1b725e7cb591f3fd520b2dba1cafa79e477d517ea321df9

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5ccec3ed0cb90f0c4bac24eef284ea27cae61e4aba3f10e67b4cdb67842c5d18
MD5 021da38f9ed70daa98dedce6c0eb8140
BLAKE2b-256 346999538813719b209ba064262218acde66506cd670dc3116e8be9c5b1b2927

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a41557da4852550582af58061d8ef91b6a86af7dddedf9c7daab37a7b65db9d2
MD5 3b5ada1a3adf0af91449a7ea6aec5412
BLAKE2b-256 9d12251208aa3a2c5a2fef9e8c9d8461a911efaac7a6450b26b4715e63ef7c4f

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7d8ec7bab58ca80b838dcba397da9a6ab3e416af27f04081f8afc93e6d17c15
MD5 3d0fcaaf8499e173b950ae2979d27c5d
BLAKE2b-256 9577e0ced57013a7bfd9db15cb8ec92fc410a73082c95eb4707f171493675bae

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

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

File hashes

Hashes for slh_dsa-0.1.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 bb072c6d2fcaf8874370ca5fa165017c88736cc6be2405f2f908ef47c0d53aa6
MD5 adb75efe5f3d1e2776857cb9ff23fdab
BLAKE2b-256 6f4734906ce1a00cffd423bbbc7209a765fe228d277940d45e06a741487cde22

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

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

File hashes

Hashes for slh_dsa-0.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 339da47401f303ca36080f50cb26dd6d83434ae1b1f5a698fe445450e3fba6b6
MD5 4ae3cf960367f62fc879004c12fcea64
BLAKE2b-256 86f4cab73f5f2fdc2683e0d7fbf2a84261a3e4db6b7c6601beaf6462289716f5

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

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

File hashes

Hashes for slh_dsa-0.1.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 16acf24efc489450ef0291ba02ea0a53d55d0acb1f0248925348587e2651eef4
MD5 2a2b56c958c76dfe66a0fbc3520812a5
BLAKE2b-256 ecbbb8a6febc6eedc486aac2c77df379351d7699d6f99f39752678ff13242b42

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 572fc5377a9ec76d3a29aa558a7a9214c9b8991c61bcff78616fa12d3066df99
MD5 7ae558ff7cb54c4c90763f7403464aea
BLAKE2b-256 bbc4bcbeb410fe42d1a25af058d1e8ee716c86e49738e5bc8ddfffc732e56707

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb4348aa58c0765503b712593d4b9098183f9d8b40d7da2a1cbee5c5c0c453fe
MD5 863065c148b4b63252698b7258e77a52
BLAKE2b-256 2e587827174e633efa2e960c77a88a4756fe6643027577d17a0e31a209799c67

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a8a8b4a7d7ae04633a177e614730fc5e7921a3a099ca556be87f5c168b5cf7de
MD5 84f729abb6ac84e65d7b5508190fbfe0
BLAKE2b-256 e2df6549f686cef5d58979afb79f2e19b5627ec39993e585fb36f0026cfe8e61

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ab1f24d659fe9118bccbe7b0c2b1a186996af6329ed6470bb48eb6d386ce52cf
MD5 52e8a04857206a7447498d4ee9a1bdea
BLAKE2b-256 78ec7c0bd51321d7759bcf7d6e606e6deca8eb44361d0a89b92d29bb96d8e832

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3812cd403700af061d9f1f4b379e5e0a27036b04d2ab7e873bdf7cf7291d6613
MD5 80e55197f4f0e8b5f4a3a7b2dedf19b6
BLAKE2b-256 a9a40b4d2b6d08f468b876d686b5bf97df6cf3f4600a60b6e4a0fb1fa0441ea7

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

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

File hashes

Hashes for slh_dsa-0.1.4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 5fd265857f35b5863aee3ca30e662a99563c2e688ec4608b9fad7f0efb8315f6
MD5 e4f013d9d740d8a781ff7f7c6487439d
BLAKE2b-256 e1f91474efd76748a82c69de334172e62fd4493d4751521096efdea6e5c68274

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

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

File hashes

Hashes for slh_dsa-0.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e2cea7186a4cea96e38864702b8120bc5430f2af97acb517cfde9f0be8c9cb27
MD5 74e572280fb893c000618927ab1937b7
BLAKE2b-256 f974b626cf723cfcd089dd876807f5fdb7c92255e0b7becd897726eeab27e329

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

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

File hashes

Hashes for slh_dsa-0.1.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5abd8ea51d8dedc421a32cf39931d189c43992de50633956552be3ff4595bf3a
MD5 5d60eb445af7e0195aee134dccbaf90b
BLAKE2b-256 2093f1daf9bd23e53e1383ebc9ecd10c79a8230a2eca664b8821d49251a4a2d9

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d5e5d4ea9dadf807c5aca6884efeabce1d4a815ac813c80fa6af2909b8f5392c
MD5 b217818ad2df474224686e916b9d3434
BLAKE2b-256 7d8c4848ed51be3080ce97d52ea1d7ed52c2cca3e9f4fd3d536e9c7e452eeb42

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f2063d87783e51810fab971a2d7e1a2a06391e90630f053774bbafad85e2ad4b
MD5 e4ed5b120a804fa6b94c31c5f4f675a3
BLAKE2b-256 f2412a635fd83bf485417b1e6a3fb3d6ec84aa982f4eeeac873536ec73f2f831

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 acefe2c6cb9cd5d475fc373b94b1ecb5218816547de2dcead8bb0009a8c2658c
MD5 646ac372af8489115ac2d5495223a25e
BLAKE2b-256 24879116ce53e5713559b7733e3ef037eba35b5e29ef161beb23d199c6df7eec

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 22562edb1c511c893e68c5922e055abe6ede570db627113dfb7d286a9c8b1eaf
MD5 f4edaf725883bb27263f9bc397baea21
BLAKE2b-256 ce2fd9194778b7810151715d321550d08044fb90998aef1f1af178e78a395ef6

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df47371da7c04f345505513f3a07ed2000f2e5e8a30b3d7c60ad24937943f791
MD5 0c3799ef0de43f99c4a87db6019a621c
BLAKE2b-256 4dd942125a03ddff2570fceb3415aee4ae75039340afccd5ef61622d07d780da

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on colinxu2020/slhdsa

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

File details

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

File metadata

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

File hashes

Hashes for slh_dsa-0.1.4-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 7319d584613ae07d29c415bc822c65abf5ee5d01f25ef061f31f005fb952dc8e
MD5 548ce3beba54484a3a5cd43686d5adaf
BLAKE2b-256 b7f0df755f66ffe7a594c259de0f1fed29dfc703bb8d051e9783e45d4f5897b0

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.1.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 68d7c1274d35c7653279cc3cdeb1ade9bdfcaeb59d3b69f28cf5e327697a11f1
MD5 7da3fbd2a85a9c90146886b2424a7080
BLAKE2b-256 f9512769f1ab868527da960ad5c9ff1e227b578b855f0fdcae3a1ffd3a362ff1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for slh_dsa-0.1.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d166539063d3879d3d4955c39dc5aa202e22e0c753e072aa661651b49b3121d2
MD5 9d6c8eb3a1cfff0caf859078b9f2b80c
BLAKE2b-256 dadb932e3adb72ccb6ccd74dac09dad22e53d1337f531fdc72354d279a821b3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e1edbc9bd09b9b887d37ebab2249a2ad84df87c872f4191bb0b725a7480f39c
MD5 55c30803a8b2c28e89f516e5d5cf7153
BLAKE2b-256 77ef58ea3b848a382729720385c13d203a11060cf50df80342bcfd1a04f0cbd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e620a2ce6791c2d30da4d9e4fdbac96e54c8aef1634c8b457be4d49f73810fb6
MD5 a7e20cce5a1cfec7e41092180108878d
BLAKE2b-256 c4cb4c195e8506dc2ec703f7f673d799ea588b9d1a0869b46732ea106d58849a

See more details on using hashes here.

Provenance

The following attestation bundles were made for slh_dsa-0.1.4-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.1.4-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.1.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b497257bf57f83c3640f11ae3f9cfe91c0fed9e4e85ea8c4d61b2da61f3c2790
MD5 9915bc6dd291aaafbb47826df65601d2
BLAKE2b-256 40e561f129fc87abf3e844ac6bee392f26ef26c892389ca3d4e3f001972b8529

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6d34770ae9363ec3b3d200dacae3eb403fccaecc0746a6b9d3812ed07e8a7f88
MD5 0da008399b3243afa17c81b1a1cc1f62
BLAKE2b-256 cce77f365c606544c9c715eb003658bb4b55bbd6399c5b0902d2f44b802e67a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for slh_dsa-0.1.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8df4414301e95e0167df4d5dc24426f0deb8d3f650e942e2bf98c16cbdf84928
MD5 e67c1b12968009e1442fe7299d1590a7
BLAKE2b-256 abfc7dd01226b6d097c5a3d33a92918eaaa3158ded73fba9a4795ed4fd29b348

See more details on using hashes here.

Provenance

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