pub trait HashUncompressed { type Input; type Output; fn hash_uncompressed( &self, input: &[Self::Input] ) -> Result<Self::Output, Error>; }
A trait for a hash function of an uncompressed variant.
Returns the hash of the given input.