pub trait Hash { type Input; type Output; // Required method fn hash(&self, input: &[Self::Input]) -> Result<Self::Output, Error>; }
A trait for a hash function.
Returns the hash of the given input.