pub trait PrfSecret: Send + Sync {
// Required method
fn prf(&self, output: &mut [u8], label: &[u8], seed: &[u8]);
}Expand description
An instantiation of the TLS1.2 PRF with a fixed hash function and master secret.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".