pqcrypto-sphincsplus-wasi

Crates.iopqcrypto-sphincsplus-wasi
lib.rspqcrypto-sphincsplus-wasi
version0.6.5
sourcesrc
created_at2021-10-13 20:29:48.682084
updated_at2021-10-17 18:45:29.953494
descriptionPost-Quantum Signature Scheme sphincsplus with WASM/WASI support
homepagehttps://github.com/rustpq/
repositoryhttps://github.com/john-sharratt/pqcrypto-wasi
max_upload_size
id464639
size42,943,982
Johnathan Sharratt (john-sharratt)

documentation

README

sphincsplus

This crate contains bindings to the C implementations of the following schemes, from PQClean.

This project packages Post-Quantum cryptographic algorithms that participate in the NIST PQC standardization effort. It is currently a collection of wrappers around C implementations from the PQClean project.

Serialization

If you want serde support, enable the serialization feature.

Included implementations from PQClean

Below is a list of the included schemes and the corresponding implementations sourced from PQClean. The "default" implementation is used in the Rust-friendly interface, alternative implementations are exposed as ffi methods only.

  • sphincs-haraka-128f-robust
    • aesni (if supported)
    • clean (default)
  • sphincs-haraka-128f-simple
    • aesni (if supported)
    • clean (default)
  • sphincs-haraka-128s-robust
    • aesni (if supported)
    • clean (default)
  • sphincs-haraka-128s-simple
    • aesni (if supported)
    • clean (default)
  • sphincs-haraka-192f-robust
    • aesni (if supported)
    • clean (default)
  • sphincs-haraka-192f-simple
    • aesni (if supported)
    • clean (default)
  • sphincs-haraka-192s-robust
    • aesni (if supported)
    • clean (default)
  • sphincs-haraka-192s-simple
    • aesni (if supported)
    • clean (default)
  • sphincs-haraka-256f-robust
    • aesni (if supported)
    • clean (default)
  • sphincs-haraka-256f-simple
    • aesni (if supported)
    • clean (default)
  • sphincs-haraka-256s-robust
    • aesni (if supported)
    • clean (default)
  • sphincs-haraka-256s-simple
    • aesni (if supported)
    • clean (default)
  • sphincs-shake256-128f-robust
    • avx2 (if supported)
    • clean (default)
  • sphincs-shake256-128f-simple
    • avx2 (if supported)
    • clean (default)
  • sphincs-shake256-128s-robust
    • avx2 (if supported)
    • clean (default)
  • sphincs-shake256-128s-simple
    • avx2 (if supported)
    • clean (default)
  • sphincs-shake256-192f-robust
    • avx2 (if supported)
    • clean (default)
  • sphincs-shake256-192f-simple
    • avx2 (if supported)
    • clean (default)
  • sphincs-shake256-192s-robust
    • avx2 (if supported)
    • clean (default)
  • sphincs-shake256-192s-simple
    • avx2 (if supported)
    • clean (default)
  • sphincs-shake256-256f-robust
    • avx2 (if supported)
    • clean (default)
  • sphincs-shake256-256f-simple
    • avx2 (if supported)
    • clean (default)
  • sphincs-shake256-256s-robust
    • avx2 (if supported)
    • clean (default)
  • sphincs-shake256-256s-simple
    • avx2 (if supported)
    • clean (default)
  • sphincs-sha256-128f-robust
    • avx2 (if supported)
    • clean (default)
  • sphincs-sha256-128f-simple
    • avx2 (if supported)
    • clean (default)
  • sphincs-sha256-128s-robust
    • avx2 (if supported)
    • clean (default)
  • sphincs-sha256-128s-simple
    • avx2 (if supported)
    • clean (default)
  • sphincs-sha256-192f-robust
    • avx2 (if supported)
    • clean (default)
  • sphincs-sha256-192f-simple
    • avx2 (if supported)
    • clean (default)
  • sphincs-sha256-192s-robust
    • avx2 (if supported)
    • clean (default)
  • sphincs-sha256-192s-simple
    • avx2 (if supported)
    • clean (default)
  • sphincs-sha256-256f-robust
    • avx2 (if supported)
    • clean (default)
  • sphincs-sha256-256f-simple
    • avx2 (if supported)
    • clean (default)
  • sphincs-sha256-256s-robust
    • avx2 (if supported)
    • clean (default)
  • sphincs-sha256-256s-simple
    • avx2 (if supported)

    • clean (default)

License

The wrappers and wrapper generation scripts in this project are covered by the MIT or Apache 2.0 licenses, at your choice.

The implementations we link to are not, however. Please see the PQClean project for the appropriate licenses.

Commit count: 233

cargo fmt