verify.pod 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779
  1. =pod
  2. =head1 NAME
  3. openssl-verify,
  4. verify - Utility to verify certificates
  5. =head1 SYNOPSIS
  6. B<openssl> B<verify>
  7. [B<-help>]
  8. [B<-CAfile file>]
  9. [B<-CApath directory>]
  10. [B<-no-CAfile>]
  11. [B<-no-CApath>]
  12. [B<-allow_proxy_certs>]
  13. [B<-attime timestamp>]
  14. [B<-check_ss_sig>]
  15. [B<-CRLfile file>]
  16. [B<-crl_download>]
  17. [B<-crl_check>]
  18. [B<-crl_check_all>]
  19. [B<-engine id>]
  20. [B<-explicit_policy>]
  21. [B<-extended_crl>]
  22. [B<-ignore_critical>]
  23. [B<-inhibit_any>]
  24. [B<-inhibit_map>]
  25. [B<-nameopt option>]
  26. [B<-no_check_time>]
  27. [B<-partial_chain>]
  28. [B<-policy arg>]
  29. [B<-policy_check>]
  30. [B<-policy_print>]
  31. [B<-purpose purpose>]
  32. [B<-suiteB_128>]
  33. [B<-suiteB_128_only>]
  34. [B<-suiteB_192>]
  35. [B<-trusted_first>]
  36. [B<-no_alt_chains>]
  37. [B<-untrusted file>]
  38. [B<-trusted file>]
  39. [B<-use_deltas>]
  40. [B<-verbose>]
  41. [B<-auth_level level>]
  42. [B<-verify_depth num>]
  43. [B<-verify_email email>]
  44. [B<-verify_hostname hostname>]
  45. [B<-verify_ip ip>]
  46. [B<-verify_name name>]
  47. [B<-x509_strict>]
  48. [B<-show_chain>]
  49. [B<->]
  50. [certificates]
  51. =head1 DESCRIPTION
  52. The B<verify> command verifies certificate chains.
  53. =head1 OPTIONS
  54. =over 4
  55. =item B<-help>
  56. Print out a usage message.
  57. =item B<-CAfile file>
  58. A B<file> of trusted certificates.
  59. The file should contain one or more certificates in PEM format.
  60. =item B<-CApath directory>
  61. A directory of trusted certificates. The certificates should have names
  62. of the form: hash.0 or have symbolic links to them of this
  63. form ("hash" is the hashed certificate subject name: see the B<-hash> option
  64. of the B<x509> utility). Under Unix the B<c_rehash> script will automatically
  65. create symbolic links to a directory of certificates.
  66. =item B<-no-CAfile>
  67. Do not load the trusted CA certificates from the default file location.
  68. =item B<-no-CApath>
  69. Do not load the trusted CA certificates from the default directory location.
  70. =item B<-allow_proxy_certs>
  71. Allow the verification of proxy certificates.
  72. =item B<-attime timestamp>
  73. Perform validation checks using time specified by B<timestamp> and not
  74. current system time. B<timestamp> is the number of seconds since
  75. 01.01.1970 (UNIX time).
  76. =item B<-check_ss_sig>
  77. Verify the signature on the self-signed root CA. This is disabled by default
  78. because it doesn't add any security.
  79. =item B<-CRLfile file>
  80. The B<file> should contain one or more CRLs in PEM format.
  81. This option can be specified more than once to include CRLs from multiple
  82. B<files>.
  83. =item B<-crl_download>
  84. Attempt to download CRL information for this certificate.
  85. =item B<-crl_check>
  86. Checks end entity certificate validity by attempting to look up a valid CRL.
  87. If a valid CRL cannot be found an error occurs.
  88. =item B<-crl_check_all>
  89. Checks the validity of B<all> certificates in the chain by attempting
  90. to look up valid CRLs.
  91. =item B<-engine id>
  92. Specifying an engine B<id> will cause L<verify(1)> to attempt to load the
  93. specified engine.
  94. The engine will then be set as the default for all its supported algorithms.
  95. If you want to load certificates or CRLs that require engine support via any of
  96. the B<-trusted>, B<-untrusted> or B<-CRLfile> options, the B<-engine> option
  97. must be specified before those options.
  98. =item B<-explicit_policy>
  99. Set policy variable require-explicit-policy (see RFC5280).
  100. =item B<-extended_crl>
  101. Enable extended CRL features such as indirect CRLs and alternate CRL
  102. signing keys.
  103. =item B<-ignore_critical>
  104. Normally if an unhandled critical extension is present which is not
  105. supported by OpenSSL the certificate is rejected (as required by RFC5280).
  106. If this option is set critical extensions are ignored.
  107. =item B<-inhibit_any>
  108. Set policy variable inhibit-any-policy (see RFC5280).
  109. =item B<-inhibit_map>
  110. Set policy variable inhibit-policy-mapping (see RFC5280).
  111. =item B<-nameopt option>
  112. Option which determines how the subject or issuer names are displayed. The
  113. B<option> argument can be a single option or multiple options separated by
  114. commas. Alternatively the B<-nameopt> switch may be used more than once to
  115. set multiple options. See the L<x509(1)> manual page for details.
  116. =item B<-no_check_time>
  117. This option suppresses checking the validity period of certificates and CRLs
  118. against the current time. If option B<-attime timestamp> is used to specify
  119. a verification time, the check is not suppressed.
  120. =item B<-partial_chain>
  121. Allow verification to succeed even if a I<complete> chain cannot be built to a
  122. self-signed trust-anchor, provided it is possible to construct a chain to a
  123. trusted certificate that might not be self-signed.
  124. =item B<-policy arg>
  125. Enable policy processing and add B<arg> to the user-initial-policy-set (see
  126. RFC5280). The policy B<arg> can be an object name an OID in numeric form.
  127. This argument can appear more than once.
  128. =item B<-policy_check>
  129. Enables certificate policy processing.
  130. =item B<-policy_print>
  131. Print out diagnostics related to policy processing.
  132. =item B<-purpose purpose>
  133. The intended use for the certificate. If this option is not specified,
  134. B<verify> will not consider certificate purpose during chain verification.
  135. Currently accepted uses are B<sslclient>, B<sslserver>, B<nssslserver>,
  136. B<smimesign>, B<smimeencrypt>. See the B<VERIFY OPERATION> section for more
  137. information.
  138. =item B<-suiteB_128_only>, B<-suiteB_128>, B<-suiteB_192>
  139. Enable the Suite B mode operation at 128 bit Level of Security, 128 bit or
  140. 192 bit, or only 192 bit Level of Security respectively.
  141. See RFC6460 for details. In particular the supported signature algorithms are
  142. reduced to support only ECDSA and SHA256 or SHA384 and only the elliptic curves
  143. P-256 and P-384.
  144. =item B<-trusted_first>
  145. When constructing the certificate chain, use the trusted certificates specified
  146. via B<-CAfile>, B<-CApath> or B<-trusted> before any certificates specified via
  147. B<-untrusted>.
  148. This can be useful in environments with Bridge or Cross-Certified CAs.
  149. As of OpenSSL 1.1.0 this option is on by default and cannot be disabled.
  150. =item B<-no_alt_chains>
  151. By default, unless B<-trusted_first> is specified, when building a certificate
  152. chain, if the first certificate chain found is not trusted, then OpenSSL will
  153. attempt to replace untrusted issuer certificates with certificates from the
  154. trust store to see if an alternative chain can be found that is trusted.
  155. As of OpenSSL 1.1.0, with B<-trusted_first> always on, this option has no
  156. effect.
  157. =item B<-untrusted file>
  158. A B<file> of additional untrusted certificates (intermediate issuer CAs) used
  159. to construct a certificate chain from the subject certificate to a trust-anchor.
  160. The B<file> should contain one or more certificates in PEM format.
  161. This option can be specified more than once to include untrusted certificates
  162. from multiple B<files>.
  163. =item B<-trusted file>
  164. A B<file> of trusted certificates, which must be self-signed, unless the
  165. B<-partial_chain> option is specified.
  166. The B<file> contains one or more certificates in PEM format.
  167. With this option, no additional (e.g., default) certificate lists are
  168. consulted.
  169. That is, the only trust-anchors are those listed in B<file>.
  170. This option can be specified more than once to include trusted certificates
  171. from multiple B<files>.
  172. This option implies the B<-no-CAfile> and B<-no-CApath> options.
  173. This option cannot be used in combination with either of the B<-CAfile> or
  174. B<-CApath> options.
  175. =item B<-use_deltas>
  176. Enable support for delta CRLs.
  177. =item B<-verbose>
  178. Print extra information about the operations being performed.
  179. =item B<-auth_level level>
  180. Set the certificate chain authentication security level to B<level>.
  181. The authentication security level determines the acceptable signature and
  182. public key strength when verifying certificate chains.
  183. For a certificate chain to validate, the public keys of all the certificates
  184. must meet the specified security B<level>.
  185. The signature algorithm security level is enforced for all the certificates in
  186. the chain except for the chain's I<trust anchor>, which is either directly
  187. trusted or validated by means other than its signature.
  188. See L<SSL_CTX_set_security_level(3)> for the definitions of the available
  189. levels.
  190. The default security level is -1, or "not set".
  191. At security level 0 or lower all algorithms are acceptable.
  192. Security level 1 requires at least 80-bit-equivalent security and is broadly
  193. interoperable, though it will, for example, reject MD5 signatures or RSA keys
  194. shorter than 1024 bits.
  195. =item B<-verify_depth num>
  196. Limit the certificate chain to B<num> intermediate CA certificates.
  197. A maximal depth chain can have up to B<num+2> certificates, since neither the
  198. end-entity certificate nor the trust-anchor certificate count against the
  199. B<-verify_depth> limit.
  200. =item B<-verify_email email>
  201. Verify if the B<email> matches the email address in Subject Alternative Name or
  202. the email in the subject Distinguished Name.
  203. =item B<-verify_hostname hostname>
  204. Verify if the B<hostname> matches DNS name in Subject Alternative Name or
  205. Common Name in the subject certificate.
  206. =item B<-verify_ip ip>
  207. Verify if the B<ip> matches the IP address in Subject Alternative Name of
  208. the subject certificate.
  209. =item B<-verify_name name>
  210. Use default verification policies like trust model and required certificate
  211. policies identified by B<name>.
  212. The trust model determines which auxiliary trust or reject OIDs are applicable
  213. to verifying the given certificate chain.
  214. See the B<-addtrust> and B<-addreject> options of the L<x509(1)> command-line
  215. utility.
  216. Supported policy names include: B<default>, B<pkcs7>, B<smime_sign>,
  217. B<ssl_client>, B<ssl_server>.
  218. These mimics the combinations of purpose and trust settings used in SSL, CMS
  219. and S/MIME.
  220. As of OpenSSL 1.1.0, the trust model is inferred from the purpose when not
  221. specified, so the B<-verify_name> options are functionally equivalent to the
  222. corresponding B<-purpose> settings.
  223. =item B<-x509_strict>
  224. For strict X.509 compliance, disable non-compliant workarounds for broken
  225. certificates.
  226. =item B<-show_chain>
  227. Display information about the certificate chain that has been built (if
  228. successful). Certificates in the chain that came from the untrusted list will be
  229. flagged as "untrusted".
  230. =item B<->
  231. Indicates the last option. All arguments following this are assumed to be
  232. certificate files. This is useful if the first certificate filename begins
  233. with a B<->.
  234. =item B<certificates>
  235. One or more certificates to verify. If no certificates are given, B<verify>
  236. will attempt to read a certificate from standard input. Certificates must be
  237. in PEM format.
  238. =back
  239. =head1 VERIFY OPERATION
  240. The B<verify> program uses the same functions as the internal SSL and S/MIME
  241. verification, therefore this description applies to these verify operations
  242. too.
  243. There is one crucial difference between the verify operations performed
  244. by the B<verify> program: wherever possible an attempt is made to continue
  245. after an error whereas normally the verify operation would halt on the
  246. first error. This allows all the problems with a certificate chain to be
  247. determined.
  248. The verify operation consists of a number of separate steps.
  249. Firstly a certificate chain is built up starting from the supplied certificate
  250. and ending in the root CA.
  251. It is an error if the whole chain cannot be built up.
  252. The chain is built up by looking up the issuers certificate of the current
  253. certificate.
  254. If a certificate is found which is its own issuer it is assumed to be the root
  255. CA.
  256. The process of 'looking up the issuers certificate' itself involves a number of
  257. steps.
  258. After all certificates whose subject name matches the issuer name of the current
  259. certificate are subject to further tests.
  260. The relevant authority key identifier components of the current certificate (if
  261. present) must match the subject key identifier (if present) and issuer and
  262. serial number of the candidate issuer, in addition the keyUsage extension of
  263. the candidate issuer (if present) must permit certificate signing.
  264. The lookup first looks in the list of untrusted certificates and if no match
  265. is found the remaining lookups are from the trusted certificates. The root CA
  266. is always looked up in the trusted certificate list: if the certificate to
  267. verify is a root certificate then an exact match must be found in the trusted
  268. list.
  269. The second operation is to check every untrusted certificate's extensions for
  270. consistency with the supplied purpose. If the B<-purpose> option is not included
  271. then no checks are done. The supplied or "leaf" certificate must have extensions
  272. compatible with the supplied purpose and all other certificates must also be valid
  273. CA certificates. The precise extensions required are described in more detail in
  274. the B<CERTIFICATE EXTENSIONS> section of the B<x509> utility.
  275. The third operation is to check the trust settings on the root CA. The root CA
  276. should be trusted for the supplied purpose.
  277. For compatibility with previous versions of OpenSSL, a certificate with no
  278. trust settings is considered to be valid for all purposes.
  279. The final operation is to check the validity of the certificate chain. The validity
  280. period is checked against the current system time and the notBefore and notAfter
  281. dates in the certificate. The certificate signatures are also checked at this
  282. point.
  283. If all operations complete successfully then certificate is considered valid. If
  284. any operation fails then the certificate is not valid.
  285. =head1 DIAGNOSTICS
  286. When a verify operation fails the output messages can be somewhat cryptic. The
  287. general form of the error message is:
  288. server.pem: /C=AU/ST=Queensland/O=CryptSoft Pty Ltd/CN=Test CA (1024 bit)
  289. error 24 at 1 depth lookup:invalid CA certificate
  290. The first line contains the name of the certificate being verified followed by
  291. the subject name of the certificate. The second line contains the error number
  292. and the depth. The depth is number of the certificate being verified when a
  293. problem was detected starting with zero for the certificate being verified itself
  294. then 1 for the CA that signed the certificate and so on. Finally a text version
  295. of the error number is presented.
  296. A partial list of the error codes and messages is shown below, this also
  297. includes the name of the error code as defined in the header file x509_vfy.h
  298. Some of the error codes are defined but never returned: these are described
  299. as "unused".
  300. =over 4
  301. =item B<X509_V_OK>
  302. The operation was successful.
  303. =item B<X509_V_ERR_UNSPECIFIED>
  304. Unspecified error; should not happen.
  305. =item B<X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT>
  306. The issuer certificate of a looked up certificate could not be found. This
  307. normally means the list of trusted certificates is not complete.
  308. =item B<X509_V_ERR_UNABLE_TO_GET_CRL>
  309. The CRL of a certificate could not be found.
  310. =item B<X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE>
  311. The certificate signature could not be decrypted. This means that the
  312. actual signature value could not be determined rather than it not matching
  313. the expected value, this is only meaningful for RSA keys.
  314. =item B<X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE>
  315. The CRL signature could not be decrypted: this means that the actual
  316. signature value could not be determined rather than it not matching the
  317. expected value. Unused.
  318. =item B<X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY>
  319. The public key in the certificate SubjectPublicKeyInfo could not be read.
  320. =item B<X509_V_ERR_CERT_SIGNATURE_FAILURE>
  321. The signature of the certificate is invalid.
  322. =item B<X509_V_ERR_CRL_SIGNATURE_FAILURE>
  323. The signature of the certificate is invalid.
  324. =item B<X509_V_ERR_CERT_NOT_YET_VALID>
  325. The certificate is not yet valid: the notBefore date is after the
  326. current time.
  327. =item B<X509_V_ERR_CERT_HAS_EXPIRED>
  328. The certificate has expired: that is the notAfter date is before the
  329. current time.
  330. =item B<X509_V_ERR_CRL_NOT_YET_VALID>
  331. The CRL is not yet valid.
  332. =item B<X509_V_ERR_CRL_HAS_EXPIRED>
  333. The CRL has expired.
  334. =item B<X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD>
  335. The certificate notBefore field contains an invalid time.
  336. =item B<X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD>
  337. The certificate notAfter field contains an invalid time.
  338. =item B<X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD>
  339. The CRL lastUpdate field contains an invalid time.
  340. =item B<X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD>
  341. The CRL nextUpdate field contains an invalid time.
  342. =item B<X509_V_ERR_OUT_OF_MEM>
  343. An error occurred trying to allocate memory. This should never happen.
  344. =item B<X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT>
  345. The passed certificate is self-signed and the same certificate cannot
  346. be found in the list of trusted certificates.
  347. =item B<X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN>
  348. The certificate chain could be built up using the untrusted certificates
  349. but the root could not be found locally.
  350. =item B<X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY>
  351. The issuer certificate could not be found: this occurs if the issuer
  352. certificate of an untrusted certificate cannot be found.
  353. =item B<X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE>
  354. No signatures could be verified because the chain contains only one
  355. certificate and it is not self signed.
  356. =item B<X509_V_ERR_CERT_CHAIN_TOO_LONG>
  357. The certificate chain length is greater than the supplied maximum
  358. depth. Unused.
  359. =item B<X509_V_ERR_CERT_REVOKED>
  360. The certificate has been revoked.
  361. =item B<X509_V_ERR_INVALID_CA>
  362. A CA certificate is invalid. Either it is not a CA or its extensions
  363. are not consistent with the supplied purpose.
  364. =item B<X509_V_ERR_PATH_LENGTH_EXCEEDED>
  365. The basicConstraints pathlength parameter has been exceeded.
  366. =item B<X509_V_ERR_INVALID_PURPOSE>
  367. The supplied certificate cannot be used for the specified purpose.
  368. =item B<X509_V_ERR_CERT_UNTRUSTED>
  369. The root CA is not marked as trusted for the specified purpose.
  370. =item B<X509_V_ERR_CERT_REJECTED>
  371. The root CA is marked to reject the specified purpose.
  372. =item B<X509_V_ERR_SUBJECT_ISSUER_MISMATCH>
  373. Not used as of OpenSSL 1.1.0 as a result of the deprecation of the
  374. B<-issuer_checks> option.
  375. =item B<X509_V_ERR_AKID_SKID_MISMATCH>
  376. Not used as of OpenSSL 1.1.0 as a result of the deprecation of the
  377. B<-issuer_checks> option.
  378. =item B<X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH>
  379. Not used as of OpenSSL 1.1.0 as a result of the deprecation of the
  380. B<-issuer_checks> option.
  381. =item B<X509_V_ERR_KEYUSAGE_NO_CERTSIGN>
  382. Not used as of OpenSSL 1.1.0 as a result of the deprecation of the
  383. B<-issuer_checks> option.
  384. =item B<X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER>
  385. Unable to get CRL issuer certificate.
  386. =item B<X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION>
  387. Unhandled critical extension.
  388. =item B<X509_V_ERR_KEYUSAGE_NO_CRL_SIGN>
  389. Key usage does not include CRL signing.
  390. =item B<X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION>
  391. Unhandled critical CRL extension.
  392. =item B<X509_V_ERR_INVALID_NON_CA>
  393. Invalid non-CA certificate has CA markings.
  394. =item B<X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED>
  395. Proxy path length constraint exceeded.
  396. =item B<X509_V_ERR_PROXY_SUBJECT_INVALID>
  397. Proxy certificate subject is invalid. It MUST be the same as the issuer
  398. with a single CN component added.
  399. =item B<X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE>
  400. Key usage does not include digital signature.
  401. =item B<X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED>
  402. Proxy certificates not allowed, please use B<-allow_proxy_certs>.
  403. =item B<X509_V_ERR_INVALID_EXTENSION>
  404. Invalid or inconsistent certificate extension.
  405. =item B<X509_V_ERR_INVALID_POLICY_EXTENSION>
  406. Invalid or inconsistent certificate policy extension.
  407. =item B<X509_V_ERR_NO_EXPLICIT_POLICY>
  408. No explicit policy.
  409. =item B<X509_V_ERR_DIFFERENT_CRL_SCOPE>
  410. Different CRL scope.
  411. =item B<X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE>
  412. Unsupported extension feature.
  413. =item B<X509_V_ERR_UNNESTED_RESOURCE>
  414. RFC 3779 resource not subset of parent's resources.
  415. =item B<X509_V_ERR_PERMITTED_VIOLATION>
  416. Permitted subtree violation.
  417. =item B<X509_V_ERR_EXCLUDED_VIOLATION>
  418. Excluded subtree violation.
  419. =item B<X509_V_ERR_SUBTREE_MINMAX>
  420. Name constraints minimum and maximum not supported.
  421. =item B<X509_V_ERR_APPLICATION_VERIFICATION>
  422. Application verification failure. Unused.
  423. =item B<X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE>
  424. Unsupported name constraint type.
  425. =item B<X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX>
  426. Unsupported or invalid name constraint syntax.
  427. =item B<X509_V_ERR_UNSUPPORTED_NAME_SYNTAX>
  428. Unsupported or invalid name syntax.
  429. =item B<X509_V_ERR_CRL_PATH_VALIDATION_ERROR>
  430. CRL path validation error.
  431. =item B<X509_V_ERR_PATH_LOOP>
  432. Path loop.
  433. =item B<X509_V_ERR_SUITE_B_INVALID_VERSION>
  434. Suite B: certificate version invalid.
  435. =item B<X509_V_ERR_SUITE_B_INVALID_ALGORITHM>
  436. Suite B: invalid public key algorithm.
  437. =item B<X509_V_ERR_SUITE_B_INVALID_CURVE>
  438. Suite B: invalid ECC curve.
  439. =item B<X509_V_ERR_SUITE_B_INVALID_SIGNATURE_ALGORITHM>
  440. Suite B: invalid signature algorithm.
  441. =item B<X509_V_ERR_SUITE_B_LOS_NOT_ALLOWED>
  442. Suite B: curve not allowed for this LOS.
  443. =item B<X509_V_ERR_SUITE_B_CANNOT_SIGN_P_384_WITH_P_256>
  444. Suite B: cannot sign P-384 with P-256.
  445. =item B<X509_V_ERR_HOSTNAME_MISMATCH>
  446. Hostname mismatch.
  447. =item B<X509_V_ERR_EMAIL_MISMATCH>
  448. Email address mismatch.
  449. =item B<X509_V_ERR_IP_ADDRESS_MISMATCH>
  450. IP address mismatch.
  451. =item B<X509_V_ERR_DANE_NO_MATCH>
  452. DANE TLSA authentication is enabled, but no TLSA records matched the
  453. certificate chain.
  454. This error is only possible in L<s_client(1)>.
  455. =item B<X509_V_ERR_EE_KEY_TOO_SMALL>
  456. EE certificate key too weak.
  457. =item B<X509_ERR_CA_KEY_TOO_SMALL>
  458. CA certificate key too weak.
  459. =item B<X509_ERR_CA_MD_TOO_WEAK>
  460. CA signature digest algorithm too weak.
  461. =item B<X509_V_ERR_INVALID_CALL>
  462. nvalid certificate verification context.
  463. =item B<X509_V_ERR_STORE_LOOKUP>
  464. Issuer certificate lookup error.
  465. =item B<X509_V_ERR_NO_VALID_SCTS>
  466. Certificate Transparency required, but no valid SCTs found.
  467. =item B<X509_V_ERR_PROXY_SUBJECT_NAME_VIOLATION>
  468. Proxy subject name violation.
  469. =item B<X509_V_ERR_OCSP_VERIFY_NEEDED>
  470. Returned by the verify callback to indicate an OCSP verification is needed.
  471. =item B<X509_V_ERR_OCSP_VERIFY_FAILED>
  472. Returned by the verify callback to indicate OCSP verification failed.
  473. =item B<X509_V_ERR_OCSP_CERT_UNKNOWN>
  474. Returned by the verify callback to indicate that the certificate is not recognized
  475. by the OCSP responder.
  476. =back
  477. =head1 BUGS
  478. Although the issuer checks are a considerable improvement over the old
  479. technique they still suffer from limitations in the underlying X509_LOOKUP
  480. API. One consequence of this is that trusted certificates with matching
  481. subject name must either appear in a file (as specified by the B<-CAfile>
  482. option) or a directory (as specified by B<-CApath>). If they occur in
  483. both then only the certificates in the file will be recognised.
  484. Previous versions of OpenSSL assume certificates with matching subject
  485. name are identical and mishandled them.
  486. Previous versions of this documentation swapped the meaning of the
  487. B<X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT> and
  488. B<X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY> error codes.
  489. =head1 SEE ALSO
  490. L<x509(1)>
  491. =head1 HISTORY
  492. The B<-show_chain> option was added in OpenSSL 1.1.0.
  493. The B<-issuer_checks> option is deprecated as of OpenSSL 1.1.0 and
  494. is silently ignored.
  495. =head1 COPYRIGHT
  496. Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.
  497. Licensed under the Apache License 2.0 (the "License"). You may not use
  498. this file except in compliance with the License. You can obtain a copy
  499. in the file LICENSE in the source distribution or at
  500. L<https://www.openssl.org/source/license.html>.
  501. =cut