xref: /aosp_15_r20/external/cronet/third_party/boringssl/src/pki/ocsp_revocation_status.h (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1 // Copyright 2016 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef BSSL_PKI_OCSP_REVOCATION_STATUS_H_
6 #define BSSL_PKI_OCSP_REVOCATION_STATUS_H_
7 
8 namespace bssl {
9 
10 // This value is histogrammed, so do not re-order or change values, and add
11 // new values at the end.
12 enum class OCSPRevocationStatus {
13   GOOD = 0,
14   REVOKED = 1,
15   UNKNOWN = 2,
16   MAX_VALUE = UNKNOWN
17 };
18 
19 }  // namespace bssl
20 
21 #endif  // BSSL_PKI_OCSP_REVOCATION_STATUS_H_
22