pub trait CommitUncompressed {
    type Input;
    type Output;
    type Randomizer;

    // Required method
    fn commit_uncompressed(
        &self,
        input: &[Self::Input],
        randomizer: &Self::Randomizer
    ) -> Result<Self::Output>;
}
Expand description

A trait for a commitment scheme.

Required Associated Types§

Required Methods§

source

fn commit_uncompressed( &self, input: &[Self::Input], randomizer: &Self::Randomizer ) -> Result<Self::Output>

Returns the commitment to the given input and randomizer.

Implementors§