//! Driver for the FROST Ed25519 protocol.
use ;
pub use KeyGenDriver;
pub use SignatureDriver;
/// Participant in the protocol.
pub type Participant = crateParticipant;
/// Options for each party.
pub type PartyOptions =
cratePartyOptions;
/// Key share for this protocol.
pub type KeyShare = ;
/// Signature for this protocol.
pub type Signature = Signature;
const ROUND_1: u8 = 1;
const ROUND_2: u8 = 2;
const ROUND_3: u8 = 3;