mpc_driver/frost/ed25519/
mod.rsuse frost_ed25519::keys::{KeyPackage, PublicKeyPackage};
mod key_gen;
mod sign;
pub use key_gen::KeyGenDriver;
pub use sign::SignatureDriver;
pub type Participant = crate::Participant<
ed25519_dalek::SigningKey,
ed25519_dalek::VerifyingKey,
>;
pub type PartyOptions =
crate::PartyOptions<ed25519_dalek::VerifyingKey>;
pub type KeyShare = (KeyPackage, PublicKeyPackage);
pub type Signature = frost_ed25519::Signature;
const ROUND_1: u8 = 1;
const ROUND_2: u8 = 2;
const ROUND_3: u8 = 3;