pub struct Sha3_512Engine;Expand description
SHA3-512 hash engine
SHA3-512 provides 512-bit (64-byte) output using the Keccak sponge construction. Offers higher security margin than SHA3-256 for applications requiring it.
Implementations§
Trait Implementations§
Source§impl Default for Sha3_512Engine
impl Default for Sha3_512Engine
Source§impl HashEngine for Sha3_512Engine
impl HashEngine for Sha3_512Engine
Auto Trait Implementations§
impl Freeze for Sha3_512Engine
impl RefUnwindSafe for Sha3_512Engine
impl Send for Sha3_512Engine
impl Sync for Sha3_512Engine
impl Unpin for Sha3_512Engine
impl UnwindSafe for Sha3_512Engine
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more