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

Unified Diff: net/cert/sct_status_flags.h

Issue 2277653002: Bring back SCT_STATUS_INVALID for cached entries (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: handle INVALID in website settings again Created 4 years, 4 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 | « net/cert/ct_sct_to_string.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/sct_status_flags.h
diff --git a/net/cert/sct_status_flags.h b/net/cert/sct_status_flags.h
index ac0bc7d7e6716793c9911833fc089eff881818a9..a37b09fa26d7876c9c639671f2e00036456ddf80 100644
--- a/net/cert/sct_status_flags.h
+++ b/net/cert/sct_status_flags.h
@@ -21,9 +21,13 @@ enum SCTVerifyStatus {
// The SCT is from an unknown log, so we cannot verify its signature.
SCT_STATUS_LOG_UNKNOWN = 1,
- // SCTVerifyStatus=2 used to represent SCT_STATUS_INVALID, which has now been
- // split into INVALID_SIGNATURE and INVALID_TIMESTAMP to represent the
- // different reasons an SCT could be invalid.
+ // This value is deprecated and should not be used. It has been split
+ // into INVALID_SIGNATURE and INVALID_TIMESTAMP to represent the
+ // different reasons an SCT could be invalid. It is preserved here
+ // because SCTVerifyStatus values are serialized into the disk cache,
+ // so a previously written value of SCT_STATUS_INVALID could be read
+ // out of the disk cache.
Ryan Sleevi 2016/08/24 04:51:13 Layering: net/cert doesn't know about things like
+ SCT_STATUS_INVALID = 2,
// The SCT is from a known log, and the signature is valid.
SCT_STATUS_OK = 3,
« no previous file with comments | « net/cert/ct_sct_to_string.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698