pub struct Sha512Engine { /* private fields */ }Expand description
SHA-512 hash engine with SIMD support
Similar to SHA2-256 but produces 512-bit (64-byte) hashes. Provides stronger security margin for applications requiring it.
Implementations§
Source§impl Sha512Engine
impl Sha512Engine
Trait Implementations§
Source§impl Default for Sha512Engine
impl Default for Sha512Engine
Source§impl HashEngine for Sha512Engine
impl HashEngine for Sha512Engine
Auto Trait Implementations§
impl Freeze for Sha512Engine
impl RefUnwindSafe for Sha512Engine
impl Send for Sha512Engine
impl Sync for Sha512Engine
impl Unpin for Sha512Engine
impl UnwindSafe for Sha512Engine
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