CryptoSha384TranscriptProcessor

Trait CryptoSha384TranscriptProcessor 

Source
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§

Source

fn sha384_update(&mut self, _: &[u8])

Update the SHA384 Transcript with the given data

Source

fn sha384_finalize(self) -> [u8; 48]

Finalize the current SHA384 digest

Implementors§