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

Unified Diff: net/socket/ssl_client_socket_pool.cc

Issue 2858693003: Remove the deprecated cipher fallback. (Closed)
Patch Set: rebase Created 3 years, 7 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
Index: net/socket/ssl_client_socket_pool.cc
diff --git a/net/socket/ssl_client_socket_pool.cc b/net/socket/ssl_client_socket_pool.cc
index a557e5be2e850cf3edf8cab9f524229f5ff0f7b0..f10884c40e98355b8ccaf7c25608fbf58e382f8b 100644
--- a/net/socket/ssl_client_socket_pool.cc
+++ b/net/socket/ssl_client_socket_pool.cc
@@ -366,7 +366,6 @@ int SSLConnectJob::DoSSLConnectComplete(int result) {
// errors to ERR_SSL_VERSION_INTERFERENCE, which signals a probable
// version-interfering middlebox.
if (params_->ssl_config().version_max == SSL_PROTOCOL_VERSION_TLS1_3 &&
- !params_->ssl_config().deprecated_cipher_suites_enabled &&
!version_interference_probe_) {
if (result == ERR_CONNECTION_CLOSED || result == ERR_SSL_PROTOCOL_ERROR ||
result == ERR_SSL_VERSION_OR_CIPHER_MISMATCH ||

Powered by Google App Engine
This is Rietveld 408576698