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

Side by Side Diff: net/cert/sct_status_flags.h

Issue 2294373002: Certificate Transparency: Remove the obsolete invalid sct status. (Closed)
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_CERT_SCT_STATUS_FLAGS_H_ 5 #ifndef NET_CERT_SCT_STATUS_FLAGS_H_
6 #define NET_CERT_SCT_STATUS_FLAGS_H_ 6 #define NET_CERT_SCT_STATUS_FLAGS_H_
7 7
8 namespace net { 8 namespace net {
9 9
10 namespace ct { 10 namespace ct {
11 11
12 // The possible verification statuses for a SignedCertificateTimestamp. 12 // The possible verification statuses for a SignedCertificateTimestamp.
13 // Note: The numeric values are used within histograms and should not change 13 // Note: The numeric values are used within histograms and should not change
14 // or be re-assigned. 14 // or be re-assigned.
15 enum SCTVerifyStatus { 15 enum SCTVerifyStatus {
16 // Not a real status, this just prevents a default int value from being 16 // Not a real status, this just prevents a default int value from being
17 // mis-interpreseted as a valid status. 17 // mis-interpreseted as a valid status.
18 // Also used to count SCTs that cannot be decoded in the histogram. 18 // Also used to count SCTs that cannot be decoded in the histogram.
19 SCT_STATUS_NONE = 0, 19 SCT_STATUS_NONE = 0,
20 20
21 // The SCT is from an unknown log, so we cannot verify its signature. 21 // The SCT is from an unknown log, so we cannot verify its signature.
22 SCT_STATUS_LOG_UNKNOWN = 1, 22 SCT_STATUS_LOG_UNKNOWN = 1,
23 23
24 // This value is deprecated and should not be used. It has been split 24 // SCTVerifyStatus=2 used to represent SCT_STATUS_INVALID, which has now been
25 // into INVALID_SIGNATURE and INVALID_TIMESTAMP to represent the 25 // split into INVALID_SIGNATURE and INVALID_TIMESTAMP to represent the
26 // different reasons an SCT could be invalid. Though it is no longer 26 // different reasons an SCT could be invalid.
Ryan Sleevi 2016/09/01 00:01:29 // Obsolete. Kept here to avoid reuse. // SCT_STAT
Eran Messeri 2016/09/01 14:16:34 Done.
27 // in use, it is preserved here because it may be present in
28 // serialized messages.
29 SCT_STATUS_INVALID = 2,
30 27
31 // The SCT is from a known log, and the signature is valid. 28 // The SCT is from a known log, and the signature is valid.
32 SCT_STATUS_OK = 3, 29 SCT_STATUS_OK = 3,
33 30
34 // The SCT is from a known log, but the signature is invalid. 31 // The SCT is from a known log, but the signature is invalid.
35 SCT_STATUS_INVALID_SIGNATURE = 4, 32 SCT_STATUS_INVALID_SIGNATURE = 4,
36 33
37 // The SCT is from a known log, but the timestamp is in the future. 34 // The SCT is from a known log, but the timestamp is in the future.
38 SCT_STATUS_INVALID_TIMESTAMP = 5, 35 SCT_STATUS_INVALID_TIMESTAMP = 5,
39 36
40 // Used to bound the enum values. Since this enum is passed over IPC, 37 // Used to bound the enum values. Since this enum is passed over IPC,
41 // the last value must be a valid one (rather than one past a valid one). 38 // the last value must be a valid one (rather than one past a valid one).
42 SCT_STATUS_MAX = SCT_STATUS_INVALID_TIMESTAMP, 39 SCT_STATUS_MAX = SCT_STATUS_INVALID_TIMESTAMP,
43 }; 40 };
44 41
45 } // namespace ct 42 } // namespace ct
46 43
47 } // namespace net 44 } // namespace net
48 45
49 #endif // NET_CERT_SCT_STATUS_FLAGS_H_ 46 #endif // NET_CERT_SCT_STATUS_FLAGS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698