Home | History | Annotate | Download | only in media

Lines Matching refs:crypto_suites

57   std::vector<int> crypto_suites;
58 func(&crypto_suites);
59 for (const auto crypto : crypto_suites) {
131 bool CreateMediaCryptos(const std::vector<std::string>& crypto_suites,
134 for (std::vector<std::string>::const_iterator it = crypto_suites.begin();
135 it != crypto_suites.end(); ++it) {
166 void GetSupportedAudioCryptoSuites(std::vector<int>* crypto_suites) {
168 crypto_suites->push_back(rtc::SRTP_AES128_CM_SHA1_32);
169 crypto_suites->push_back(rtc::SRTP_AES128_CM_SHA1_80);
179 void GetSupportedVideoCryptoSuites(std::vector<int>* crypto_suites) {
180 GetDefaultSrtpCryptoSuites(crypto_suites);
189 void GetSupportedDataCryptoSuites(std::vector<int>* crypto_suites) {
190 GetDefaultSrtpCryptoSuites(crypto_suites);
199 void GetDefaultSrtpCryptoSuites(std::vector<int>* crypto_suites) {
201 crypto_suites->push_back(rtc::SRTP_AES128_CM_SHA1_80);
745 // secure_policy), crypto is created (according to crypto_suites). If
754 const std::vector<std::string>& crypto_suites,
786 if (!CreateMediaCryptos(crypto_suites, offer)) {
1020 // created (according to crypto_suites). If add_legacy_stream is
1572 std::vector<std::string> crypto_suites;
1573 GetSupportedAudioCryptoSuiteNames(&crypto_suites);
1579 crypto_suites,
1631 std::vector<std::string> crypto_suites;
1632 GetSupportedVideoCryptoSuiteNames(&crypto_suites);
1638 crypto_suites,
1695 std::vector<std::string> crypto_suites;
1707 GetSupportedDataCryptoSuiteNames(&crypto_suites);
1715 crypto_suites,