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

Unified Diff: net/ssl/ssl_info.h

Issue 1360633002: Implement Token Binding negotiation TLS extension (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@test-server-flags
Patch Set: rebase Created 5 years, 3 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/ssl/ssl_info.h
diff --git a/net/ssl/ssl_info.h b/net/ssl/ssl_info.h
index 28ce82d0ae6cb1ddf7a20f6ab9fd47dfe6075903..f22adaf0df6be82090c4df34365bd49eab10f386 100644
--- a/net/ssl/ssl_info.h
+++ b/net/ssl/ssl_info.h
@@ -82,6 +82,10 @@ class NET_EXPORT SSLInfo {
// True if a channel ID was sent to the server.
bool channel_id_sent;
+ // True if Token Binding was negotiated with the server and we agreed on a
+ // version and key params.
+ bool token_binding_negotiated;
davidben 2015/09/25 21:51:50 We'll need the TB type, won't we? The HTTP layer i
nharper 2015/09/28 21:43:39 The http layer needs the TokenBinding (i.e. public
davidben 2015/10/01 16:15:17 I'm not sure I follow. My understanding here is th
nharper 2015/10/01 19:12:23 The draft spec for Token Binding over HTTP (https:
davidben 2015/10/01 19:20:12 Due to CORS, we end up in situations where we must
+
HandshakeType handshake_type;
// The hashes, in several algorithms, of the SubjectPublicKeyInfos from

Powered by Google App Engine
This is Rietveld 408576698