Struct webrtc_srtp::context::Context [−][src]
pub struct Context { /* fields omitted */ }
Expand description
Context represents a SRTP cryptographic context Context can only be used for one-way operations it must either used ONLY for encryption or ONLY for decryption
Implementations
DecryptRTCP decrypts a RTCP packet with an encrypted payload
DecryptRTP decrypts a RTP packet with an encrypted payload
pub fn new(
master_key: &[u8],
master_salt: &[u8],
profile: ProtectionProfile,
srtp_ctx_opt: Option<ContextOption>,
srtcp_ctx_opt: Option<ContextOption>
) -> Result<Context>
pub fn new(
master_key: &[u8],
master_salt: &[u8],
profile: ProtectionProfile,
srtp_ctx_opt: Option<ContextOption>,
srtcp_ctx_opt: Option<ContextOption>
) -> Result<Context>
CreateContext creates a new SRTP Context