pub trait CryptoSha384TranscriptProcessor {
// Required methods
fn sha384_update(&mut self, _: &[u8]);
fn sha384_finalize(self) -> [u8; 48];
}Expand description
Transcript processor used to hash handshakes. Typically implemented by the crypto provider.
Required Methods§
Sourcefn sha384_update(&mut self, _: &[u8])
fn sha384_update(&mut self, _: &[u8])
Update the SHA384 Transcript with the given data
Sourcefn sha384_finalize(self) -> [u8; 48]
fn sha384_finalize(self) -> [u8; 48]
Finalize the current SHA384 digest