Rename sign folder to crypto

Inspired by #3 and #5.
This commit is contained in:
Luke Parker
2022-05-03 00:46:50 -04:00
parent 9ccf683e9d
commit 87f38cafe4
15 changed files with 4 additions and 4 deletions

22
crypto/frost/Cargo.toml Normal file
View File

@@ -0,0 +1,22 @@
[package]
name = "frost"
version = "0.1.0"
description = "Implementation of FROST over ff/group"
license = "MIT"
authors = ["kayabaNerve (Luke Parker) <lukeparker5132@gmail.com>"]
edition = "2021"
[dependencies]
digest = "0.10"
rand_core = "0.6"
ff = "0.11"
group = "0.11"
thiserror = "1"
[dev-dependencies]
rand = "0.8"
sha2 = "0.10"
k256 = { version = "0.10", features = ["arithmetic"] }