Home
last modified time | relevance | path

Searched refs:send_cipher_suite_ (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/pc/
Dsrtp_filter.cc185 send_cipher_suite_ = absl::nullopt; in ResetParams()
202 send_cipher_suite_ = rtc::SrtpCryptoSuiteFromName(send_params.cipher_suite); in ApplySendParams()
203 if (send_cipher_suite_ == rtc::SRTP_INVALID_CRYPTO_SUITE) { in ApplySendParams()
211 if (!rtc::GetSrtpKeyAndSaltLengths(*send_cipher_suite_, &send_key_len, in ApplySendParams()
Dsrtp_filter.h84 absl::optional<int> send_cipher_suite() { return send_cipher_suite_; } in send_cipher_suite()
137 absl::optional<int> send_cipher_suite_; variable
Dsrtp_transport.cc52 send_cipher_suite_ = rtc::SrtpCryptoSuiteFromName(params.cipher_suite); in SetSrtpSendKey()
53 if (*send_cipher_suite_ == rtc::SRTP_INVALID_CRYPTO_SUITE) { in SetSrtpSendKey()
59 if (!rtc::GetSrtpKeyAndSaltLengths(*send_cipher_suite_, &send_key_len, in SetSrtpSendKey()
481 if (!send_cipher_suite_ || !recv_cipher_suite_) { in MaybeSetKeyParams()
485 return SetRtpParams(*send_cipher_suite_, send_key_.data(), in MaybeSetKeyParams()
Dsrtp_transport.h158 absl::optional<int> send_cipher_suite_; variable