Trait commit_verify::commit_verify::CommitVerify
source · [−]pub trait CommitVerify<Msg, Protocol> where
Self: Eq + Sized,
Protocol: CommitmentProtocol, {
fn commit(msg: &Msg) -> Self;
fn verify(&self, msg: &Msg) -> bool { ... }
}Expand description
Trait for commit-verify scheme. A message for the commitment may be any
structure that can be represented as a byte array (i.e. implements
AsRef<[u8]>).