pub trait HashUncompressed {
    type Input;
    type Output;

    fn hash_uncompressed(&self, input: &[Self::Input]) -> Self::Output;
}
Expand description

A trait for a hash function of an uncompressed variant.

Required Associated Types

Required Methods

Returns the hash of the given input.

Trait Implementations

Returns the number of constants, public inputs, private inputs, and constraints.

Returns the mode of the output.

Implementors