aboutsummaryrefslogtreecommitdiffstats
path: root/include/enums.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2006-06-13 01:08:42 +0000
committerlloyd <[email protected]>2006-06-13 01:08:42 +0000
commit5b4ec650b1199578fcf1bd7fdc93ed0f48e7c5a3 (patch)
treecf5c1ff1aa6da8c3569b63eda5da6ed2aea4bd29 /include/enums.h
parent5dad98b85c88dfa72915f9038505af1e873757bf (diff)
Move the X509_Code enum from enums.h to x509stor.h, since that's
the only place it is used.
Diffstat (limited to 'include/enums.h')
-rw-r--r--include/enums.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/include/enums.h b/include/enums.h
index 9ad5288c5..0d3841d68 100644
--- a/include/enums.h
+++ b/include/enums.h
@@ -82,34 +82,6 @@ enum CRL_Code {
};
/*************************************************
-* X.509 Certificate Validation Result *
-*************************************************/
-enum X509_Code {
- VERIFIED,
- UNKNOWN_X509_ERROR,
- CANNOT_ESTABLISH_TRUST,
- CERT_CHAIN_TOO_LONG,
- SIGNATURE_ERROR,
- POLICY_ERROR,
- INVALID_USAGE,
-
- CERT_FORMAT_ERROR,
- CERT_ISSUER_NOT_FOUND,
- CERT_NOT_YET_VALID,
- CERT_HAS_EXPIRED,
- CERT_IS_REVOKED,
-
- CRL_FORMAT_ERROR,
- CRL_ISSUER_NOT_FOUND,
- CRL_NOT_YET_VALID,
- CRL_HAS_EXPIRED,
-
- CA_CERT_CANNOT_SIGN,
- CA_CERT_NOT_FOR_CERT_ISSUER,
- CA_CERT_NOT_FOR_CRL_ISSUER
-};
-
-/*************************************************
* Various Other Enumerations *
*************************************************/
enum Decoder_Checking { NONE, IGNORE_WS, FULL_CHECK };