Blame doc/enums/gnutls_certificate_status_t

Packit Service 4684c1
Packit Service 4684c1
Packit Service 4684c1
@c gnutls_certificate_status_t
Packit Service 4684c1
@table @code
Packit Service 4684c1
@item GNUTLS_@-CERT_@-INVALID
Packit Service 4684c1
The certificate is not signed by one of the
Packit Service 4684c1
known authorities or the signature is invalid (deprecated by the flags 
Packit Service 4684c1
@code{GNUTLS_CERT_SIGNATURE_FAILURE}  and @code{GNUTLS_CERT_SIGNER_NOT_FOUND} ).
Packit Service 4684c1
@item GNUTLS_@-CERT_@-REVOKED
Packit Service 4684c1
Certificate is revoked by its authority.  In X.509 this will be
Packit Service 4684c1
set only if CRLs are checked.
Packit Service 4684c1
@item GNUTLS_@-CERT_@-SIGNER_@-NOT_@-FOUND
Packit Service 4684c1
The certificate's issuer is not known. 
Packit Service 4684c1
This is the case if the issuer is not included in the trusted certificate list.
Packit Service 4684c1
@item GNUTLS_@-CERT_@-SIGNER_@-NOT_@-CA
Packit Service 4684c1
The certificate's signer was not a CA. This
Packit Service 4684c1
may happen if this was a version 1 certificate, which is common with
Packit Service 4684c1
some CAs, or a version 3 certificate without the basic constrains extension.
Packit Service 4684c1
@item GNUTLS_@-CERT_@-INSECURE_@-ALGORITHM
Packit Service 4684c1
The certificate was signed using an insecure
Packit Service 4684c1
algorithm such as MD2 or MD5. These algorithms have been broken and
Packit Service 4684c1
should not be trusted.
Packit Service 4684c1
@item GNUTLS_@-CERT_@-NOT_@-ACTIVATED
Packit Service 4684c1
The certificate is not yet activated.
Packit Service 4684c1
@item GNUTLS_@-CERT_@-EXPIRED
Packit Service 4684c1
The certificate has expired.
Packit Service 4684c1
@item GNUTLS_@-CERT_@-SIGNATURE_@-FAILURE
Packit Service 4684c1
The signature verification failed.
Packit Service 4684c1
@item GNUTLS_@-CERT_@-REVOCATION_@-DATA_@-SUPERSEDED
Packit Service 4684c1
The revocation data are old and have been superseded.
Packit Service 4684c1
@item GNUTLS_@-CERT_@-UNEXPECTED_@-OWNER
Packit Service 4684c1
The owner is not the expected one.
Packit Service 4684c1
@item GNUTLS_@-CERT_@-REVOCATION_@-DATA_@-ISSUED_@-IN_@-FUTURE
Packit Service 4684c1
The revocation data have a future issue date.
Packit Service 4684c1
@item GNUTLS_@-CERT_@-SIGNER_@-CONSTRAINTS_@-FAILURE
Packit Service 4684c1
The certificate's signer constraints were
Packit Service 4684c1
violated.
Packit Service 4684c1
@item GNUTLS_@-CERT_@-MISMATCH
Packit Service 4684c1
The certificate presented isn't the expected one (TOFU)
Packit Service 4684c1
@item GNUTLS_@-CERT_@-PURPOSE_@-MISMATCH
Packit Service 4684c1
The certificate or an intermediate does not match the intended purpose (extended key usage).
Packit Service 4684c1
@item GNUTLS_@-CERT_@-MISSING_@-OCSP_@-STATUS
Packit Service 4684c1
The certificate requires the server to send the certifiate status, but no status was received.
Packit Service 4684c1
@item GNUTLS_@-CERT_@-INVALID_@-OCSP_@-STATUS
Packit Service 4684c1
The received OCSP status response is invalid.
Packit Service 4684c1
@item GNUTLS_@-CERT_@-UNKNOWN_@-CRIT_@-EXTENSIONS
Packit Service 4684c1
The certificate has extensions marked as critical which are not supported.
Packit Service 4684c1
@end table