Skip to main content

Post-quantum cryptography for Python.

Project description

PQCrypto

PyPI Version Build Status GitHub License Python Version

👻 Post-Quantum Cryptography

In recent years, there has been a substantial amount of research on quantum computers – machines that exploit quantum mechanical phenomena to solve mathematical problems that are difficult or intractable for conventional computers. If large-scale quantum computers are ever built, they will be able to break many of the public-key cryptosystems currently in use. This would seriously compromise the confidentiality and integrity of digital communications on the Internet and elsewhere. The goal of post-quantum cryptography (also called quantum-resistant cryptography) is to develop cryptographic systems that are secure against both quantum and classical computers, and can interoperate with existing communications protocols and networks.

🎯 Purpose

PQCrypto provides tested, ergonomic Python 3 CFFI bindings to implementations of quantum-resistant cryptographic algorithms that were submitted to the NIST Post-Quantum Cryptography Standardization process.

This library focuses exclusively on post-quantum cryptography for Python, adhering to the Unix philosophy of doing one thing well. The cryptographic primitives are designed to be composable with existing cryptographic libraries, enabling simple integration of post-quantum cryptography into existing applications without sacrificing security or performance.

💾 Installation

You can install PQCrypto using your package manager of choice. Pre-compiled wheels are available for common platforms and Python versions.

Using uv:

uv add pqcrypto

Using poetry:

poetry add pqcrypto

Using pip:

pip install pqcrypto

🔐 Key Encapsulation

A Key Encapsulation Mechanism (KEM) is a cryptographic primitive used to securely establish a shared secret key between two parties over an insecure channel. Unlike traditional asymmetric encryption, which focuses on encrypting arbitrary messages, a KEM is specifically designed for the secure transmission of symmetric keys.

from secrets import compare_digest
from pqcrypto.kem.mceliece8192128 import generate_keypair, encrypt, decrypt

# Alice generates a (public, secret) key pair
public_key, secret_key = generate_keypair()

# Bob derives a secret (the plaintext) and encrypts it with Alice's public key to produce a ciphertext
ciphertext, plaintext_original = encrypt(public_key)

# Alice decrypts Bob's ciphertext to derive the now shared secret
plaintext_recovered = decrypt(secret_key, ciphertext)

# Compare the original and recovered secrets in constant time
assert compare_digest(plaintext_original, plaintext_recovered)

✒️ Signing

Digital signatures are cryptographic mechanisms that provide authentication, non-repudiation, and integrity to digital messages or documents. They allow the recipient to verify that a message was created by a known sender and hasn't been altered during transmission.

from pqcrypto.sign.sphincs_shake_256s_simple import generate_keypair, sign, verify

# Alice generates a (public, secret) key pair
public_key, secret_key = generate_keypair()

# Alice signs her message using her secret key
signature = sign(secret_key, b"Hello world")

# Bob uses Alice's public key to validate her signature
assert verify(public_key, b"Hello world", signature)

📋 Available Algorithms

Key Encapsulation Mechanisms

- hqc_128
- hqc_192
- hqc_256
- mceliece348864
- mceliece348864f
- mceliece460896
- mceliece460896f
- mceliece6688128
- mceliece6688128f
- mceliece6960119
- mceliece6960119f
- mceliece8192128
- mceliece8192128f
- ml_kem_1024
- ml_kem_512
- ml_kem_768

Signature Algorithms

- falcon_1024
- falcon_512
- falcon_padded_1024
- falcon_padded_512
- ml_dsa_44
- ml_dsa_65
- ml_dsa_87
- sphincs_sha2_128f_simple
- sphincs_sha2_128s_simple
- sphincs_sha2_192f_simple
- sphincs_sha2_192s_simple
- sphincs_sha2_256f_simple
- sphincs_sha2_256s_simple
- sphincs_shake_128f_simple
- sphincs_shake_128s_simple
- sphincs_shake_192f_simple
- sphincs_shake_192s_simple
- sphincs_shake_256f_simple
- sphincs_shake_256s_simple

🙏 Credits

The C implementations used herein are derived from the PQClean project.


Built with ❤️ by Backbone

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

