mirror of
https://github.com/serai-dex/serai.git
synced 2025-01-10 04:44:40 +00:00
7b4c5dbe52
It was never used as we derive entropy via the other fields in the transcript, and explicitly add fields directly as needed for entropy. Also drops an unused crate and corrects a bug in FROST's Schnorr implementation which used the Group's generator, instead of the Curve's. Also updates the Monero crate's description.
24 lines
464 B
TOML
24 lines
464 B
TOML
[package]
|
|
name = "frost"
|
|
version = "0.1.0"
|
|
description = "Implementation of FROST over ff/group"
|
|
license = "MIT"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
thiserror = "1"
|
|
|
|
rand_core = "0.6"
|
|
|
|
ff = "0.11"
|
|
group = "0.11"
|
|
|
|
transcript = { path = "../transcript" }
|
|
|
|
multiexp = { path = "../multiexp", features = ["batch"] }
|
|
|
|
[dev-dependencies]
|
|
rand = "0.8"
|
|
sha2 = "0.10"
|
|
k256 = { version = "0.10", features = ["arithmetic"] }
|