use super::*; use crate::error::Result; use util::marshal::*; use bytes::Bytes; impl Context { pub fn decrypt_rtp_with_header( &mut self, encrypted: &[u8], header: &rtp::header::Header, ) -> Result { let roc; { if let Some(state) = self.get_srtp_ssrc_state(header.ssrc) { if let Some(replay_detector) = &mut state.replay_detector { if !replay_detector.check(header.sequence_number as u64) { return Err(Error::SrtpSsrcDuplicated( header.ssrc, header.sequence_number, )); } } roc = state.next_rollover_count(header.sequence_number); } else { return Err(Error::SsrcMissingFromSrtp(header.ssrc)); } } let dst = self.cipher.decrypt_rtp(encrypted, header, roc)?; { if let Some(state) = self.get_srtp_ssrc_state(header.ssrc) { if let Some(replay_detector) = &mut state.replay_detector { replay_detector.accept(); } state.update_rollover_count(header.sequence_number); } } Ok(dst) } /// DecryptRTP decrypts a RTP packet with an encrypted payload pub fn decrypt_rtp(&mut self, encrypted: &[u8]) -> Result { let mut buf = encrypted; let header = rtp::header::Header::unmarshal(&mut buf)?; self.decrypt_rtp_with_header(encrypted, &header) } pub fn encrypt_rtp_with_header( &mut self, plaintext: &[u8], header: &rtp::header::Header, ) -> Result { let roc; { if let Some(state) = self.get_srtp_ssrc_state(header.ssrc) { roc = state.next_rollover_count(header.sequence_number); } else { return Err(Error::SsrcMissingFromSrtp(header.ssrc)); } } let dst = self .cipher .encrypt_rtp(&plaintext[header.marshal_size()..], header, roc)?; { if let Some(state) = self.get_srtp_ssrc_state(header.ssrc) { state.update_rollover_count(header.sequence_number); } } Ok(dst) } /// EncryptRTP marshals and encrypts an RTP packet, writing to the dst buffer provided. /// If the dst buffer does not have the capacity to hold `len(plaintext) + 10` bytes, a new one will be allocated and returned. pub fn encrypt_rtp(&mut self, plaintext: &[u8]) -> Result { let mut buf = plaintext; let header = rtp::header::Header::unmarshal(&mut buf)?; self.encrypt_rtp_with_header(plaintext, &header) } }