pub enum Suite {
AesCm128HmacSha1_80,
}Expand description
The crypto suite. Only the default SRTP transform is offered.
Deliberately not an open enum of every suite in the registry. sipx implements one transform; listing suites it cannot perform would produce an offer it could not honour, which is worse than a short list.
Variants§
AesCm128HmacSha1_80
AES-128 counter mode with an 80-bit HMAC-SHA1 tag.
Implementations§
Trait Implementations§
impl Copy for Suite
impl Eq for Suite
impl StructuralPartialEq for Suite
Auto Trait Implementations§
impl Freeze for Suite
impl RefUnwindSafe for Suite
impl Send for Suite
impl Sync for Suite
impl Unpin for Suite
impl UnsafeUnpin for Suite
impl UnwindSafe for Suite
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more