Skip to content

Commit f437698

Browse files
logist322rainliu
authored andcommitted
No logs
1 parent 9634b1a commit f437698

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

srtp/src/cipher/cipher_aes_cm_hmac_sha1.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,6 @@ impl Cipher for CipherAesCmHmacSha1 {
301301
}
302302

303303
fn decrypt_rtcp(&mut self, encrypted: &[u8], srtcp_index: usize, ssrc: u32) -> Result<Bytes> {
304-
println!("encrypted len {:?}", encrypted.len());
305304
if encrypted.len() < self.auth_tag_len() + SRTCP_INDEX_SIZE {
306305
return Err(Error::SrtcpTooSmall(
307306
encrypted.len(),
@@ -333,7 +332,6 @@ impl Cipher for CipherAesCmHmacSha1 {
333332

334333
let cipher_text = &encrypted[..encrypted.len() - self.auth_tag_len()];
335334

336-
println!("cipher_text len {:?}", cipher_text.len());
337335
// Generate the auth tag we expect to see from the ciphertext.
338336
let expected_tag = self.generate_srtcp_auth_tag(cipher_text);
339337

0 commit comments

Comments
 (0)