diff --git a/Cargo.toml b/Cargo.toml index d70a2c84..efe235d5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,12 +60,12 @@ winter-math = { version = "0.8", default-features = false } winter-utils = { version = "0.8", default-features = false } [dev-dependencies] -rand_chacha = { version = "0.3", default-features = false } criterion = { version = "0.5", features = ["html_reports"] } getrandom = { version = "0.2", features = ["js"] } hex = { version = "0.4", default-features = false, features = ["alloc"] } proptest = "1.4" -rand_utils = { version = "0.8", package = "winter-rand-utils" } +rand_chacha = { version = "0.3", default-features = false } +rand-utils = { version = "0.8", package = "winter-rand-utils" } seq-macro = { version = "0.3" } [build-dependencies] diff --git a/src/dsa/rpo_falcon512/mod.rs b/src/dsa/rpo_falcon512/mod.rs index 58af438d..8d9c1e6f 100644 --- a/src/dsa/rpo_falcon512/mod.rs +++ b/src/dsa/rpo_falcon512/mod.rs @@ -9,9 +9,9 @@ mod keys; mod math; mod signature; +pub use self::keys::{PubKeyPoly, PublicKey, SecretKey}; pub use self::math::Polynomial; -pub use keys::{PublicKey, SecretKey}; -pub use signature::Signature; +pub use self::signature::{Signature, SignatureHeader, SignaturePoly}; // CONSTANTS // ================================================================================================