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

Unified Diff: net/socket/ssl_client_socket_impl.cc

Issue 2083743002: Adding TLS 1.3 constants (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing max version constraints. Created 4 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 | « components/ssl_config/ssl_config_switches.cc ('k') | net/ssl/openssl_ssl_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/ssl_client_socket_impl.cc
diff --git a/net/socket/ssl_client_socket_impl.cc b/net/socket/ssl_client_socket_impl.cc
index 5cb4fbb552f17b82ccab3ccb383f84c521905352..f665ddf1ebc27161a5f9ab85ef0c68f5502e150e 100644
--- a/net/socket/ssl_client_socket_impl.cc
+++ b/net/socket/ssl_client_socket_impl.cc
@@ -2112,6 +2112,9 @@ std::string SSLClientSocketImpl::GetSessionCacheKey() const {
case SSL_PROTOCOL_VERSION_TLS1_2:
result.append("tls1.2");
break;
+ case SSL_PROTOCOL_VERSION_TLS1_3:
+ result.append("tls1.3");
+ break;
default:
NOTREACHED();
}
« no previous file with comments | « components/ssl_config/ssl_config_switches.cc ('k') | net/ssl/openssl_ssl_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698