Home
last modified time | relevance | path

Searched refs:Cipher (Results 1 – 4 of 4) sorted by relevance

/webrtc/srtp/src/cipher/
H A Dmod.rs33 pub(crate) trait Cipher { interface
H A Dcipher_aead_aes_gcm.rs8 use super::Cipher;
27 impl Cipher for CipherAeadAesGcm {
H A Dcipher_aes_cm_hmac_sha1.rs1 use super::Cipher;
156 impl Cipher for CipherAesCmHmacSha1 {
/webrtc/srtp/src/context/
H A Dmod.rs103 cipher: Box<dyn Cipher + Send>,
130 let cipher: Box<dyn Cipher + Send> = match profile { in new()