-
Notifications
You must be signed in to change notification settings - Fork 588
/
Copy pathpkix_enums.h
209 lines (173 loc) · 6.04 KB
/
pkix_enums.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
/*
* (C) 2013,2023 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_X509_PKIX_ENUMS_H_
#define BOTAN_X509_PKIX_ENUMS_H_
#include <botan/types.h>
#include <string>
namespace Botan {
class Public_Key;
/**
* Certificate validation status code
*/
enum class Certificate_Status_Code {
OK = 0,
VERIFIED = 0,
// Revocation status
OCSP_RESPONSE_GOOD = 1,
OCSP_SIGNATURE_OK = 2,
VALID_CRL_CHECKED = 3,
OCSP_NO_HTTP = 4,
// Warnings
FIRST_WARNING_STATUS = 500,
CERT_SERIAL_NEGATIVE = 500,
DN_TOO_LONG = 501,
OCSP_NO_REVOCATION_URL = 502,
OCSP_SERVER_NOT_AVAILABLE = 503,
TRUSTED_CERT_HAS_EXPIRED = 504,
TRUSTED_CERT_NOT_YET_VALID = 505,
// Errors
FIRST_ERROR_STATUS = 1000,
SIGNATURE_METHOD_TOO_WEAK = 1000,
UNTRUSTED_HASH = 1001,
NO_REVOCATION_DATA = 1002,
NO_MATCHING_CRLDP = 1003,
OCSP_ISSUER_NOT_TRUSTED = 1004,
// Time problems
CERT_NOT_YET_VALID = 2000,
CERT_HAS_EXPIRED = 2001,
OCSP_NOT_YET_VALID = 2002,
OCSP_HAS_EXPIRED = 2003,
CRL_NOT_YET_VALID = 2004,
CRL_HAS_EXPIRED = 2005,
OCSP_IS_TOO_OLD = 2006,
// Chain generation problems
CERT_ISSUER_NOT_FOUND = 3000,
CANNOT_ESTABLISH_TRUST = 3001,
CERT_CHAIN_LOOP = 3002,
CHAIN_LACKS_TRUST_ROOT = 3003,
CHAIN_NAME_MISMATCH = 3004,
// Validation errors
POLICY_ERROR = 4000,
INVALID_USAGE = 4001,
CERT_CHAIN_TOO_LONG = 4002,
CA_CERT_NOT_FOR_CERT_ISSUER = 4003,
NAME_CONSTRAINT_ERROR = 4004,
IPADDR_BLOCK_ERROR = 4011,
ASBLOCKS_ERROR = 4012,
// Revocation errors
CA_CERT_NOT_FOR_CRL_ISSUER = 4005,
OCSP_CERT_NOT_LISTED = 4006,
OCSP_BAD_STATUS = 4007,
// Other problems
CERT_NAME_NOMATCH = 4008,
UNKNOWN_CRITICAL_EXTENSION = 4009,
DUPLICATE_CERT_EXTENSION = 4010,
OCSP_SIGNATURE_ERROR = 4501,
OCSP_ISSUER_NOT_FOUND = 4502,
OCSP_RESPONSE_MISSING_KEYUSAGE = 4503,
OCSP_RESPONSE_INVALID = 4504,
EXT_IN_V1_V2_CERT = 4505,
DUPLICATE_CERT_POLICY = 4506,
V2_IDENTIFIERS_IN_V1_CERT = 4507,
// Hard failures
CERT_IS_REVOKED = 5000,
CRL_BAD_SIGNATURE = 5001,
SIGNATURE_ERROR = 5002,
CERT_PUBKEY_INVALID = 5003,
SIGNATURE_ALGO_UNKNOWN = 5004,
SIGNATURE_ALGO_BAD_PARAMS = 5005
};
/**
* Convert a status code to a human readable diagnostic message
* @param code the certifcate status
* @return string literal constant, or nullptr if code unknown
*/
BOTAN_PUBLIC_API(2, 0) const char* to_string(Certificate_Status_Code code);
/**
* X.509v3 Key Constraints.
* If updating update copy in ffi.h
*/
class BOTAN_PUBLIC_API(3, 0) Key_Constraints {
public:
enum Bits : uint32_t {
None = 0,
DigitalSignature = 1 << 15,
NonRepudiation = 1 << 14,
KeyEncipherment = 1 << 13,
DataEncipherment = 1 << 12,
KeyAgreement = 1 << 11,
KeyCertSign = 1 << 10,
CrlSign = 1 << 9,
EncipherOnly = 1 << 8,
DecipherOnly = 1 << 7,
// Deprecated SHOUTING_CASE names for Key_Constraints
// will be removed in a future major release
NO_CONSTRAINTS BOTAN_DEPRECATED("Use None") = None,
DIGITAL_SIGNATURE BOTAN_DEPRECATED("Use DigitalSignature") = DigitalSignature,
NON_REPUDIATION BOTAN_DEPRECATED("Use NonRepudiation") = NonRepudiation,
KEY_ENCIPHERMENT BOTAN_DEPRECATED("Use KeyEncipherment") = KeyEncipherment,
DATA_ENCIPHERMENT BOTAN_DEPRECATED("Use DataEncipherment") = DataEncipherment,
KEY_AGREEMENT BOTAN_DEPRECATED("Use KeyAgreement") = KeyAgreement,
KEY_CERT_SIGN BOTAN_DEPRECATED("Use KeyCertSign") = KeyCertSign,
CRL_SIGN BOTAN_DEPRECATED("Use CrlSign") = CrlSign,
ENCIPHER_ONLY BOTAN_DEPRECATED("Use EncipherOnly") = EncipherOnly,
DECIPHER_ONLY BOTAN_DEPRECATED("Use DecipherOnly") = DecipherOnly,
};
Key_Constraints(const Key_Constraints& other) = default;
Key_Constraints(Key_Constraints&& other) = default;
Key_Constraints& operator=(const Key_Constraints& other) = default;
Key_Constraints& operator=(Key_Constraints&& other) = default;
Key_Constraints(Key_Constraints::Bits bits) : m_value(bits) {}
explicit Key_Constraints(uint32_t bits) : m_value(bits) {}
Key_Constraints() : m_value(0) {}
/**
* Return typical constraints for a CA certificate.
*
* The reasons for KeyCertSign and CrlSign should be obvious
*
* CAB baseline requirements are that DigitalSignature should be set
* if the certificate is used to sign OCSP responses.
*/
static Key_Constraints ca_constraints() {
return Key_Constraints(Key_Constraints::KeyCertSign | Key_Constraints::CrlSign |
Key_Constraints::DigitalSignature);
}
bool operator==(const Key_Constraints&) const = default;
void operator|=(Key_Constraints::Bits other) { m_value |= other; }
// Return true if all bits in mask are set
bool includes(Key_Constraints::Bits other) const { return (m_value & other) == other; }
bool includes(Key_Constraints other) const { return (m_value & other.m_value) == other.m_value; }
// Return true if any of the bits provided are set
bool includes_any(auto&&... bits) const { return (m_value & (bits | ...)) > 0; }
bool empty() const { return m_value == 0; }
uint32_t value() const { return m_value; }
std::string to_string() const;
/**
* Check that key constraints are permitted for a specific public key.
* @param key the public key on which the constraints shall be enforced on
* @return false if the constraints are not permitted for this key
*/
bool compatible_with(const Public_Key& key) const;
private:
uint32_t m_value;
};
/**
* X.509v2 CRL Reason Code.
*/
enum class CRL_Code : uint32_t {
Unspecified = 0,
KeyCompromise = 1,
CaCompromise = 2,
AffiliationChanged = 3,
Superseded = 4,
CessationOfOperation = 5,
CertificateHold = 6,
RemoveFromCrl = 8,
PrivilegeWithdrawn = 9,
AaCompromise = 10,
};
} // namespace Botan
#endif