Struct blake2s_simd::Hash [−][src]
pub struct Hash { /* fields omitted */ }
A finalized BLAKE2 hash, with constant-time equality.
Implementations
impl Hash
[src]
impl Hash
[src]pub fn as_bytes(&self) -> &[u8]
[src]
Convert the hash to a byte slice. Note that if you’re using BLAKE2 as a MAC, you need
constant time equality, which &[u8]
doesn’t provide.
pub fn as_array(&self) -> &[u8; 32]
[src]
Convert the hash to a byte array. Note that if you’re using BLAKE2 as a
MAC, you need constant time equality, which arrays don’t provide. This
panics in debug mode if the length of the hash isn’t OUTBYTES
.
pub fn to_hex(&self) -> ArrayString<[u8; 64]>
[src]
Convert the hash to a lowercase hexadecimal
ArrayString
.
Trait Implementations
impl PartialEq<[u8]> for Hash
[src]
impl PartialEq<[u8]> for Hash
[src]This implementation is constant time, if the slice is the same length as the hash.
impl PartialEq<Hash> for Hash
[src]
impl PartialEq<Hash> for Hash
[src]This implementation is constant time, if the two hashes are the same length.