From 64106c4d3d4ddba8c7bc2af75376e6d3d3d75601 Mon Sep 17 00:00:00 2001
From:
Date: Mon, 29 Jun 2015 20:16:15 +0000
Subject: Update documentation
---
openssl/x509/enum.X509ValidationError.html | 159 +++++++++++++++++++++++++++++
1 file changed, 159 insertions(+)
create mode 100644 openssl/x509/enum.X509ValidationError.html
(limited to 'openssl/x509/enum.X509ValidationError.html')
diff --git a/openssl/x509/enum.X509ValidationError.html b/openssl/x509/enum.X509ValidationError.html
new file mode 100644
index 0000000..785ee0c
--- /dev/null
+++ b/openssl/x509/enum.X509ValidationError.html
@@ -0,0 +1,159 @@
+
+
+
+
+
+pub enum X509ValidationError {
+ X509UnableToGetIssuerCert,
+ X509UnableToGetCrl,
+ X509UnableToDecryptCertSignature,
+ X509UnableToDecryptCrlSignature,
+ X509UnableToDecodeIssuerPublicKey,
+ X509CertSignatureFailure,
+ X509CrlSignatureFailure,
+ X509CertNotYetValid,
+ X509CertHasExpired,
+ X509CrlNotYetValid,
+ X509CrlHasExpired,
+ X509ErrorInCertNotBeforeField,
+ X509ErrorInCertNotAfterField,
+ X509ErrorInCrlLastUpdateField,
+ X509ErrorInCrlNextUpdateField,
+ X509OutOfMem,
+ X509DepthZeroSelfSignedCert,
+ X509SelfSignedCertInChain,
+ X509UnableToGetIssuerCertLocally,
+ X509UnableToVerifyLeafSignature,
+ X509CertChainTooLong,
+ X509CertRevoked,
+ X509InvalidCA,
+ X509PathLengthExceeded,
+ X509InvalidPurpose,
+ X509CertUntrusted,
+ X509CertRejected,
+ X509SubjectIssuerMismatch,
+ X509AkidSkidMismatch,
+ X509AkidIssuerSerialMismatch,
+ X509KeyusageNoCertsign,
+ X509UnableToGetCrlIssuer,
+ X509UnhandledCriticalExtension,
+ X509KeyusageNoCrlSign,
+ X509UnhandledCriticalCrlExtension,
+ X509InvalidNonCA,
+ X509ProxyPathLengthExceeded,
+ X509KeyusageNoDigitalSignature,
+ X509ProxyCertificatesNotAllowed,
+ X509InvalidExtension,
+ X509InavlidPolicyExtension,
+ X509NoExplicitPolicy,
+ X509DifferentCrlScope,
+ X509UnsupportedExtensionFeature,
+ X509UnnestedResource,
+ X509PermittedVolation,
+ X509ExcludedViolation,
+ X509SubtreeMinmax,
+ X509UnsupportedConstraintType,
+ X509UnsupportedConstraintSyntax,
+ X509UnsupportedNameSyntax,
+ X509CrlPathValidationError,
+ X509ApplicationVerification,
+ X509UnknownError(c_int),
+}
Variants
+X509UnableToGetIssuerCert | |
X509UnableToGetCrl | |
X509UnableToDecryptCertSignature | |
X509UnableToDecryptCrlSignature | |
X509UnableToDecodeIssuerPublicKey | |
X509CertSignatureFailure | |
X509CrlSignatureFailure | |
X509CertNotYetValid | |
X509CertHasExpired | |
X509CrlNotYetValid | |
X509CrlHasExpired | |
X509ErrorInCertNotBeforeField | |
X509ErrorInCertNotAfterField | |
X509ErrorInCrlLastUpdateField | |
X509ErrorInCrlNextUpdateField | |
X509OutOfMem | |
X509DepthZeroSelfSignedCert | |
X509SelfSignedCertInChain | |
X509UnableToGetIssuerCertLocally | |
X509UnableToVerifyLeafSignature | |
X509CertChainTooLong | |
X509CertRevoked | |
X509InvalidCA | |
X509PathLengthExceeded | |
X509InvalidPurpose | |
X509CertUntrusted | |
X509CertRejected | |
X509SubjectIssuerMismatch | |
X509AkidSkidMismatch | |
X509AkidIssuerSerialMismatch | |
X509KeyusageNoCertsign | |
X509UnableToGetCrlIssuer | |
X509UnhandledCriticalExtension | |
X509KeyusageNoCrlSign | |
X509UnhandledCriticalCrlExtension | |
X509InvalidNonCA | |
X509ProxyPathLengthExceeded | |
X509KeyusageNoDigitalSignature | |
X509ProxyCertificatesNotAllowed | |
X509InvalidExtension | |
X509InavlidPolicyExtension | |
X509NoExplicitPolicy | |
X509DifferentCrlScope | |
X509UnsupportedExtensionFeature | |
X509UnnestedResource | |
X509PermittedVolation | |
X509ExcludedViolation | |
X509SubtreeMinmax | |
X509UnsupportedConstraintType | |
X509UnsupportedConstraintSyntax | |
X509UnsupportedNameSyntax | |
X509CrlPathValidationError | |
X509ApplicationVerification | |
X509UnknownError | |
Trait Implementations
Derived Implementations
+