//! Distributed Key Generation (DKG), Resharing, Signatures, and Threshold Signatures over the BLS12-381 curve. //! //! # Features //! //! This crate has the following features: //! //! - `portable`: Enables `portable` feature on `blst` (). pub mod certificate; #[cfg(feature = "std")] pub mod dkg; pub mod primitives; mod scheme; pub mod tle; pub use scheme::{Batch, PrivateKey, PublicKey, Signature};