pub struct Digest { /* fields omitted */ }
Expand description
The digest struct for stateful hashing.
Create a new digest for the given mode alg
.
Update the hash state.
Modifies self
and doesn’t return anything but an Error
in case the
update fails.
Finish the hash computation.
Returns the digest or an Error
.
The struct can not be re-used after this!
impl<T> Any for T where
T: 'static + ?Sized,
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.
impl<V, T> VZip<V> for T where
V: MultiLane<T>,