Lines Matching refs:crypto_suites
57 std::vector<int> crypto_suites; in GetSupportedCryptoSuiteNames() local
58 func(&crypto_suites); in GetSupportedCryptoSuiteNames()
59 for (const auto crypto : crypto_suites) { in GetSupportedCryptoSuiteNames()
131 bool CreateMediaCryptos(const std::vector<std::string>& crypto_suites, in CreateMediaCryptos() argument
134 for (std::vector<std::string>::const_iterator it = crypto_suites.begin(); in CreateMediaCryptos()
135 it != crypto_suites.end(); ++it) { in CreateMediaCryptos()
166 void GetSupportedAudioCryptoSuites(std::vector<int>* crypto_suites) { in GetSupportedAudioCryptoSuites() argument
168 crypto_suites->push_back(rtc::SRTP_AES128_CM_SHA1_32); in GetSupportedAudioCryptoSuites()
169 crypto_suites->push_back(rtc::SRTP_AES128_CM_SHA1_80); in GetSupportedAudioCryptoSuites()
179 void GetSupportedVideoCryptoSuites(std::vector<int>* crypto_suites) { in GetSupportedVideoCryptoSuites() argument
180 GetDefaultSrtpCryptoSuites(crypto_suites); in GetSupportedVideoCryptoSuites()
189 void GetSupportedDataCryptoSuites(std::vector<int>* crypto_suites) { in GetSupportedDataCryptoSuites() argument
190 GetDefaultSrtpCryptoSuites(crypto_suites); in GetSupportedDataCryptoSuites()
199 void GetDefaultSrtpCryptoSuites(std::vector<int>* crypto_suites) { in GetDefaultSrtpCryptoSuites() argument
201 crypto_suites->push_back(rtc::SRTP_AES128_CM_SHA1_80); in GetDefaultSrtpCryptoSuites()
754 const std::vector<std::string>& crypto_suites, in CreateMediaContentOffer() argument
786 if (!CreateMediaCryptos(crypto_suites, offer)) { in CreateMediaContentOffer()
1572 std::vector<std::string> crypto_suites; in AddAudioContentForOffer() local
1573 GetSupportedAudioCryptoSuiteNames(&crypto_suites); in AddAudioContentForOffer()
1579 crypto_suites, in AddAudioContentForOffer()
1631 std::vector<std::string> crypto_suites; in AddVideoContentForOffer() local
1632 GetSupportedVideoCryptoSuiteNames(&crypto_suites); in AddVideoContentForOffer()
1638 crypto_suites, in AddVideoContentForOffer()
1695 std::vector<std::string> crypto_suites; in AddDataContentForOffer() local
1707 GetSupportedDataCryptoSuiteNames(&crypto_suites); in AddDataContentForOffer()
1715 crypto_suites, in AddDataContentForOffer()