Rename FROST's official package name and update documentation

This commit is contained in:
Luke Parker 2022-06-19 05:21:22 -04:00
parent 06e37623d0
commit b4c1adcdfb
No known key found for this signature in database
GPG key ID: F9F1386DB1E119B6
4 changed files with 11 additions and 6 deletions

View file

@ -24,7 +24,7 @@ group = { version = "0.12", optional = true }
dalek-ff-group = { path = "../../crypto/dalek-ff-group", optional = true } dalek-ff-group = { path = "../../crypto/dalek-ff-group", optional = true }
transcript = { path = "../../crypto/transcript", optional = true } transcript = { path = "../../crypto/transcript", optional = true }
frost = { path = "../../crypto/frost", features = ["ed25519"], optional = true } frost = { package = "modular-frost", path = "../../crypto/frost", features = ["ed25519"], optional = true }
monero = "0.16" monero = "0.16"

View file

@ -1,9 +1,11 @@
[package] [package]
name = "frost" name = "modular-frost"
version = "0.1.0" version = "0.1.0"
description = "Implementation of FROST over ff/group" description = "Modular implementation of FROST over ff/group"
license = "MIT" license = "MIT"
repository = "https://github.com/serai-dex/serai"
authors = ["Luke Parker <lukeparker5132@gmail.com>"] authors = ["Luke Parker <lukeparker5132@gmail.com>"]
keywords = ["frost", "multisig", "threshold"]
edition = "2021" edition = "2021"
[dependencies] [dependencies]

View file

@ -1,3 +1,6 @@
# FROST # Modular FROST
Implementation of FROST for any curve with a ff/group API. A modular implementation of FROST for any curve with a ff/group API. Notably,
beyond curve modularity, custom algorithms may be specified providing support
for privacy coins. The provided Schnorr algorithm also has a modular HRAM due
to the variety in existence, enabling integration with existing systems.

View file

@ -20,7 +20,7 @@ blake2 = "0.10"
transcript = { path = "../crypto/transcript" } transcript = { path = "../crypto/transcript" }
dalek-ff-group = { path = "../crypto/dalek-ff-group" } dalek-ff-group = { path = "../crypto/dalek-ff-group" }
frost = { path = "../crypto/frost" } frost = { package = "modular-frost", path = "../crypto/frost" }
monero = { version = "0.16", features = ["experimental"] } monero = { version = "0.16", features = ["experimental"] }
monero-serai = { path = "../coins/monero", features = ["multisig"] } monero-serai = { path = "../coins/monero", features = ["multisig"] }