pqcrypto-0.4.0-cp314-cp314t-win_amd64.whl (12.8 MB view details)

Uploaded CPython 3.14tWindows x86-64

pqcrypto-0.4.0-cp314-cp314t-win32.whl (10.9 MB view details)

Uploaded CPython 3.14tWindows x86

pqcrypto-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl (47.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pqcrypto-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl (42.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pqcrypto-0.4.0-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (47.9 MB view details)

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

pqcrypto-0.4.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (42.7 MB view details)

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

pqcrypto-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl (17.2 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pqcrypto-0.4.0-cp314-cp314-win_amd64.whl (11.8 MB view details)

Uploaded CPython 3.14Windows x86-64

pqcrypto-0.4.0-cp314-cp314-win32.whl (10.0 MB view details)

Uploaded CPython 3.14Windows x86

pqcrypto-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl (40.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pqcrypto-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl (36.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pqcrypto-0.4.0-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (40.9 MB view details)

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

pqcrypto-0.4.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (36.5 MB view details)

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

pqcrypto-0.4.0-cp314-cp314-macosx_11_0_arm64.whl (15.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pqcrypto-0.4.0-cp313-cp313-win_amd64.whl (8.9 MB view details)

Uploaded CPython 3.13Windows x86-64

pqcrypto-0.4.0-cp313-cp313-win32.whl (8.0 MB view details)

Uploaded CPython 3.13Windows x86

pqcrypto-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl (34.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pqcrypto-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (30.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pqcrypto-0.4.0-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (34.1 MB view details)

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

pqcrypto-0.4.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (30.4 MB view details)

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

pqcrypto-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (13.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pqcrypto-0.4.0-cp312-cp312-win_amd64.whl (7.1 MB view details)

Uploaded CPython 3.12Windows x86-64

pqcrypto-0.4.0-cp312-cp312-win32.whl (6.2 MB view details)

Uploaded CPython 3.12Windows x86

pqcrypto-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (27.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pqcrypto-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (24.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pqcrypto-0.4.0-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (27.3 MB view details)

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

pqcrypto-0.4.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (24.3 MB view details)

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

pqcrypto-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (11.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pqcrypto-0.4.0-cp311-cp311-win_amd64.whl (5.4 MB view details)

Uploaded CPython 3.11Windows x86-64

pqcrypto-0.4.0-cp311-cp311-win32.whl (4.4 MB view details)

Uploaded CPython 3.11Windows x86

pqcrypto-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (20.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pqcrypto-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (18.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pqcrypto-0.4.0-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (20.5 MB view details)

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

pqcrypto-0.4.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (18.2 MB view details)

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

pqcrypto-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (8.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pqcrypto-0.4.0-cp310-cp310-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.10Windows x86-64

pqcrypto-0.4.0-cp310-cp310-win32.whl (2.7 MB view details)

Uploaded CPython 3.10Windows x86

pqcrypto-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl (13.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pqcrypto-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl (12.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pqcrypto-0.4.0-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (13.7 MB view details)

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

pqcrypto-0.4.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (12.2 MB view details)

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

pqcrypto-0.4.0-cp310-cp310-macosx_11_0_arm64.whl (6.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pqcrypto-0.4.0-cp39-cp39-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.9Windows x86-64

pqcrypto-0.4.0-cp39-cp39-win32.whl (898.4 kB view details)

Uploaded CPython 3.9Windows x86

pqcrypto-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pqcrypto-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pqcrypto-0.4.0-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (6.9 MB view details)

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

pqcrypto-0.4.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (6.1 MB view details)

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

pqcrypto-0.4.0-cp39-cp39-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file pqcrypto-0.4.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pqcrypto-0.4.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 12.8 MB
  • 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 pqcrypto-0.4.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d9907a1cb40d359ea02fd81ef63ea73b7b55fd42c29a18957ca942cb05d2b1a6
MD5 59822527733f044335b012de02125f29
BLAKE2b-256 fce7c52783e5f71c01590b16d8d8e98d7484edfe61b62eaf133327e08f25da07

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp314-cp314t-win_amd64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pqcrypto-0.4.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 10.9 MB
  • 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 pqcrypto-0.4.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 ca1b7245c4f6a9c42a1431adae9c3cc87aab62403c7421bca57b9dcf053716ba
MD5 7cf1e64bdcd1a1e66fd131a12cf5746e
BLAKE2b-256 305860563c3e53d5bf8aec4e83e13f9342f7f5cf392abb133a5c9462ca006046

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp314-cp314t-win32.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10f2879e3eb5734304dff538978b14b4cb3c92f5c72f0aada710afeab0ee0c87
MD5 ac05323cbd9e941ab6f06412c2cf606f
BLAKE2b-256 7378a0844b5aaf0f5c3c715c7e4c963b47bbf6535809531e410a7c047aa559b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 39608d8b8fcf39add4e08d8501d475e212063e4f671c74321995e1ec8167b419
MD5 6f0e846e41606a6b726378356a0fd61c
BLAKE2b-256 9ff3f7ddf073fdc02cfcda78c033787e9bda8b4ff2261ded1bf1bf7fef047e37

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9aeea794ec2ff456941bb6d95234c255121cd3e65d6f443f51e9791f37f28898
MD5 8fe6ae0b97d065a782d3c40e5cf23121
BLAKE2b-256 1e32073ba0d775997239c56408c8b8e93ca505bf67da5e636ba82ec95f34d6b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e2458d7ccf2f18c8fb3d58a8082e170b8f40ab3614658d59a81e51e7070b6901
MD5 a1c78f1cd5ff57f17d5db8c7212cdca6
BLAKE2b-256 893ffac94272f7b79e08479018566e1af246c75a6868e6e866f563da48df1768

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c9c5e27eca7b7d116ed113e16382866f22d082a3341e591972ec89903efdcd3
MD5 87f609d7295d96fb2dcecb4c57f2bd48
BLAKE2b-256 a515b54a7ee8bd54e90c84f17f12ee46ff0a30864f1f7d6ecf4eef9f6f821a96

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pqcrypto-0.4.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 11.8 MB
  • 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 pqcrypto-0.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e6f4cbe97a44bdd409a7f0369de1e711e0869b529bd69ade62333eb335600326
MD5 e726ab2f7eefdc9c6f253c52fccdcaf7
BLAKE2b-256 4f10f8d588c225b376586049adb4eb906746cf4e74b2cd239de45ff355dd7d2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp314-cp314-win_amd64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: pqcrypto-0.4.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 10.0 MB
  • 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 pqcrypto-0.4.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 750581ed553bf7fd29841208eba43fe6cee50c99caa69484e31b518a0bcf090e
MD5 13d3ac8a38d44bbdfca7aeba3bccc44d
BLAKE2b-256 bee3ddb254db90743e192ffc16767b6dc3b2029fc6d1ac70cd700a05466fb90e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp314-cp314-win32.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1bf65702d8ab1e3d02c4d53fa6b903000057d755662d7fe3ca1783b350b34966
MD5 eafacf683bdc1d258670ec082e7c5a57
BLAKE2b-256 ed474df448a5849c5c6233bd17f25c2259517c0a93be7141f5447b528dcc13de

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9d423baf62fa26735164ca1b69768b523506e6d60350f102d0024ae7d74203ea
MD5 cf2a510896c9acc2ded2786e670bbeb4
BLAKE2b-256 c395d395cd05d62d3b68edcf7c593abd2c5cd019ea885daca63c9d04aa978daa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 103b0586582323f443efc071893c775bdd9c74851b88523c086ef3bae2b536f1
MD5 12ea41776399a7efdfaf68ed08f79b8d
BLAKE2b-256 576098ed5d9d959c3b5c9d604a832d12e30d249c2cffce3496330fe3855a1599

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 573ec11e103c7185f4b298af5924a7ee24ec76e1c6fb5f11af332b7360950ad8
MD5 9469b6b2a9462c38abff15703c11759c
BLAKE2b-256 ad6dfa97f2003a8b2124970bd238aedaebe36364401042ac49e929e70abb24bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6087c6e46fb601fa76ae40bc3eb56189e7ce3da9b50740669315be3fb5757010
MD5 4d7b5aed8f6ea7d82def144061ba72d5
BLAKE2b-256 cff2335ca98cf32d0723b86e672cd0b06da92bd091e3599b881b70e93f4faef4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pqcrypto-0.4.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 8.9 MB
  • 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 pqcrypto-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 04fce6e234727a96e94a7e7b05e8959edf7db39fa94b092f6bab5fe51ecdf29e
MD5 75a32fff66e1fc68b3563d935310ca7f
BLAKE2b-256 1b39c22a01f0ae8b4e843d9aaf6095ad5a3708230f50fca523fd8c70081cd62b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp313-cp313-win_amd64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: pqcrypto-0.4.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 8.0 MB
  • 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 pqcrypto-0.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 af474a7530daec502642964a4a9ed0ac110ecb1abd7b6cb010ffee3405721cb5
MD5 ab60a6274620984c8528cbfce896f030
BLAKE2b-256 e31976610175111e2e4298fd1e5fd48ef6eebbb5b54a8c685af3a7d4b3e90691

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp313-cp313-win32.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f2de5cedff213cc874341c6618e5d70f050f444ee0793a3a3adec0f81d86f20
MD5 a60c305b09d5ebc5918e8c5b423cd59d
BLAKE2b-256 863518b6949229c3157d54feeee2a7dfe29d1e327a04b39b0b9fa3feb2f58e04

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 68a7ce6889450732154405cc71a30233e16d47ba4588529ea365d46655c35889
MD5 88d00baad8230d7fa12607af9f273df4
BLAKE2b-256 3829b63e8b9489bb8f7a41a63121cc442e9a6909a2ea761b921a75488e90f6df

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1ee2954eca84149e29064b9f82f130bd1ac5e0d963b0a35e48a7c9737c2e394e
MD5 07860e27169581809a159f7a7e278de8
BLAKE2b-256 bb019c57f061b6798bc478cb552d3653bff4f447b34f989e0f49326fa558719e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 239cc1b60cdf54f45e7f13c45caab784500ce8e4e7f9fde8657b9fadeb125008
MD5 51eafeb922311734dd0665e85efd4c33
BLAKE2b-256 0dd698abb4e44df8c361a1a0f67e0306e6f0257c3ca8aef6bedefc0956047949

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ede8f0adfb30df35f0fedfab3277792792f5fae5eb66c4b4b3d7a7bd89a64778
MD5 8e181deada7ab853074ca39f1d849816
BLAKE2b-256 dd5ddd3752d741f8772eb7f0a49226bb02966c1fd7b85c7aa83027213a2e9973

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pqcrypto-0.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 7.1 MB
  • 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 pqcrypto-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8a5b74ddc4e257469b3ad44aa65e839eeb7da5c0fabc68a8e469507445e731cd
MD5 4f0fdaacbe2296595ca77cbb9056209d
BLAKE2b-256 4db93425250bfad6e1bff4f855555c8d043a918d8b5619dc316ce0b6ad58ad54

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp312-cp312-win_amd64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: pqcrypto-0.4.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 6.2 MB
  • 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 pqcrypto-0.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ab62730b19e1d810bd8adbac783b5e7b2a21db03da39e05e7e175242ff556189
MD5 71d8ea6ce6dfca5f956c0b0d31efd23f
BLAKE2b-256 492c333b2e41f863a3a6453192a18c1e437b471b02351154972e2add6d42f903

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp312-cp312-win32.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a6515e74bf05bbefc8e1a33a18c0c2e0494185675b6f8aaa8c931191272b565
MD5 4d9007677662346ff4f358ddfdfb2349
BLAKE2b-256 12e46f4a22da1e74eb925a5f08887c450af474abd6bc4d6898384a1fce554fa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61d5cad03791a892d9d1896fd268604a9912df1760e7fe70efe53fef7a3e31a4
MD5 7f9a0ac17a01cd686ca1f9725f18bbe3
BLAKE2b-256 d4633f941d65571f4faa9dfa3ba0c672a72a8d783c1ac3dbfea041e3844eb9a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 280db9aa8e173b6756bf45a7eda042f02692c32e06ed47c57d6909026be17d48
MD5 b0be0614b669dcf1a527b4d7163c9863
BLAKE2b-256 02f480b7aacc93249d5735f8d150096f0b6eed8347cff99e0f032e3170c94aaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2e79f8d9148db5a83e8a842ad59402f3421a2cc678f2c3c43015b26f4b5cad93
MD5 0a61efe09cb9e5a66854e374961e4197
BLAKE2b-256 4dc913f965ada9bbccb9633cb13123327022dfd537e12d10ad033bd83053dab3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 001d2b473bd64c1ff59ed3ef57ad5b4d351a2b75b589015a8385a6e29d44cb55
MD5 c18f12699082871cc296df1d46dc0065
BLAKE2b-256 512b3cfe832c7c365cf715d04a1cc220961ce442deb88888f259890fb6af175a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pqcrypto-0.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 5.4 MB
  • 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 pqcrypto-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cae6d57a0098d9a703f627de72f9688b0cbcc6d4b6d9f67be7a44a98da9d063f
MD5 dcea3e1aac6b13385d778f21c0c4b6d3
BLAKE2b-256 dd8f9dc4f354c594d86bb617dbacbeb09c8163ffa5223e09a8b9e029d5db9c1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp311-cp311-win_amd64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: pqcrypto-0.4.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 4.4 MB
  • 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 pqcrypto-0.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1517264111b95b572c0a73470f76795bd9aadce1af27f5fb02890c8bb92789b4
MD5 985591193720c5bceaba5539bfaa8c31
BLAKE2b-256 c2f5633a869fe0c0b9b7bb9086e7f767a06932b77db7d5ef7aea2162359f8c8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp311-cp311-win32.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8fa254a42751bd3dc53dff0897c74bc1f0be2c100ab7c86bda17905983a7f4c
MD5 9ba9ec2cfaf8c74522a01613411a0a44
BLAKE2b-256 8fab8d4270445ea0d5d5e4d5cbd28b9186e97b32185459a1b67273d3046bf288

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b098557eb6ed727f96f32d388a0a36494f347e8b4be3cdbd413997cfc82712bd
MD5 6f4436f75c3faade16719e9449eb715f
BLAKE2b-256 e332f63a16adec538fe74e3bb1f7cc208127d06e9333330d5b363e223461e27f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2a0f221f06f4af1029d55c21eaa4456630119d5205bb12390637ae31e710cd4f
MD5 e6dc1a1c6f96c3206e7a1bd7d14d4ba0
BLAKE2b-256 d36a2f15dacd72df897ba15e051d0517ad3b8676e27feac189d8ac540edfdde0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ce0e4ea504eabec4d51085fa62de61b471ac123a624fe44bd4dac289e8803b8f
MD5 78a167377f6505976f641308ba251f19
BLAKE2b-256 9f2215f3f28b3e0763879336ae7c7d9f83e9bb3131beaf47ddece4418b9edbe1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cdbf308452a183fc6c47a994207ff3ebd820c8a8aa1f09e9dbb1b697ab6e7cd9
MD5 f99643de309bfff1f86555276ee6609f
BLAKE2b-256 d8758864b99d3fb703914b734b9a6e468e76a1c208c66a297124e3ee795336b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pqcrypto-0.4.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • 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 pqcrypto-0.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 81dd9fcf46a3d0fa3289895a11e45446ac0127de3a5cf42805377b65470a9bc9
MD5 0788fcee554c48e2f80d98d2825bc26e
BLAKE2b-256 344311b3aa98289b0c614b34d72937fc9e0d00106a86267fa376e8077051c252

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp310-cp310-win_amd64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: pqcrypto-0.4.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.7 MB
  • 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 pqcrypto-0.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d35f89a913d820d9bb7c3f8910231edef2eefcee2a4eab86429f66ac048714b6
MD5 8dcb1b73ec0927fa5a153cfcd34d9831
BLAKE2b-256 2e5b58091708afebac683f5254315f1bc9d6a366724690f5d71cb322b78ed4f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp310-cp310-win32.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92b41d33c8d570d2cabce4f1d8d97768cbb316165e9aa0a44b018c8695894049
MD5 be227da97741c71fc31c7290b3668326
BLAKE2b-256 e728138dc6fb728f07f8c4e132aa12e918703b8214765b0e9a5303eaaa157109

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbc157f031ed5612b739691f3f52aa5a897162c3d415e09294d0aa1c43626acc
MD5 ec9221edc0995b9e8501da5e033824b8
BLAKE2b-256 27ca54a4ec70d3b6b2ce0ce411570f51edbbd06bc8ba4d02ae95e7b29126ce52

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2cb7b3c6a4cbd69475e1a6357bc8ef4f85ac4fd34f6526a0d98f43e0a0e6432f
MD5 dab7aee1e64b54903d8cbf9effc9343b
BLAKE2b-256 ca21f85bf5b6e041cd16391745bedf013c76c4d20e17547fc4721fdf1739cc5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b11016bdc6a058dbf0417bdba0857bed1194ec5a916779a79e492e5bf94f09fd
MD5 7e58b88625dedc02855a509ad6aeebb3
BLAKE2b-256 1bb410b19c1d6eca760133685d2b72978116f8fdfbe92842cd19a3118ddffc6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 036c264eb87ffc6f17b43cdc6357108a708b8c53dd0b06c603957f4fa52b9d19
MD5 14655005ef7f9793235f6bbd6dd6f9ac
BLAKE2b-256 8c3d23e9938a02fbf38ab8da7a139058b112d0ab57e3fc682eeb658d77d3c891

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pqcrypto-0.4.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • 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 pqcrypto-0.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 26f6c8ca076c86f0d1daf938b35911b53c13de36a68ba17d117caba71ea845d0
MD5 2559756cb0a208a1cede56caa1898ca7
BLAKE2b-256 bddb9204cdb1755b3ef3f0d3186f39e04767a55373d19c0c724f0303b3c496a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp39-cp39-win_amd64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pqcrypto-0.4.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 898.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 pqcrypto-0.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 282a6929a1951f7bf032f32457891a0abffda8544ef14e76e51af48e9ee1fa25
MD5 4aa693ff07f8e2a0aec9dfcc76692921
BLAKE2b-256 814aa32e2ea4bfdbd860fc40f13249b2f9d789bc597a5481c3c5bd8b14453529

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp39-cp39-win32.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9e6c727bbcb0f5dd33c4320c0fa656683f0e696ee133f9c5e354273a8f31a74
MD5 81883fe9bf697aa3292faed6980ce285
BLAKE2b-256 5fe0649453e5abd218a571146155ba359391bdc1f3f0f045dedbfa9e429c7539

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d82ca02db848405f00441380b120e85300be141c03633717c202e33ab7a757fd
MD5 228b2c7b552b70f5f3ef340aa8285b02
BLAKE2b-256 26ad416526da81f3d53add3de7df31c6231cf4b202ae0091eb821739733cdbaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c67601e53b6d05707043f82b4543c40fcb0e502b38a9a5b3b8fcb520eec27982
MD5 50acc03116bea1b71f7587c325d1e6dc
BLAKE2b-256 b6335929f43d994622ba36094ade6e35100f720897e22e0cc5e6f1cf54069590

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8d9e7fb96b7e57df2efe065057af67293ee8170f24e82ea68c96b336610fd08d
MD5 6c25b2c73f0397f7ab1041b6ca0c83e2
BLAKE2b-256 7ba6d33d41e51797917a5bf3ff423b634cd61706a5cc88ee2852de5dc9ec12e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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

File details

Details for the file pqcrypto-0.4.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pqcrypto-0.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f463bdeb78f23d158c3e0f87f15bc084be3135c101538d43c03b29298232cea
MD5 6c8601cd1f509f340acec7833306227d
BLAKE2b-256 60cff13c336a9dbf39168acee197e0bd389e92369b7b4bee8328d5cad20c0dee

See more details on using hashes here.

Provenance

The following attestation bundles were made for pqcrypto-0.4.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: ci.yml on backbone-hq/pqcrypto

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