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

Unified Diff: remoting/protocol/ssl_hmac_channel_authenticator.cc

Issue 1262313003: Require ECDHE in the CRD client. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/ssl_hmac_channel_authenticator.cc
diff --git a/remoting/protocol/ssl_hmac_channel_authenticator.cc b/remoting/protocol/ssl_hmac_channel_authenticator.cc
index 5658d5cff17c16b453c000334b518cc367c0656d..367b95b98234a8f887e06477f3c4277e912ad496 100644
--- a/remoting/protocol/ssl_hmac_channel_authenticator.cc
+++ b/remoting/protocol/ssl_hmac_channel_authenticator.cc
@@ -243,7 +243,7 @@ void SslHmacChannelAuthenticator::SecureAndAuthenticate(
ssl_config.cert_io_enabled = false;
ssl_config.rev_checking_enabled = false;
ssl_config.allowed_bad_certs.push_back(cert_and_status);
- ssl_config.require_ecdhe = false;
+ ssl_config.require_ecdhe = true;
net::HostPortPair host_and_port(kSslFakeHostName, 0);
net::SSLClientSocketContext context;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698