Chromium Code Reviews| 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 |