foundry-mpc-rs 0.1.2

shamir-secret-sharing implementation forked from Lúcás C. Meier's cait_sith protocol and ZcashFoundation's frost
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod compat;
pub mod keyshares;
pub mod math;
pub mod point;
pub mod serde;
pub mod sss;
pub mod sss_ed25519;

#[cfg(test)]
mod tests;

pub use compat::CSCurve;
pub use keyshares::*;
pub use point::*;
pub use sss::*;
pub use sss_ed25519::*;