Dr. Stephen Henson | 797a89a | 2014-06-21 20:13:37 +0100 | [diff] [blame] | 1 | =pod |
| 2 | |
Richard Levitte | aec3ecd | 2016-05-21 20:49:33 +0200 | [diff] [blame] | 3 | =head1 NAME |
| 4 | |
Dr. Stephen Henson | 797a89a | 2014-06-21 20:13:37 +0100 | [diff] [blame] | 5 | OCSP_response_status, OCSP_response_get1_basic, OCSP_response_create, |
Matt Caswell | e12c0be | 2016-09-12 17:39:55 +0100 | [diff] [blame] | 6 | OCSP_RESPONSE_free, OCSP_RESPID_set_by_name, |
David Cooper | cace14b | 2018-01-24 11:47:23 -0500 | [diff] [blame] | 7 | OCSP_RESPID_set_by_key, OCSP_RESPID_match, |
| 8 | OCSP_basic_sign, OCSP_basic_sign_ctx - OCSP response functions |
Dr. Stephen Henson | 797a89a | 2014-06-21 20:13:37 +0100 | [diff] [blame] | 9 | |
| 10 | =head1 SYNOPSIS |
| 11 | |
| 12 | #include <openssl/ocsp.h> |
| 13 | |
| 14 | int OCSP_response_status(OCSP_RESPONSE *resp); |
| 15 | OCSP_BASICRESP *OCSP_response_get1_basic(OCSP_RESPONSE *resp); |
| 16 | OCSP_RESPONSE *OCSP_response_create(int status, OCSP_BASICRESP *bs); |
| 17 | void OCSP_RESPONSE_free(OCSP_RESPONSE *resp); |
| 18 | |
Matt Caswell | e12c0be | 2016-09-12 17:39:55 +0100 | [diff] [blame] | 19 | int OCSP_RESPID_set_by_name(OCSP_RESPID *respid, X509 *cert); |
| 20 | int OCSP_RESPID_set_by_key(OCSP_RESPID *respid, X509 *cert); |
Matt Caswell | a671b3e | 2016-09-13 23:26:53 +0100 | [diff] [blame] | 21 | int OCSP_RESPID_match(OCSP_RESPID *respid, X509 *cert); |
Matt Caswell | e12c0be | 2016-09-12 17:39:55 +0100 | [diff] [blame] | 22 | |
David Cooper | cace14b | 2018-01-24 11:47:23 -0500 | [diff] [blame] | 23 | int OCSP_basic_sign(OCSP_BASICRESP *brsp, X509 *signer, EVP_PKEY *key, |
| 24 | const EVP_MD *dgst, STACK_OF(X509) *certs, |
| 25 | unsigned long flags); |
| 26 | int OCSP_basic_sign_ctx(OCSP_BASICRESP *brsp, X509 *signer, EVP_MD_CTX *ctx, |
| 27 | STACK_OF(X509) *certs, unsigned long flags); |
| 28 | |
Dr. Stephen Henson | 797a89a | 2014-06-21 20:13:37 +0100 | [diff] [blame] | 29 | =head1 DESCRIPTION |
| 30 | |
| 31 | OCSP_response_status() returns the OCSP response status of B<resp>. It returns |
| 32 | one of the values: B<OCSP_RESPONSE_STATUS_SUCCESSFUL>, |
| 33 | B<OCSP_RESPONSE_STATUS_MALFORMEDREQUEST>, |
| 34 | B<OCSP_RESPONSE_STATUS_INTERNALERROR>, B<OCSP_RESPONSE_STATUS_TRYLATER> |
| 35 | B<OCSP_RESPONSE_STATUS_SIGREQUIRED>, or B<OCSP_RESPONSE_STATUS_UNAUTHORIZED>. |
| 36 | |
| 37 | OCSP_response_get1_basic() decodes and returns the B<OCSP_BASICRESP> structure |
Rich Salz | 1bc7451 | 2016-05-20 08:11:46 -0400 | [diff] [blame] | 38 | contained in B<resp>. |
Dr. Stephen Henson | 797a89a | 2014-06-21 20:13:37 +0100 | [diff] [blame] | 39 | |
| 40 | OCSP_response_create() creates and returns an B<OCSP_RESPONSE> structure for |
| 41 | B<status> and optionally including basic response B<bs>. |
| 42 | |
Alex Gaynor | b9b6a7e | 2016-03-20 11:51:06 -0400 | [diff] [blame] | 43 | OCSP_RESPONSE_free() frees up OCSP response B<resp>. |
Dr. Stephen Henson | 797a89a | 2014-06-21 20:13:37 +0100 | [diff] [blame] | 44 | |
Matt Caswell | e12c0be | 2016-09-12 17:39:55 +0100 | [diff] [blame] | 45 | OCSP_RESPID_set_by_name() sets the name of the OCSP_RESPID to be the same as the |
| 46 | subject name in the supplied X509 certificate B<cert> for the OCSP responder. |
| 47 | |
| 48 | OCSP_RESPID_set_by_key() sets the key of the OCSP_RESPID to be the same as the |
| 49 | key in the supplied X509 certificate B<cert> for the OCSP responder. The key is |
| 50 | stored as a SHA1 hash. |
| 51 | |
| 52 | Note that an OCSP_RESPID can only have one of the name, or the key set. Calling |
| 53 | OCSP_RESPID_set_by_name() or OCSP_RESPID_set_by_key() will clear any existing |
| 54 | setting. |
| 55 | |
Matt Caswell | a671b3e | 2016-09-13 23:26:53 +0100 | [diff] [blame] | 56 | OCSP_RESPID_match() tests whether the OCSP_RESPID given in B<respid> matches |
| 57 | with the X509 certificate B<cert>. |
| 58 | |
David Cooper | e23ac62 | 2018-01-24 12:27:19 -0500 | [diff] [blame] | 59 | OCSP_basic_sign() signs OCSP response B<brsp> using certificate B<signer>, private key |
| 60 | B<key>, digest B<dgst> and additional certificates B<certs>. If the B<flags> option |
| 61 | B<OCSP_NOCERTS> is set then no certificates will be included in the request. If the |
| 62 | B<flags> option B<OCSP_RESPID_KEY> is set then the responder is identified by key ID |
| 63 | rather than by name. OCSP_basic_sign_ctx() also signs OCSP response B<brsp> but |
| 64 | uses the parameters contained in digest context B<ctx>. |
David Cooper | cace14b | 2018-01-24 11:47:23 -0500 | [diff] [blame] | 65 | |
Dr. Stephen Henson | 797a89a | 2014-06-21 20:13:37 +0100 | [diff] [blame] | 66 | =head1 RETURN VALUES |
| 67 | |
| 68 | OCSP_RESPONSE_status() returns a status value. |
| 69 | |
| 70 | OCSP_response_get1_basic() returns an B<OCSP_BASICRESP> structure pointer or |
| 71 | B<NULL> if an error occurred. |
| 72 | |
| 73 | OCSP_response_create() returns an B<OCSP_RESPONSE> structure pointer or B<NULL> |
| 74 | if an error occurred. |
| 75 | |
| 76 | OCSP_RESPONSE_free() does not return a value. |
| 77 | |
David Cooper | cace14b | 2018-01-24 11:47:23 -0500 | [diff] [blame] | 78 | OCSP_RESPID_set_by_name(), OCSP_RESPID_set_by_key(), OCSP_basic_sign(), and |
| 79 | OCSP_basic_sign_ctx() return 1 on success or 0 |
Matt Caswell | e12c0be | 2016-09-12 17:39:55 +0100 | [diff] [blame] | 80 | on failure. |
| 81 | |
Matt Caswell | a671b3e | 2016-09-13 23:26:53 +0100 | [diff] [blame] | 82 | OCSP_RESPID_match() returns 1 if the OCSP_RESPID and the X509 certificate match |
| 83 | or 0 otherwise. |
| 84 | |
Dr. Stephen Henson | 797a89a | 2014-06-21 20:13:37 +0100 | [diff] [blame] | 85 | =head1 NOTES |
| 86 | |
| 87 | OCSP_response_get1_basic() is only called if the status of a response is |
| 88 | B<OCSP_RESPONSE_STATUS_SUCCESSFUL>. |
| 89 | |
| 90 | =head1 SEE ALSO |
| 91 | |
Richard Levitte | b97fdb5 | 2016-11-11 09:33:09 +0100 | [diff] [blame] | 92 | L<crypto(7)> |
Rich Salz | 9b86974 | 2015-08-17 15:21:33 -0400 | [diff] [blame] | 93 | L<OCSP_cert_to_id(3)> |
| 94 | L<OCSP_request_add1_nonce(3)> |
| 95 | L<OCSP_REQUEST_new(3)> |
Richard Levitte | b97fdb5 | 2016-11-11 09:33:09 +0100 | [diff] [blame] | 96 | L<OCSP_resp_find_status(3)> |
Rich Salz | 9b86974 | 2015-08-17 15:21:33 -0400 | [diff] [blame] | 97 | L<OCSP_sendreq_new(3)> |
Matt Caswell | e12c0be | 2016-09-12 17:39:55 +0100 | [diff] [blame] | 98 | L<OCSP_RESPID_new(3)> |
| 99 | L<OCSP_RESPID_free(3)> |
| 100 | |
| 101 | =head1 HISTORY |
| 102 | |
Matt Caswell | a671b3e | 2016-09-13 23:26:53 +0100 | [diff] [blame] | 103 | The OCSP_RESPID_set_by_name(), OCSP_RESPID_set_by_key() and OCSP_RESPID_match() |
Rich Salz | e90fc05 | 2017-07-15 09:39:45 -0400 | [diff] [blame] | 104 | functions were added in OpenSSL 1.1.0a. |
Dr. Stephen Henson | 797a89a | 2014-06-21 20:13:37 +0100 | [diff] [blame] | 105 | |
David Cooper | cace14b | 2018-01-24 11:47:23 -0500 | [diff] [blame] | 106 | The OCSP_basic_sign_ctx() function was added in OpenSSL 1.1.1. |
| 107 | |
Rich Salz | e2f9261 | 2016-05-18 11:44:05 -0400 | [diff] [blame] | 108 | =head1 COPYRIGHT |
| 109 | |
Matt Caswell | 6738bf1 | 2018-02-13 12:51:29 +0000 | [diff] [blame] | 110 | Copyright 2015-2018 The OpenSSL Project Authors. All Rights Reserved. |
Rich Salz | e2f9261 | 2016-05-18 11:44:05 -0400 | [diff] [blame] | 111 | |
| 112 | Licensed under the OpenSSL license (the "License"). You may not use |
| 113 | this file except in compliance with the License. You can obtain a copy |
| 114 | in the file LICENSE in the source distribution or at |
| 115 | L<https://www.openssl.org/source/license.html>. |
| 116 | |
| 117 | =cut |