Trait frost_signer::signing_round::Signable
source · pub trait Signable {
// Required method
fn hash(&self, hasher: &mut Sha256);
// Provided methods
fn sign(&self, private_key: &Scalar) -> Result<Vec<u8>, Error> { ... }
fn verify(&self, signature: &[u8], public_key: &PublicKey) -> bool { ... }
}