diff options
author | Jack Lloyd <[email protected]> | 2020-12-15 07:26:20 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2020-12-15 07:53:31 -0500 |
commit | 3cbb45c94ddc6137b7031ead0974cf388d5c9e7e (patch) | |
tree | 2296ef4f82cbeffd0ab04bce62ec600c6b69fbd3 /src/lib/x509/pkix_enums.h | |
parent | 603ec4de6c08475264fcd9909870312044ec0fea (diff) |
Convert CRL_Code to enum class
Diffstat (limited to 'src/lib/x509/pkix_enums.h')
-rw-r--r-- | src/lib/x509/pkix_enums.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/x509/pkix_enums.h b/src/lib/x509/pkix_enums.h index a1c85293b..9d2bbce44 100644 --- a/src/lib/x509/pkix_enums.h +++ b/src/lib/x509/pkix_enums.h @@ -118,9 +118,8 @@ enum Key_Constraints { /** * X.509v2 CRL Reason Code. -* This will become an enum class in a future major release */ -enum CRL_Code : uint32_t { +enum class CRL_Code : uint32_t { UNSPECIFIED = 0, KEY_COMPROMISE = 1, CA_COMPROMISE = 2, |