pub trait Hash<D>: Sizedwhere
D: Digest,{
// Required method
fn hash(self) -> GenericArray<u8, <D as OutputSizeUser>::OutputSize>;
}
Expand description
Trait to compute a SHA-2 hash using the digest type D
Required Methods§
Sourcefn hash(self) -> GenericArray<u8, <D as OutputSizeUser>::OutputSize>
fn hash(self) -> GenericArray<u8, <D as OutputSizeUser>::OutputSize>
Compute the SHA-2 hash of this value
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.