Lines Matching refs:Bytes
4 use bytes::{Buf, Bytes, BytesMut};
10 encrypted: Bytes,
11 decrypted: Bytes,
15 static ref RTCP_TEST_MASTER_KEY: Bytes = Bytes::from_static(&[
20 static ref RTCP_TEST_MASTER_SALT: Bytes = Bytes::from_static(&[
28 encrypted: Bytes::from_static(&[
35 decrypted: Bytes::from_static(&[
45 encrypted: Bytes::from_static(&[
52 decrypted: Bytes::from_static(&[
62 encrypted: Bytes::from_static(&[
69 decrypted: Bytes::from_static(&[
79 encrypted: Bytes::from_static(&[
86 decrypted: Bytes::from_static(&[
203 fn get_rtcp_index(encrypted: &Bytes, auth_tag_len: usize) -> u32 { in get_rtcp_index() argument