diff options
author | Tomas Mraz <tomas@openssl.org> | 2021-08-04 19:27:48 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2021-08-06 11:45:27 +1000 |
commit | 3f15358c7974573c12b94b01cb53d23e3c568310 (patch) | |
tree | 0c714de1dc8ae4dbff03db301716543ccdf408c2 /doc/man3/X509_STORE_CTX_get_error.pod | |
parent | 6ef8d2c69b3f0371d44d120bde41de25c4040a75 (diff) | |
download | openssl-new-3f15358c7974573c12b94b01cb53d23e3c568310.tar.gz |
X509_STORE_CTX_get_error: Fix some minor documentation issues
Original PR by Eric Valcik
(https://github.com/openssl/openssl/pull/12302)
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/16219)
Diffstat (limited to 'doc/man3/X509_STORE_CTX_get_error.pod')
-rw-r--r-- | doc/man3/X509_STORE_CTX_get_error.pod | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/doc/man3/X509_STORE_CTX_get_error.pod b/doc/man3/X509_STORE_CTX_get_error.pod index 023025afca..04005f3ecd 100644 --- a/doc/man3/X509_STORE_CTX_get_error.pod +++ b/doc/man3/X509_STORE_CTX_get_error.pod @@ -142,7 +142,7 @@ The signature of the certificate is invalid. =item B<X509_V_ERR_CRL_SIGNATURE_FAILURE: CRL signature failure> -The signature of the certificate is invalid. +The signature of the CRL is invalid. =item B<X509_V_ERR_CERT_NOT_YET_VALID: certificate is not yet valid> @@ -250,7 +250,6 @@ authority and subject key identifier mismatch> The current candidate issuer certificate was rejected because its subject key identifier was present and did not match the authority key identifier current certificate. -Not used as of OpenSSL 1.1.0. =item B<X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH: authority and issuer serial number mismatch> @@ -258,14 +257,12 @@ authority and issuer serial number mismatch> The current candidate issuer certificate was rejected because its issuer name and serial number was present and did not match the authority key identifier of the current certificate. -Not used as of OpenSSL 1.1.0. =item B<X509_V_ERR_KEYUSAGE_NO_CERTSIGN: key usage does not include certificate signing> The current candidate issuer certificate was rejected because its C<keyUsage> extension does not permit certificate signing. -Not used as of OpenSSL 1.1.0. =item B<X509_V_ERR_INVALID_EXTENSION: invalid or inconsistent certificate extension> @@ -435,11 +432,11 @@ Returned by the verify callback to indicate OCSP verification failed. Returned by the verify callback to indicate that the certificate is not recognized by the OCSP responder. -=item B<509_V_ERROR_NO_ISSUER_PUBLI_KEY, issuer certificate doesn't have a public key> +=item B<X509_V_ERR_NO_ISSUER_PUBLIC_KEY: issuer certificate doesn't have a public key> The issuer certificate does not have a public key. -=item B<X509_V_ERROR_SIGNATURE_ALGORITHM_MISMATCH, Subject signature algorithm and issuer public key algorithm mismatch> +=item B<X509_V_ERR_SIGNATURE_ALGORITHM_MISMATCH: subject signature algorithm and issuer public key algorithm mismatch> The issuer's public key is not of the type required by the signature in the subject's certificate. |