Use a SeedableRng for CLSAG multisig signing

This commit is contained in:
Luke Parker
2022-04-28 17:12:54 -04:00
parent 20f214c300
commit 7ed1fca270
4 changed files with 30 additions and 26 deletions

View File

@@ -11,6 +11,7 @@ lazy_static = "1"
thiserror = "1"
rand_core = "0.6"
rand_chacha = { version = "0.3", optional = true }
tiny-keccak = { version = "2.0", features = ["keccak"] }
blake2 = "0.10"
@@ -32,7 +33,7 @@ monero-epee-bin-serde = "1.0"
reqwest = { version = "0.11", features = ["json"] }
[features]
multisig = ["ff", "group", "dalek-ff-group", "frost"]
multisig = ["ff", "group", "dalek-ff-group", "frost", "rand_chacha"]
[dev-dependencies]
rand = "0.8"