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

Unified Diff: net/socket/ssl_client_socket_nss.cc

Issue 1057733002: Require ECDHE for False Start. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix components build Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « DEPS ('k') | net/socket/ssl_client_socket_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/ssl_client_socket_nss.cc
diff --git a/net/socket/ssl_client_socket_nss.cc b/net/socket/ssl_client_socket_nss.cc
index 547ab7650c5d74a936805dcf28311c6a62d0603f..3414ba0de21e9e8681ca44c2c66568f5c73ebd41 100644
--- a/net/socket/ssl_client_socket_nss.cc
+++ b/net/socket/ssl_client_socket_nss.cc
@@ -1621,7 +1621,7 @@ SECStatus SSLClientSocketNSS::Core::CanFalseStartCallback(
SSL_GetChannelInfo(socket, &channel_info, sizeof(channel_info));
if (ok != SECSuccess || channel_info.length != sizeof(channel_info) ||
channel_info.protocolVersion < SSL_LIBRARY_VERSION_TLS_1_2 ||
- !IsSecureTLSCipherSuite(channel_info.cipherSuite)) {
+ !IsFalseStartableTLSCipherSuite(channel_info.cipherSuite)) {
*can_false_start = PR_FALSE;
return SECSuccess;
}
« no previous file with comments | « DEPS ('k') | net/socket/ssl_client_socket_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698