Chromium Code Reviews| Index: net/ssl/ssl_info.h |
| diff --git a/net/ssl/ssl_info.h b/net/ssl/ssl_info.h |
| index 3f1dd2df4e1ed3265e8bab76c44fb37383ffc19d..00a8815c79c69be30b0450d23bb3a5dd08c5e52a 100644 |
| --- a/net/ssl/ssl_info.h |
| +++ b/net/ssl/ssl_info.h |
| @@ -10,7 +10,12 @@ |
| #include "base/memory/ref_counted.h" |
| #include "net/base/net_export.h" |
| #include "net/cert/cert_status_flags.h" |
| +#include "net/cert/sct_status_flags.h" |
| #include "net/cert/x509_cert_types.h" |
| +#include "net/ssl/signed_certificate_timestamp_and_status.h" |
| + |
| +class Pickle; |
| +class PickleIterator; |
| namespace net { |
| @@ -74,6 +79,10 @@ class NET_EXPORT SSLInfo { |
| // The hashes, in several algorithms, of the SubjectPublicKeyInfos from |
| // each certificate in the chain. |
| HashValueVector public_key_hashes; |
| + |
| + // List of SignedCertificateTimestamps and their corresponding validation |
| + // status. |
| + SignedCertificateTimestampAndStatusList signed_certificate_timestamps; |
|
wtc
2013/11/28 01:28:02
Another way to store the SCTs in an SSLInfo is to
alcutter
2013/11/28 12:08:19
Spoke with Eran about this, we figured that it's b
wtc
2013/11/28 16:15:07
Good. Thanks.
Another idea I considered would be
alcutter
2013/11/28 16:42:18
Yeah, that could be a little surprising.
|
| }; |
| } // namespace net |