Trait snarkvm_console_algorithms::Commit 
pub trait Commit {
    type Input;
    type Output;
    type Randomizer;
    fn commit(
        &self,
        input: &[Self::Input],
        randomizer: &Self::Randomizer
    ) -> Result<Self::Output, Error>;
}Expand description
A trait for a commitment scheme.