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

Unified Diff: net/ssl/ssl_info.h

Issue 88643002: SignedCertificateTimestamp storing & serialization code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@erans_patches
Patch Set: remove a spurious content:: Created 7 years, 1 month 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 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

Powered by Google App Engine
This is Rietveld 408576698