1 2 3 4 5 6 7 8 9 10
//! FROST protocol implementations. mod error; #[cfg(feature = "frost-ed25519")] pub mod ed25519; pub use error::Error; /// Result type for the FROST protocol. pub type Result<T> = std::result::Result<T, Error>;