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]>).

Required Methods

Creates a commitment to a byte representation of a given message

Provided Methods

Verifies commitment against the message; default implementation just repeats the commitment to the message and check it against the self.

Implementations on Foreign Types

Implementors