pub trait RTCCryptoProvider: Send + Sync {
// Required methods
fn name(&self) -> &'static str;
fn crypto(&self) -> &dyn RTCCrypto;
fn random(&self) -> &dyn RTCRandom;
}Expand description
A bundle of cryptographic operations and cryptographically secure randomness.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".