Add dealer key generation crate

This commit is contained in:
Luke Parker
2025-08-18 02:13:12 -04:00
parent cfce2b26e2
commit b6edc94bcd
13 changed files with 170 additions and 53 deletions

View File

@@ -31,6 +31,7 @@ schnorr-signatures = { path = "../../crypto/schnorr", default-features = false }
dkg = { path = "../../crypto/dkg", default-features = false }
dkg-recovery = { path = "../../crypto/dkg/recovery", default-features = false }
dkg-dealer = { path = "../../crypto/dkg/dealer", default-features = false }
dkg-musig = { path = "../../crypto/dkg/musig", default-features = false }
# modular-frost = { path = "../../crypto/frost", default-features = false }
# frost-schnorrkel = { path = "../../crypto/schnorrkel", default-features = false }

View File

@@ -14,6 +14,7 @@ pub use schnorr_signatures;
pub use dkg;
pub use dkg_recovery;
pub use dkg_dealer;
pub use dkg_musig;
/*
pub use modular_frost;