[][src]Trait accumulator::hash::GeneralHasher

pub trait GeneralHasher: Hasher {
    type Output;
    fn finalize(self) -> Self::Output;
}

Like std::hash::Hasher, but general over output type.

Associated Types

type Output

The associated output type of the Hasher.

Loading content...

Required methods

fn finalize(self) -> Self::Output

Similar to Hasher::finish, but consumes self.

Loading content...

Implementors

impl GeneralHasher for Blake2b[src]

type Output = [u8; 32]

Loading content...