2023-11-26 20:18:22 +00:00
|
|
|
[package]
|
2024-01-11 23:49:25 +00:00
|
|
|
name = "fips205"
|
2023-11-26 20:29:29 +00:00
|
|
|
version = "0.1.1"
|
2023-11-26 20:18:22 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
license = "MIT OR Apache-2.0"
|
2023-11-26 20:27:17 +00:00
|
|
|
description = "FIPS 205 (draft): Stateless Hash-Based Digital Signature Standard"
|
2024-01-11 23:49:25 +00:00
|
|
|
repository = "https://github.com/integritychain/fips205"
|
2023-11-26 20:18:22 +00:00
|
|
|
rust-version = "1.73"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-13 22:45:33 +00:00
|
|
|
zeroize = { version = "1.7.0", features = ["zeroize_derive"] }
|
2024-01-11 23:49:25 +00:00
|
|
|
rand_core = { version = "0.6.4", default-features = false }
|
2024-01-12 23:22:21 +00:00
|
|
|
sha3 = { version = "0.10.8", default-features = false }
|
2024-01-13 22:45:33 +00:00
|
|
|
generic-array = { version = "1.0.0", features=["const-default", "zeroize"] }
|
2024-01-22 00:15:52 +00:00
|
|
|
hex = "0.4.3"
|
2024-01-11 23:49:25 +00:00
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
default = ["default-rng", "slh_dsa_sha2_128s", "slh_dsa_shake_128s", "slh_dsa_sha2_128f", "slh_dsa_shake_128f",
|
|
|
|
|
"slh_dsa_sha2_192s", "slh_dsa_shake_192s", "slh_dsa_sha2_192f", "slh_dsa_shake_192f",
|
|
|
|
|
"slh_dsa_sha2_256s", "slh_dsa_shake_256s", "slh_dsa_sha2_256f", "slh_dsa_shake_256f"]
|
|
|
|
|
default-rng = ["rand_core/getrandom"]
|
|
|
|
|
slh_dsa_sha2_128s = []
|
|
|
|
|
slh_dsa_shake_128s = []
|
|
|
|
|
slh_dsa_sha2_128f = []
|
|
|
|
|
slh_dsa_shake_128f = []
|
|
|
|
|
slh_dsa_sha2_192s = []
|
|
|
|
|
slh_dsa_shake_192s = []
|
|
|
|
|
slh_dsa_sha2_192f = []
|
|
|
|
|
slh_dsa_shake_192f = []
|
|
|
|
|
slh_dsa_sha2_256s = []
|
|
|
|
|
slh_dsa_shake_256s = []
|
|
|
|
|
slh_dsa_sha2_256f = []
|
|
|
|
|
slh_dsa_shake_256f = []
|
2024-01-22 00:15:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
rand = "0.8.5"
|