ocsp.pod 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401
  1. =pod
  2. =head1 NAME
  3. ocsp - Online Certificate Status Protocol utility
  4. =head1 SYNOPSIS
  5. B<openssl> B<ocsp>
  6. [B<-out file>]
  7. [B<-issuer file>]
  8. [B<-cert file>]
  9. [B<-serial n>]
  10. [B<-signer file>]
  11. [B<-signkey file>]
  12. [B<-sign_other file>]
  13. [B<-no_certs>]
  14. [B<-req_text>]
  15. [B<-resp_text>]
  16. [B<-text>]
  17. [B<-reqout file>]
  18. [B<-respout file>]
  19. [B<-reqin file>]
  20. [B<-respin file>]
  21. [B<-nonce>]
  22. [B<-no_nonce>]
  23. [B<-url URL>]
  24. [B<-host host:n>]
  25. [B<-header name value>]
  26. [B<-path>]
  27. [B<-CApath dir>]
  28. [B<-CAfile file>]
  29. [B<-no_alt_chains>]
  30. [B<-VAfile file>]
  31. [B<-validity_period n>]
  32. [B<-status_age n>]
  33. [B<-noverify>]
  34. [B<-verify_other file>]
  35. [B<-trust_other>]
  36. [B<-no_intern>]
  37. [B<-no_signature_verify>]
  38. [B<-no_cert_verify>]
  39. [B<-no_chain>]
  40. [B<-no_cert_checks>]
  41. [B<-no_explicit>]
  42. [B<-port num>]
  43. [B<-index file>]
  44. [B<-CA file>]
  45. [B<-rsigner file>]
  46. [B<-rkey file>]
  47. [B<-rother file>]
  48. [B<-resp_no_certs>]
  49. [B<-nmin n>]
  50. [B<-ndays n>]
  51. [B<-resp_key_id>]
  52. [B<-nrequest n>]
  53. [B<-md5|-sha1|...>]
  54. =head1 DESCRIPTION
  55. The Online Certificate Status Protocol (OCSP) enables applications to
  56. determine the (revocation) state of an identified certificate (RFC 2560).
  57. The B<ocsp> command performs many common OCSP tasks. It can be used
  58. to print out requests and responses, create requests and send queries
  59. to an OCSP responder and behave like a mini OCSP server itself.
  60. =head1 OCSP CLIENT OPTIONS
  61. =over 4
  62. =item B<-out filename>
  63. specify output filename, default is standard output.
  64. =item B<-issuer filename>
  65. This specifies the current issuer certificate. This option can be used
  66. multiple times. The certificate specified in B<filename> must be in
  67. PEM format. This option B<MUST> come before any B<-cert> options.
  68. =item B<-cert filename>
  69. Add the certificate B<filename> to the request. The issuer certificate
  70. is taken from the previous B<issuer> option, or an error occurs if no
  71. issuer certificate is specified.
  72. =item B<-serial num>
  73. Same as the B<cert> option except the certificate with serial number
  74. B<num> is added to the request. The serial number is interpreted as a
  75. decimal integer unless preceded by B<0x>. Negative integers can also
  76. be specified by preceding the value by a B<-> sign.
  77. =item B<-signer filename>, B<-signkey filename>
  78. Sign the OCSP request using the certificate specified in the B<signer>
  79. option and the private key specified by the B<signkey> option. If
  80. the B<signkey> option is not present then the private key is read
  81. from the same file as the certificate. If neither option is specified then
  82. the OCSP request is not signed.
  83. =item B<-sign_other filename>
  84. Additional certificates to include in the signed request.
  85. =item B<-nonce>, B<-no_nonce>
  86. Add an OCSP nonce extension to a request or disable OCSP nonce addition.
  87. Normally if an OCSP request is input using the B<respin> option no
  88. nonce is added: using the B<nonce> option will force addition of a nonce.
  89. If an OCSP request is being created (using B<cert> and B<serial> options)
  90. a nonce is automatically added specifying B<no_nonce> overrides this.
  91. =item B<-req_text>, B<-resp_text>, B<-text>
  92. print out the text form of the OCSP request, response or both respectively.
  93. =item B<-reqout file>, B<-respout file>
  94. write out the DER encoded certificate request or response to B<file>.
  95. =item B<-reqin file>, B<-respin file>
  96. read OCSP request or response file from B<file>. These option are ignored
  97. if OCSP request or response creation is implied by other options (for example
  98. with B<serial>, B<cert> and B<host> options).
  99. =item B<-url responder_url>
  100. specify the responder URL. Both HTTP and HTTPS (SSL/TLS) URLs can be specified.
  101. =item B<-host hostname:port>, B<-path pathname>
  102. if the B<host> option is present then the OCSP request is sent to the host
  103. B<hostname> on port B<port>. B<path> specifies the HTTP path name to use
  104. or "/" by default.
  105. =item B<-header name value>
  106. If sending a request to an OCSP server, then the specified header name and
  107. value are added to the HTTP request. Note that the B<name> and B<value> must
  108. be specified as two separate parameters, not as a single quoted string, and
  109. that the header name does not have the trailing colon.
  110. Some OCSP responders require a Host header; use this flag to provide it.
  111. =item B<-timeout seconds>
  112. connection timeout to the OCSP responder in seconds
  113. =item B<-CAfile file>, B<-CApath pathname>
  114. file or pathname containing trusted CA certificates. These are used to verify
  115. the signature on the OCSP response.
  116. =item B<-no_alt_chains>
  117. See L<B<verify>|verify(1)> manual page for details.
  118. =item B<-verify_other file>
  119. file containing additional certificates to search when attempting to locate
  120. the OCSP response signing certificate. Some responders omit the actual signer's
  121. certificate from the response: this option can be used to supply the necessary
  122. certificate in such cases.
  123. =item B<-trust_other>
  124. the certificates specified by the B<-verify_other> option should be explicitly
  125. trusted and no additional checks will be performed on them. This is useful
  126. when the complete responder certificate chain is not available or trusting a
  127. root CA is not appropriate.
  128. =item B<-VAfile file>
  129. file containing explicitly trusted responder certificates. Equivalent to the
  130. B<-verify_other> and B<-trust_other> options.
  131. =item B<-noverify>
  132. don't attempt to verify the OCSP response signature or the nonce values. This
  133. option will normally only be used for debugging since it disables all verification
  134. of the responders certificate.
  135. =item B<-no_intern>
  136. ignore certificates contained in the OCSP response when searching for the
  137. signers certificate. With this option the signers certificate must be specified
  138. with either the B<-verify_other> or B<-VAfile> options.
  139. =item B<-no_signature_verify>
  140. don't check the signature on the OCSP response. Since this option tolerates invalid
  141. signatures on OCSP responses it will normally only be used for testing purposes.
  142. =item B<-no_cert_verify>
  143. don't verify the OCSP response signers certificate at all. Since this option allows
  144. the OCSP response to be signed by any certificate it should only be used for
  145. testing purposes.
  146. =item B<-no_chain>
  147. do not use certificates in the response as additional untrusted CA
  148. certificates.
  149. =item B<-no_explicit>
  150. do not explicitly trust the root CA if it is set to be trusted for OCSP signing.
  151. =item B<-no_cert_checks>
  152. don't perform any additional checks on the OCSP response signers certificate.
  153. That is do not make any checks to see if the signers certificate is authorised
  154. to provide the necessary status information: as a result this option should
  155. only be used for testing purposes.
  156. =item B<-validity_period nsec>, B<-status_age age>
  157. these options specify the range of times, in seconds, which will be tolerated
  158. in an OCSP response. Each certificate status response includes a B<notBefore> time and
  159. an optional B<notAfter> time. The current time should fall between these two values, but
  160. the interval between the two times may be only a few seconds. In practice the OCSP
  161. responder and clients clocks may not be precisely synchronised and so such a check
  162. may fail. To avoid this the B<-validity_period> option can be used to specify an
  163. acceptable error range in seconds, the default value is 5 minutes.
  164. If the B<notAfter> time is omitted from a response then this means that new status
  165. information is immediately available. In this case the age of the B<notBefore> field
  166. is checked to see it is not older than B<age> seconds old. By default this additional
  167. check is not performed.
  168. =item B<-md5|-sha1|-sha256|-ripemod160|...>
  169. this option sets digest algorithm to use for certificate identification
  170. in the OCSP request. By default SHA-1 is used.
  171. =back
  172. =head1 OCSP SERVER OPTIONS
  173. =over 4
  174. =item B<-index indexfile>
  175. B<indexfile> is a text index file in B<ca> format containing certificate revocation
  176. information.
  177. If the B<index> option is specified the B<ocsp> utility is in responder mode, otherwise
  178. it is in client mode. The request(s) the responder processes can be either specified on
  179. the command line (using B<issuer> and B<serial> options), supplied in a file (using the
  180. B<respin> option) or via external OCSP clients (if B<port> or B<url> is specified).
  181. If the B<index> option is present then the B<CA> and B<rsigner> options must also be
  182. present.
  183. =item B<-CA file>
  184. CA certificate corresponding to the revocation information in B<indexfile>.
  185. =item B<-rsigner file>
  186. The certificate to sign OCSP responses with.
  187. =item B<-rother file>
  188. Additional certificates to include in the OCSP response.
  189. =item B<-resp_no_certs>
  190. Don't include any certificates in the OCSP response.
  191. =item B<-resp_key_id>
  192. Identify the signer certificate using the key ID, default is to use the subject name.
  193. =item B<-rkey file>
  194. The private key to sign OCSP responses with: if not present the file specified in the
  195. B<rsigner> option is used.
  196. =item B<-port portnum>
  197. Port to listen for OCSP requests on. The port may also be specified using the B<url>
  198. option.
  199. =item B<-nrequest number>
  200. The OCSP server will exit after receiving B<number> requests, default unlimited.
  201. =item B<-nmin minutes>, B<-ndays days>
  202. Number of minutes or days when fresh revocation information is available: used in the
  203. B<nextUpdate> field. If neither option is present then the B<nextUpdate> field is
  204. omitted meaning fresh revocation information is immediately available.
  205. =back
  206. =head1 OCSP Response verification.
  207. OCSP Response follows the rules specified in RFC2560.
  208. Initially the OCSP responder certificate is located and the signature on
  209. the OCSP request checked using the responder certificate's public key.
  210. Then a normal certificate verify is performed on the OCSP responder certificate
  211. building up a certificate chain in the process. The locations of the trusted
  212. certificates used to build the chain can be specified by the B<CAfile>
  213. and B<CApath> options or they will be looked for in the standard OpenSSL
  214. certificates directory.
  215. If the initial verify fails then the OCSP verify process halts with an
  216. error.
  217. Otherwise the issuing CA certificate in the request is compared to the OCSP
  218. responder certificate: if there is a match then the OCSP verify succeeds.
  219. Otherwise the OCSP responder certificate's CA is checked against the issuing
  220. CA certificate in the request. If there is a match and the OCSPSigning
  221. extended key usage is present in the OCSP responder certificate then the
  222. OCSP verify succeeds.
  223. Otherwise, if B<-no_explicit> is B<not> set the root CA of the OCSP responders
  224. CA is checked to see if it is trusted for OCSP signing. If it is the OCSP
  225. verify succeeds.
  226. If none of these checks is successful then the OCSP verify fails.
  227. What this effectively means if that if the OCSP responder certificate is
  228. authorised directly by the CA it is issuing revocation information about
  229. (and it is correctly configured) then verification will succeed.
  230. If the OCSP responder is a "global responder" which can give details about
  231. multiple CAs and has its own separate certificate chain then its root
  232. CA can be trusted for OCSP signing. For example:
  233. openssl x509 -in ocspCA.pem -addtrust OCSPSigning -out trustedCA.pem
  234. Alternatively the responder certificate itself can be explicitly trusted
  235. with the B<-VAfile> option.
  236. =head1 NOTES
  237. As noted, most of the verify options are for testing or debugging purposes.
  238. Normally only the B<-CApath>, B<-CAfile> and (if the responder is a 'global
  239. VA') B<-VAfile> options need to be used.
  240. The OCSP server is only useful for test and demonstration purposes: it is
  241. not really usable as a full OCSP responder. It contains only a very
  242. simple HTTP request handling and can only handle the POST form of OCSP
  243. queries. It also handles requests serially meaning it cannot respond to
  244. new requests until it has processed the current one. The text index file
  245. format of revocation is also inefficient for large quantities of revocation
  246. data.
  247. It is possible to run the B<ocsp> application in responder mode via a CGI
  248. script using the B<respin> and B<respout> options.
  249. =head1 EXAMPLES
  250. Create an OCSP request and write it to a file:
  251. openssl ocsp -issuer issuer.pem -cert c1.pem -cert c2.pem -reqout req.der
  252. Send a query to an OCSP responder with URL http://ocsp.myhost.com/ save the
  253. response to a file and print it out in text form
  254. openssl ocsp -issuer issuer.pem -cert c1.pem -cert c2.pem \
  255. -url http://ocsp.myhost.com/ -resp_text -respout resp.der
  256. Read in an OCSP response and print out text form:
  257. openssl ocsp -respin resp.der -text
  258. OCSP server on port 8888 using a standard B<ca> configuration, and a separate
  259. responder certificate. All requests and responses are printed to a file.
  260. openssl ocsp -index demoCA/index.txt -port 8888 -rsigner rcert.pem -CA demoCA/cacert.pem
  261. -text -out log.txt
  262. As above but exit after processing one request:
  263. openssl ocsp -index demoCA/index.txt -port 8888 -rsigner rcert.pem -CA demoCA/cacert.pem
  264. -nrequest 1
  265. Query status information using internally generated request:
  266. openssl ocsp -index demoCA/index.txt -rsigner rcert.pem -CA demoCA/cacert.pem
  267. -issuer demoCA/cacert.pem -serial 1
  268. Query status information using request read from a file, write response to a
  269. second file.
  270. openssl ocsp -index demoCA/index.txt -rsigner rcert.pem -CA demoCA/cacert.pem
  271. -reqin req.der -respout resp.der
  272. =head1 HISTORY
  273. The -no_alt_chains options was first added to OpenSSL 1.0.2b.
  274. =cut