Home | History | Annotate | Line # | Download | only in man1
      1 =pod
      2 {- OpenSSL::safe::output_do_not_edit_headers(); -}
      3 
      4 =head1 NAME
      5 
      6 openssl-ocsp - Online Certificate Status Protocol command
      7 
      8 =head1 SYNOPSIS
      9 
     10 =head2 OCSP Client
     11 
     12 B<openssl> B<ocsp>
     13 [B<-help>]
     14 [B<-out> I<file>]
     15 [B<-issuer> I<file>]
     16 [B<-cert> I<file>]
     17 [B<-no_certs>]
     18 [B<-serial> I<n>]
     19 [B<-signer> I<file>]
     20 [B<-signkey> I<file>]
     21 [B<-sign_other> I<file>]
     22 [B<-nonce>]
     23 [B<-no_nonce>]
     24 [B<-req_text>]
     25 [B<-resp_text>]
     26 [B<-text>]
     27 [B<-reqout> I<filename>]
     28 [B<-respout> I<filename>]
     29 [B<-reqin> I<filename>]
     30 [B<-respin> I<filename>]
     31 [B<-url> I<URL>]
     32 [B<-host> I<host>:I<port>]
     33 [B<-path> I<pathname>]
     34 [B<-proxy> I<[http[s]://][userinfo@]host[:port][/path][?query][#fragment]>]
     35 [B<-no_proxy> I<addresses>]
     36 [B<-header>]
     37 [B<-timeout> I<seconds>]
     38 [B<-VAfile> I<file>]
     39 [B<-validity_period> I<n>]
     40 [B<-status_age> I<n>]
     41 [B<-noverify>]
     42 [B<-verify_other> I<file>]
     43 [B<-trust_other>]
     44 [B<-no_intern>]
     45 [B<-no_signature_verify>]
     46 [B<-no_cert_verify>]
     47 [B<-no_chain>]
     48 [B<-no_cert_checks>]
     49 [B<-no_explicit>]
     50 [B<-port> I<num>]
     51 [B<-ignore_err>]
     52 
     53 =head2 OCSP Server
     54 
     55 B<openssl> B<ocsp>
     56 [B<-index> I<file>]
     57 [B<-CA> I<file>]
     58 [B<-rsigner> I<file>]
     59 [B<-rkey> I<file>]
     60 [B<-passin> I<arg>]
     61 [B<-rother> I<file>]
     62 [B<-rsigopt> I<nm>:I<v>]
     63 [B<-rmd> I<digest>]
     64 [B<-badsig>]
     65 [B<-resp_no_certs>]
     66 [B<-nmin> I<n>]
     67 [B<-ndays> I<n>]
     68 [B<-resp_key_id>]
     69 [B<-nrequest> I<n>]
     70 [B<-multi> I<process-count>]
     71 [B<-rcid> I<digest>]
     72 [B<-I<digest>>]
     73 {- $OpenSSL::safe::opt_trust_synopsis -}
     74 {- $OpenSSL::safe::opt_v_synopsis -}
     75 {- $OpenSSL::safe::opt_provider_synopsis -}
     76 
     77 =head1 DESCRIPTION
     78 
     79 The Online Certificate Status Protocol (OCSP) enables applications to
     80 determine the (revocation) state of an identified certificate (RFC 2560).
     81 
     82 This command performs many common OCSP tasks. It can be used
     83 to print out requests and responses, create requests and send queries
     84 to an OCSP responder and behave like a mini OCSP server itself.
     85 
     86 =head1 OPTIONS
     87 
     88 This command operates as either a client or a server.
     89 The options are described below, divided into those two modes.
     90 
     91 =head2 OCSP Client Options
     92 
     93 =over 4
     94 
     95 =item B<-help>
     96 
     97 Print out a usage message.
     98 
     99 =item B<-out> I<filename>
    100 
    101 specify output filename, default is standard output.
    102 
    103 =item B<-issuer> I<filename>
    104 
    105 This specifies the current issuer certificate.
    106 The input can be in PEM, DER, or PKCS#12 format.
    107 
    108 This option can be used multiple times.
    109 This option B<MUST> come before any B<-cert> options.
    110 
    111 =item B<-cert> I<filename>
    112 
    113 Add the certificate I<filename> to the request.
    114 The input can be in PEM, DER, or PKCS#12 format.
    115 
    116 This option can be used multiple times.
    117 The issuer certificate is taken from the previous B<-issuer> option,
    118 or an error occurs if no issuer certificate is specified.
    119 
    120 =item B<-no_certs>
    121 
    122 Don't include any certificates in signed request.
    123 
    124 =item B<-serial> I<num>
    125 
    126 Same as the B<-cert> option except the certificate with serial number
    127 B<num> is added to the request. The serial number is interpreted as a
    128 decimal integer unless preceded by C<0x>. Negative integers can also
    129 be specified by preceding the value by a C<-> sign.
    130 
    131 =item B<-signer> I<filename>, B<-signkey> I<filename>
    132 
    133 Sign the OCSP request using the certificate specified in the B<-signer>
    134 option and the private key specified by the B<-signkey> option.
    135 The input can be in PEM, DER, or PKCS#12 format.
    136 
    137 If the B<-signkey> option is not present then the private key is read
    138 from the same file as the certificate. If neither option is specified then
    139 the OCSP request is not signed.
    140 
    141 =item B<-sign_other> I<filename>
    142 
    143 Additional certificates to include in the signed request.
    144 The input can be in PEM, DER, or PKCS#12 format.
    145 
    146 =item B<-nonce>, B<-no_nonce>
    147 
    148 Add an OCSP nonce extension to a request or disable OCSP nonce addition.
    149 Normally if an OCSP request is input using the B<-reqin> option no
    150 nonce is added: using the B<-nonce> option will force addition of a nonce.
    151 If an OCSP request is being created (using B<-cert> and B<-serial> options)
    152 a nonce is automatically added specifying B<-no_nonce> overrides this.
    153 
    154 =item B<-req_text>, B<-resp_text>, B<-text>
    155 
    156 Print out the text form of the OCSP request, response or both respectively.
    157 
    158 =item B<-reqout> I<file>, B<-respout> I<filename>
    159 
    160 Write out the DER-encoded OCSP request or response to I<filename>.
    161 The output filename can be the same as the input filename,
    162 which leads to replacing the file contents.
    163 Note that file I/O is not atomic. The output file is truncated and then written.
    164 
    165 =item B<-reqin> I<file>, B<-respin> I<filename>
    166 
    167 Read OCSP request or response file from I<file>. These option are ignored
    168 if OCSP request or response creation is implied by other options (for example
    169 with B<-serial>, B<-cert> and B<-host> options).
    170 
    171 =item B<-url> I<responder_url>
    172 
    173 Specify the responder host and optionally port and path via a URL.
    174 Both HTTP and HTTPS (SSL/TLS) URLs can be specified.
    175 The optional userinfo and fragment components are ignored.
    176 Any given query component is handled as part of the path component.
    177 For details, see the B<-host> and B<-path> options described next.
    178 
    179 =item B<-host> I<host>:I<port>, B<-path> I<pathname>
    180 
    181 If the B<-host> option is present then the OCSP request is sent to the host
    182 I<host> on port I<port>.
    183 The I<host> may be a domain name or an IP (v4 or v6) address,
    184 such as C<127.0.0.1> or C<[::1]> for localhost.
    185 If it is an IPv6 address, it must be enclosed in C<[> and C<]>.
    186 
    187 The B<-path> option specifies the HTTP pathname to use or "/" by default.
    188 This is equivalent to specifying B<-url> with scheme
    189 http:// and the given I<host>, I<port>, and optional I<pathname>.
    190 
    191 =item B<-proxy> I<[http[s]://][userinfo@]host[:port][/path][?query][#fragment]>
    192 
    193 The HTTP(S) proxy server to use for reaching the OCSP server unless B<-no_proxy>
    194 applies, see below.
    195 If the host string is an IPv6 address, it must be enclosed in C<[> and C<]>.
    196 The proxy port defaults to 80 or 443 if the scheme is C<https>; apart from that
    197 the optional C<http://> or C<https://> prefix is ignored,
    198 as well as any userinfo, path, query, and fragment components.
    199 Defaults to the environment variable C<http_proxy> if set, else C<HTTP_PROXY>
    200 in case no TLS is used, otherwise C<https_proxy> if set, else C<HTTPS_PROXY>.
    201 
    202 =item B<-no_proxy> I<addresses>
    203 
    204 List of IP addresses and/or DNS names of servers
    205 not to use an HTTP(S) proxy for, separated by commas and/or whitespace
    206 (where in the latter case the whole argument must be enclosed in "...").
    207 Default is from the environment variable C<no_proxy> if set, else C<NO_PROXY>.
    208 
    209 =item B<-header> I<name>=I<value>
    210 
    211 Adds the header I<name> with the specified I<value> to the OCSP request
    212 that is sent to the responder.
    213 This may be repeated.
    214 
    215 =item B<-timeout> I<seconds>
    216 
    217 Connection timeout to the OCSP responder in seconds.
    218 On POSIX systems, when running as an OCSP responder, this option also limits
    219 the time that the responder is willing to wait for the client request.
    220 This time is measured from the time the responder accepts the connection until
    221 the complete request is received.
    222 
    223 =item B<-verify_other> I<file>
    224 
    225 File or URI containing additional certificates to search
    226 when attempting to locate
    227 the OCSP response signing certificate. Some responders omit the actual signer's
    228 certificate from the response: this option can be used to supply the necessary
    229 certificate in such cases.
    230 The input can be in PEM, DER, or PKCS#12 format.
    231 
    232 =item B<-trust_other>
    233 
    234 The certificates specified by the B<-verify_other> option should be explicitly
    235 trusted and no additional checks will be performed on them. This is useful
    236 when the complete responder certificate chain is not available or trusting a
    237 root CA is not appropriate.
    238 
    239 =item B<-VAfile> I<file>
    240 
    241 File or URI containing explicitly trusted responder certificates.
    242 Equivalent to the B<-verify_other> and B<-trust_other> options.
    243 The input can be in PEM, DER, or PKCS#12 format.
    244 
    245 =item B<-noverify>
    246 
    247 Don't attempt to verify the OCSP response signature or the nonce
    248 values. This option will normally only be used for debugging since it
    249 disables all verification of the responders certificate.
    250 
    251 =item B<-no_intern>
    252 
    253 Ignore certificates contained in the OCSP response when searching for the
    254 signers certificate. With this option the signers certificate must be specified
    255 with either the B<-verify_other> or B<-VAfile> options.
    256 
    257 =item B<-no_signature_verify>
    258 
    259 Don't check the signature on the OCSP response. Since this option
    260 tolerates invalid signatures on OCSP responses it will normally only be
    261 used for testing purposes.
    262 
    263 =item B<-no_cert_verify>
    264 
    265 Don't verify the OCSP response signers certificate at all. Since this
    266 option allows the OCSP response to be signed by any certificate it should
    267 only be used for testing purposes.
    268 
    269 =item B<-no_chain>
    270 
    271 Do not use certificates in the response as additional untrusted CA
    272 certificates.
    273 
    274 =item B<-no_explicit>
    275 
    276 Do not explicitly trust the root CA if it is set to be trusted for OCSP signing.
    277 
    278 =item B<-no_cert_checks>
    279 
    280 Don't perform any additional checks on the OCSP response signers certificate.
    281 That is do not make any checks to see if the signers certificate is authorised
    282 to provide the necessary status information: as a result this option should
    283 only be used for testing purposes.
    284 
    285 =item B<-validity_period> I<nsec>, B<-status_age> I<age>
    286 
    287 These options specify the range of times, in seconds, which will be tolerated
    288 in an OCSP response. Each certificate status response includes a B<notBefore>
    289 time and an optional B<notAfter> time. The current time should fall between
    290 these two values, but the interval between the two times may be only a few
    291 seconds. In practice the OCSP responder and clients clocks may not be precisely
    292 synchronised and so such a check may fail. To avoid this the
    293 B<-validity_period> option can be used to specify an acceptable error range in
    294 seconds, the default value is 5 minutes.
    295 
    296 If the B<notAfter> time is omitted from a response then this means that new
    297 status information is immediately available. In this case the age of the
    298 B<notBefore> field is checked to see it is not older than I<age> seconds old.
    299 By default this additional check is not performed.
    300 
    301 =item B<-rcid> I<digest>
    302 
    303 This option sets the digest algorithm to use for certificate identification
    304 in the OCSP response. Any digest supported by the L<openssl-dgst(1)> command can
    305 be used. The default is the same digest algorithm used in the request.
    306 
    307 =item B<-I<digest>>
    308 
    309 This option sets digest algorithm to use for certificate identification in the
    310 OCSP request. Any digest supported by the OpenSSL B<dgst> command can be used.
    311 The default is SHA-1. This option may be used multiple times to specify the
    312 digest used by subsequent certificate identifiers.
    313 
    314 {- $OpenSSL::safe::opt_trust_item -}
    315 
    316 {- $OpenSSL::safe::opt_v_item -}
    317 
    318 {- $OpenSSL::safe::opt_provider_item -}
    319 
    320 =back
    321 
    322 =head2 OCSP Server Options
    323 
    324 =over 4
    325 
    326 =item B<-index> I<indexfile>
    327 
    328 The I<indexfile> parameter is the name of a text index file in B<ca>
    329 format containing certificate revocation information.
    330 
    331 If the B<-index> option is specified then this command switches to
    332 responder mode, otherwise it is in client mode. The request(s) the responder
    333 processes can be either specified on the command line (using B<-issuer>
    334 and B<-serial> options), supplied in a file (using the B<-reqin> option)
    335 or via external OCSP clients (if B<-port> or B<-url> is specified).
    336 
    337 If the B<-index> option is present then the B<-CA> and B<-rsigner> options
    338 must also be present.
    339 
    340 =item B<-CA> I<file>
    341 
    342 CA certificates corresponding to the revocation information in the index
    343 file given with B<-index>.
    344 The input can be in PEM, DER, or PKCS#12 format.
    345 
    346 =item B<-rsigner> I<file>
    347 
    348 The certificate to sign OCSP responses with.
    349 The input can be in PEM, DER, or PKCS#12 format.
    350 
    351 =item B<-rkey> I<file>
    352 
    353 The private key to sign OCSP responses with: if not present the file
    354 specified in the B<-rsigner> option is used.
    355 
    356 =item B<-passin> I<arg>
    357 
    358 The private key password source. For more information about the format of I<arg>
    359 see L<openssl-passphrase-options(1)>.
    360 
    361 =item B<-rother> I<file>
    362 
    363 Additional certificates to include in the OCSP response.
    364 The input can be in PEM, DER, or PKCS#12 format.
    365 
    366 =item B<-rsigopt> I<nm>:I<v>
    367 
    368 Pass options to the signature algorithm when signing OCSP responses.
    369 Names and values of these options are algorithm-specific.
    370 
    371 =item B<-rmd> I<digest>
    372 
    373 The digest to use when signing the response.
    374 
    375 =item B<-badsig>
    376 
    377 Corrupt the response signature before writing it; this can be useful
    378 for testing.
    379 
    380 =item B<-resp_no_certs>
    381 
    382 Don't include any certificates in the OCSP response.
    383 
    384 =item B<-resp_key_id>
    385 
    386 Identify the signer certificate using the key ID, default is to use the
    387 subject name.
    388 
    389 =item B<-port> I<portnum>
    390 
    391 Port to listen for OCSP requests on. Both IPv4 and IPv6 are possible.
    392 The port may also be specified using the B<-url> option.
    393 A C<0> argument indicates that any available port shall be chosen automatically.
    394 
    395 =item B<-ignore_err>
    396 
    397 Ignore malformed requests or responses: When acting as an OCSP client, retry if
    398 a malformed response is received. When acting as an OCSP responder, continue
    399 running instead of terminating upon receiving a malformed request.
    400 
    401 =item B<-nrequest> I<number>
    402 
    403 The OCSP server will exit after receiving I<number> requests, default unlimited.
    404 
    405 =item B<-multi> I<process-count>
    406 
    407 Run the specified number of OCSP responder child processes, with the parent
    408 process respawning child processes as needed.
    409 Child processes will detect changes in the CA index file and automatically
    410 reload it.
    411 When running as a responder B<-timeout> option is recommended to limit the time
    412 each child is willing to wait for the client's OCSP response.
    413 This option is available on POSIX systems (that support the fork() and other
    414 required unix system-calls).
    415 
    416 =item B<-nmin> I<minutes>, B<-ndays> I<days>
    417 
    418 Number of minutes or days when fresh revocation information is available:
    419 used in the B<nextUpdate> field. If neither option is present then the
    420 B<nextUpdate> field is omitted meaning fresh revocation information is
    421 immediately available.
    422 
    423 =back
    424 
    425 =head1 OCSP RESPONSE VERIFICATION
    426 
    427 OCSP Response follows the rules specified in RFC2560.
    428 
    429 Initially the OCSP responder certificate is located and the signature on
    430 the OCSP request checked using the responder certificate's public key.
    431 
    432 Then a normal certificate verify is performed on the OCSP responder certificate
    433 building up a certificate chain in the process. The locations of the trusted
    434 certificates used to build the chain can be specified by the B<-CAfile>,
    435 B<-CApath> or B<-CAstore> options or they will be looked for in the
    436 standard OpenSSL certificates directory.
    437 
    438 If the initial verify fails then the OCSP verify process halts with an
    439 error.
    440 
    441 Otherwise the issuing CA certificate in the request is compared to the OCSP
    442 responder certificate: if there is a match then the OCSP verify succeeds.
    443 
    444 Otherwise the OCSP responder certificate's CA is checked against the issuing
    445 CA certificate in the request. If there is a match and the OCSPSigning
    446 extended key usage is present in the OCSP responder certificate then the
    447 OCSP verify succeeds.
    448 
    449 Otherwise, if B<-no_explicit> is B<not> set the root CA of the OCSP responders
    450 CA is checked to see if it is trusted for OCSP signing. If it is the OCSP
    451 verify succeeds.
    452 
    453 If none of these checks is successful then the OCSP verify fails.
    454 
    455 What this effectively means if that if the OCSP responder certificate is
    456 authorised directly by the CA it is issuing revocation information about
    457 (and it is correctly configured) then verification will succeed.
    458 
    459 If the OCSP responder is a "global responder" which can give details about
    460 multiple CAs and has its own separate certificate chain then its root
    461 CA can be trusted for OCSP signing. For example:
    462 
    463  openssl x509 -in ocspCA.pem -addtrust OCSPSigning -out trustedCA.pem
    464 
    465 Alternatively the responder certificate itself can be explicitly trusted
    466 with the B<-VAfile> option.
    467 
    468 =head1 NOTES
    469 
    470 As noted, most of the verify options are for testing or debugging purposes.
    471 Normally only the B<-CApath>, B<-CAfile>, B<-CAstore> and (if the responder
    472 is a 'global VA') B<-VAfile> options need to be used.
    473 
    474 The OCSP server is only useful for test and demonstration purposes: it is
    475 not really usable as a full OCSP responder. It contains only a very
    476 simple HTTP request handling and can only handle the POST form of OCSP
    477 queries. It also handles requests serially meaning it cannot respond to
    478 new requests until it has processed the current one. The text index file
    479 format of revocation is also inefficient for large quantities of revocation
    480 data.
    481 
    482 It is possible to run this command in responder mode via a CGI
    483 script using the B<-reqin> and B<-respout> options.
    484 
    485 =head1 EXAMPLES
    486 
    487 Create an OCSP request and write it to a file:
    488 
    489  openssl ocsp -issuer issuer.pem -cert c1.pem -cert c2.pem -reqout req.der
    490 
    491 Send a query to an OCSP responder with URL http://ocsp.myhost.com/ save the
    492 response to a file, print it out in text form, and verify the response:
    493 
    494  openssl ocsp -issuer issuer.pem -cert c1.pem -cert c2.pem \
    495      -url http://ocsp.myhost.com/ -resp_text -respout resp.der
    496 
    497 Read in an OCSP response and print out text form:
    498 
    499  openssl ocsp -respin resp.der -text -noverify
    500 
    501 OCSP server on port 8888 using a standard B<ca> configuration, and a separate
    502 responder certificate. All requests and responses are printed to a file.
    503 
    504  openssl ocsp -index demoCA/index.txt -port 8888 -rsigner rcert.pem -CA demoCA/cacert.pem
    505         -text -out log.txt
    506 
    507 As above but exit after processing one request:
    508 
    509  openssl ocsp -index demoCA/index.txt -port 8888 -rsigner rcert.pem -CA demoCA/cacert.pem
    510      -nrequest 1
    511 
    512 Query status information using an internally generated request:
    513 
    514  openssl ocsp -index demoCA/index.txt -rsigner rcert.pem -CA demoCA/cacert.pem
    515      -issuer demoCA/cacert.pem -serial 1
    516 
    517 Query status information using request read from a file, and write the response
    518 to a second file.
    519 
    520  openssl ocsp -index demoCA/index.txt -rsigner rcert.pem -CA demoCA/cacert.pem
    521      -reqin req.der -respout resp.der
    522 
    523 =head1 HISTORY
    524 
    525 The -no_alt_chains option was added in OpenSSL 1.1.0.
    526 
    527 =head1 COPYRIGHT
    528 
    529 Copyright 2001-2023 The OpenSSL Project Authors. All Rights Reserved.
    530 
    531 Licensed under the Apache License 2.0 (the "License").  You may not use
    532 this file except in compliance with the License.  You can obtain a copy
    533 in the file LICENSE in the source distribution or at
    534 L<https://www.openssl.org/source/license.html>.
    535 
    536 =cut
    537