Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Side by Side Diff: webrtc/base/sslstreamadapter_unittest.cc

Issue 1550773002: Update with new default boringssl no-aes cipher suites. Re-enable tests. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Revert to patchset #1 Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/base/opensslstreamadapter.cc ('k') | webrtc/p2p/base/dtlstransportchannel_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2011 The WebRTC Project Authors. All rights reserved. 2 * Copyright 2011 The WebRTC Project Authors. All rights reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 1133 matching lines...) Expand 10 before | Expand all | Expand 10 after
1144 // parametrization is sufficient. 1144 // parametrization is sufficient.
1145 INSTANTIATE_TEST_CASE_P( 1145 INSTANTIATE_TEST_CASE_P(
1146 SSLStreamAdapterTestsTLS, 1146 SSLStreamAdapterTestsTLS,
1147 SSLStreamAdapterTestTLS, 1147 SSLStreamAdapterTestTLS,
1148 Combine(Values(rtc::KeyParams::RSA(1024, 65537), 1148 Combine(Values(rtc::KeyParams::RSA(1024, 65537),
1149 rtc::KeyParams::RSA(1152, 65537), 1149 rtc::KeyParams::RSA(1152, 65537),
1150 rtc::KeyParams::ECDSA(rtc::EC_NIST_P256)), 1150 rtc::KeyParams::ECDSA(rtc::EC_NIST_P256)),
1151 Values(rtc::KeyParams::RSA(1024, 65537), 1151 Values(rtc::KeyParams::RSA(1024, 65537),
1152 rtc::KeyParams::RSA(1152, 65537), 1152 rtc::KeyParams::RSA(1152, 65537),
1153 rtc::KeyParams::ECDSA(rtc::EC_NIST_P256)))); 1153 rtc::KeyParams::ECDSA(rtc::EC_NIST_P256))));
1154
1155 #if !defined(MEMORY_SANITIZER)
1156 // Fails under MemorySanitizer:
1157 // See https://code.google.com/p/webrtc/issues/detail?id=5381.
1158 INSTANTIATE_TEST_CASE_P( 1154 INSTANTIATE_TEST_CASE_P(
1159 SSLStreamAdapterTestsDTLS, 1155 SSLStreamAdapterTestsDTLS,
1160 SSLStreamAdapterTestDTLS, 1156 SSLStreamAdapterTestDTLS,
1161 Combine(Values(rtc::KeyParams::RSA(1024, 65537), 1157 Combine(Values(rtc::KeyParams::RSA(1024, 65537),
1162 rtc::KeyParams::RSA(1152, 65537), 1158 rtc::KeyParams::RSA(1152, 65537),
1163 rtc::KeyParams::ECDSA(rtc::EC_NIST_P256)), 1159 rtc::KeyParams::ECDSA(rtc::EC_NIST_P256)),
1164 Values(rtc::KeyParams::RSA(1024, 65537), 1160 Values(rtc::KeyParams::RSA(1024, 65537),
1165 rtc::KeyParams::RSA(1152, 65537), 1161 rtc::KeyParams::RSA(1152, 65537),
1166 rtc::KeyParams::ECDSA(rtc::EC_NIST_P256)))); 1162 rtc::KeyParams::ECDSA(rtc::EC_NIST_P256))));
1167 #endif
OLDNEW
« no previous file with comments | « webrtc/base/opensslstreamadapter.cc ('k') | webrtc/p2p/base/dtlstransportchannel_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698