Home
last modified time | relevance | path

Searched refs:decrypt_rtp (Results 1 – 7 of 7) sorted by relevance

/webrtc/srtp/src/context/
H A Dsrtp.rs31 let dst = self.cipher.decrypt_rtp(encrypted, header, roc)?; in decrypt_rtp_with_header()
45 pub fn decrypt_rtp(&mut self, encrypted: &[u8]) -> Result<Bytes> { in decrypt_rtp() method
H A Dsrtp_test.rs109 let result = invalid_context.decrypt_rtp(&out); in test_rtp_invalid_auth()
153 let actual_decrypted = decrypt_context.decrypt_rtp(&encrypted_raw)?; in test_rtp_lifecyle()
H A Dcontext_test.rs265 .decrypt_rtp(&ENCRYPTED_RTP_PACKET) in test_decrypt_rtp()
/webrtc/srtp/src/cipher/
H A Dmod.rs49 fn decrypt_rtp( in decrypt_rtp() method
H A Dcipher_aead_aes_gcm.rs59 fn decrypt_rtp( in decrypt_rtp() method
H A Dcipher_aes_cm_hmac_sha1.rs203 fn decrypt_rtp( in decrypt_rtp() method
/webrtc/srtp/src/session/
H A Dmod.rs144 remote_context.decrypt_rtp(&buf[0..n])? in incoming()