pub struct Sha384Hasher { /* private fields */ }Expand description
RustCrypto Sha384Hasher
Implementations§
Source§impl Sha384Hasher
impl Sha384Hasher
pub fn sha384_init() -> Self
Trait Implementations§
Source§impl CryptoSha384TranscriptProcessor for Sha384Hasher
impl CryptoSha384TranscriptProcessor for Sha384Hasher
Source§fn sha384_update(&mut self, d: &[u8])
fn sha384_update(&mut self, d: &[u8])
Update the SHA384 Transcript with the given data
Source§fn sha384_finalize(self) -> [u8; 48]
fn sha384_finalize(self) -> [u8; 48]
Finalize the current SHA384 digest
Auto Trait Implementations§
impl Freeze for Sha384Hasher
impl RefUnwindSafe for Sha384Hasher
impl Send for Sha384Hasher
impl Sync for Sha384Hasher
impl Unpin for Sha384Hasher
impl UnwindSafe for Sha384Hasher
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