mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-17 09:27:36 +00:00
c90e957e6a
Saves ~8% during FROST key gen, even with dropping a vartime for a constant time (as needed to be secure), as the new batch verifier is used where batch verification previously wasn't. The new multiexp API itself also offered a very slight performance boost, which may solely be a measurement error. Handles most of https://github.com/serai-dex/serai/issues/10. The blame function isn't binary searched nor randomly sorted yet.
25 lines
480 B
TOML
25 lines
480 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"
|
|
|
|
blake2 = "0.10"
|
|
transcript = { path = "../transcript" }
|
|
|
|
multiexp = { path = "../multiexp", features = ["batch"] }
|
|
|
|
[dev-dependencies]
|
|
rand = "0.8"
|
|
sha2 = "0.10"
|
|
k256 = { version = "0.10", features = ["arithmetic"] }
|