]> git.ipfire.org Git - thirdparty/openssl.git/blame - include/openssl/ocsp.h.in
Fix OCSP_sendreq_nbio arg order
[thirdparty/openssl.git] / include / openssl / ocsp.h.in
CommitLineData
0f113f3e 1/*
fd3ed85c
MC
2 * {- join("\n * ", @autowarntext) -}
3 *
4333b89f 4 * Copyright 2000-2021 The OpenSSL Project Authors. All Rights Reserved.
eb64730b 5 *
48f4ad77 6 * Licensed under the Apache License 2.0 (the "License"). You may not use
21dcbebc
RS
7 * this file except in compliance with the License. You can obtain a copy
8 * in the file LICENSE in the source distribution or at
9 * https://www.openssl.org/source/license.html
eb64730b
RL
10 */
11
fd3ed85c
MC
12{-
13use OpenSSL::stackhash qw(generate_stack_macros);
14-}
15
ae4186b0
DMSP
16#ifndef OPENSSL_OCSP_H
17# define OPENSSL_OCSP_H
d86167ec
DMSP
18# pragma once
19
20# include <openssl/macros.h>
936c2b9e 21# ifndef OPENSSL_NO_DEPRECATED_3_0
d86167ec
DMSP
22# define HEADER_OCSP_H
23# endif
eb64730b 24
100cc8b0 25# include <openssl/opensslconf.h>
83b6dc8d
RS
26# include <openssl/http.h>
27# include <openssl/asn1.h>
5951e840
MC
28
29/*
30 * These definitions are outside the OPENSSL_NO_OCSP guard because although for
31 * historical reasons they have OCSP_* names, they can actually be used
32 * independently of OCSP. E.g. see RFC5280
33 */
34/*-
35 * CRLReason ::= ENUMERATED {
36 * unspecified (0),
37 * keyCompromise (1),
38 * cACompromise (2),
39 * affiliationChanged (3),
40 * superseded (4),
41 * cessationOfOperation (5),
42 * certificateHold (6),
7960dbec
DDO
43 * -- value 7 is not used
44 * removeFromCRL (8),
45 * privilegeWithdrawn (9),
46 * aACompromise (10) }
5951e840 47 */
100cc8b0
DDO
48# define OCSP_REVOKED_STATUS_NOSTATUS -1
49# define OCSP_REVOKED_STATUS_UNSPECIFIED 0
50# define OCSP_REVOKED_STATUS_KEYCOMPROMISE 1
51# define OCSP_REVOKED_STATUS_CACOMPROMISE 2
52# define OCSP_REVOKED_STATUS_AFFILIATIONCHANGED 3
53# define OCSP_REVOKED_STATUS_SUPERSEDED 4
54# define OCSP_REVOKED_STATUS_CESSATIONOFOPERATION 5
55# define OCSP_REVOKED_STATUS_CERTIFICATEHOLD 6
56# define OCSP_REVOKED_STATUS_REMOVEFROMCRL 8
57# define OCSP_REVOKED_STATUS_PRIVILEGEWITHDRAWN 9
58# define OCSP_REVOKED_STATUS_AACOMPROMISE 10
59
5951e840
MC
60
61# ifndef OPENSSL_NO_OCSP
62
5951e840
MC
63# include <openssl/x509.h>
64# include <openssl/x509v3.h>
65# include <openssl/safestack.h>
52df25cf 66# include <openssl/ocsperr.h>
eb64730b 67
100cc8b0 68# ifdef __cplusplus
eb64730b 69extern "C" {
100cc8b0 70# endif
eb64730b 71
0b33bc65
DSH
72/* Various flags and values */
73
5951e840
MC
74# define OCSP_DEFAULT_NONCE_LENGTH 16
75
76# define OCSP_NOCERTS 0x1
77# define OCSP_NOINTERN 0x2
78# define OCSP_NOSIGS 0x4
79# define OCSP_NOCHAIN 0x8
80# define OCSP_NOVERIFY 0x10
81# define OCSP_NOEXPLICIT 0x20
82# define OCSP_NOCASIGN 0x40
83# define OCSP_NODELEGATED 0x80
84# define OCSP_NOCHECKS 0x100
85# define OCSP_TRUSTOTHER 0x200
86# define OCSP_RESPID_KEY 0x400
87# define OCSP_NOTIME 0x800
0495a3ec 88# define OCSP_PARTIAL_CHAIN 0x1000
0b33bc65 89
852c2ed2 90typedef struct ocsp_cert_id_st OCSP_CERTID;
6ef869d7 91typedef struct ocsp_one_request_st OCSP_ONEREQ;
6ef869d7
DSH
92typedef struct ocsp_req_info_st OCSP_REQINFO;
93typedef struct ocsp_signature_st OCSP_SIGNATURE;
94typedef struct ocsp_request_st OCSP_REQUEST;
95
fd3ed85c
MC
96{-
97 generate_stack_macros("OCSP_CERTID")
98 .generate_stack_macros("OCSP_ONEREQ");
99-}
01659135 100
5951e840
MC
101# define OCSP_RESPONSE_STATUS_SUCCESSFUL 0
102# define OCSP_RESPONSE_STATUS_MALFORMEDREQUEST 1
103# define OCSP_RESPONSE_STATUS_INTERNALERROR 2
104# define OCSP_RESPONSE_STATUS_TRYLATER 3
105# define OCSP_RESPONSE_STATUS_SIGREQUIRED 5
106# define OCSP_RESPONSE_STATUS_UNAUTHORIZED 6
eb64730b 107
6ef869d7
DSH
108typedef struct ocsp_resp_bytes_st OCSP_RESPBYTES;
109
5951e840
MC
110# define V_OCSP_RESPID_NAME 0
111# define V_OCSP_RESPID_KEY 1
67c8e7f4 112
fd3ed85c
MC
113{-
114 generate_stack_macros("OCSP_RESPID");
115-}
67c8e7f4 116
6ef869d7 117typedef struct ocsp_revoked_info_st OCSP_REVOKEDINFO;
eb64730b 118
5951e840
MC
119# define V_OCSP_CERTSTATUS_GOOD 0
120# define V_OCSP_CERTSTATUS_REVOKED 1
121# define V_OCSP_CERTSTATUS_UNKNOWN 2
6ef869d7
DSH
122
123typedef struct ocsp_cert_status_st OCSP_CERTSTATUS;
124typedef struct ocsp_single_response_st OCSP_SINGLERESP;
eb64730b 125
fd3ed85c
MC
126{-
127 generate_stack_macros("OCSP_SINGLERESP");
128-}
eb64730b 129
6ef869d7
DSH
130typedef struct ocsp_response_data_st OCSP_RESPDATA;
131
132typedef struct ocsp_basic_response_st OCSP_BASICRESP;
eb64730b 133
6ef869d7
DSH
134typedef struct ocsp_crl_id_st OCSP_CRLID;
135typedef struct ocsp_service_locator_st OCSP_SERVICELOC;
0f113f3e 136
5951e840
MC
137# define PEM_STRING_OCSP_REQUEST "OCSP REQUEST"
138# define PEM_STRING_OCSP_RESPONSE "OCSP RESPONSE"
eb64730b 139
5951e840 140# define d2i_OCSP_REQUEST_bio(bp,p) ASN1_d2i_bio_of(OCSP_REQUEST,OCSP_REQUEST_new,d2i_OCSP_REQUEST,bp,p)
eb64730b 141
5951e840 142# define d2i_OCSP_RESPONSE_bio(bp,p) ASN1_d2i_bio_of(OCSP_RESPONSE,OCSP_RESPONSE_new,d2i_OCSP_RESPONSE,bp,p)
eb64730b 143
5951e840 144# define PEM_read_bio_OCSP_REQUEST(bp,x,cb) (OCSP_REQUEST *)PEM_ASN1_read_bio( \
37659ea4
BE
145 (char *(*)())d2i_OCSP_REQUEST,PEM_STRING_OCSP_REQUEST, \
146 bp,(char **)(x),cb,NULL)
eb64730b 147
8caab503 148# define PEM_read_bio_OCSP_RESPONSE(bp,x,cb) (OCSP_RESPONSE *)PEM_ASN1_read_bio(\
37659ea4
BE
149 (char *(*)())d2i_OCSP_RESPONSE,PEM_STRING_OCSP_RESPONSE, \
150 bp,(char **)(x),cb,NULL)
eb64730b 151
5951e840 152# define PEM_write_bio_OCSP_REQUEST(bp,o) \
eb64730b 153 PEM_ASN1_write_bio((int (*)())i2d_OCSP_REQUEST,PEM_STRING_OCSP_REQUEST,\
37659ea4 154 bp,(char *)(o), NULL,NULL,0,NULL,NULL)
eb64730b 155
5951e840 156# define PEM_write_bio_OCSP_RESPONSE(bp,o) \
eb64730b 157 PEM_ASN1_write_bio((int (*)())i2d_OCSP_RESPONSE,PEM_STRING_OCSP_RESPONSE,\
37659ea4 158 bp,(char *)(o), NULL,NULL,0,NULL,NULL)
eb64730b 159
5951e840 160# define i2d_OCSP_RESPONSE_bio(bp,o) ASN1_i2d_bio_of(OCSP_RESPONSE,i2d_OCSP_RESPONSE,bp,o)
eb64730b 161
5951e840 162# define i2d_OCSP_REQUEST_bio(bp,o) ASN1_i2d_bio_of(OCSP_REQUEST,i2d_OCSP_REQUEST,bp,o)
eb64730b 163
5951e840 164# define ASN1_BIT_STRING_digest(data,type,md,len) \
0f113f3e 165 ASN1_item_digest(ASN1_ITEM_rptr(ASN1_BIT_STRING),type,data,md,len)
eb64730b 166
5951e840 167# define OCSP_CERTSTATUS_dup(cs)\
8cc86b81
DDO
168 (OCSP_CERTSTATUS*)ASN1_dup((i2d_of_void *)i2d_OCSP_CERTSTATUS,\
169 (d2i_of_void *)d2i_OCSP_CERTSTATUS,(char *)(cs))
eb64730b 170
9fdcc21f 171DECLARE_ASN1_DUP_FUNCTION(OCSP_CERTID)
fb596f3b 172
83b6dc8d 173OSSL_HTTP_REQ_CTX *OCSP_sendreq_new(BIO *io, const char *path,
8f965908
DDO
174 const OCSP_REQUEST *req, int buf_size);
175OCSP_RESPONSE *OCSP_sendreq_bio(BIO *b, const char *path, OCSP_REQUEST *req);
29f178bd 176
ecef17c3 177# ifndef OPENSSL_NO_DEPRECATED_3_0
83b6dc8d 178typedef OSSL_HTTP_REQ_CTX OCSP_REQ_CTX;
8f965908
DDO
179# define OCSP_REQ_CTX_new(io, buf_size) \
180 OSSL_HTTP_REQ_CTX_new(io, io, buf_size)
181# define OCSP_REQ_CTX_free OSSL_HTTP_REQ_CTX_free
c9603dfa 182# define OCSP_REQ_CTX_http(rctx, op, path) \
534725fd
DDO
183 OSSL_HTTP_REQ_CTX_set_request_line(rctx, strcmp(op, "POST") == 0, \
184 NULL, NULL, path)
8f965908 185# define OCSP_REQ_CTX_add1_header OSSL_HTTP_REQ_CTX_add1_header
7031f582
DDO
186# define OCSP_REQ_CTX_i2d(r, it, req) \
187 OSSL_HTTP_REQ_CTX_set1_req(r, "application/ocsp-request", it, req)
188# define OCSP_REQ_CTX_set1_req(r, req) \
189 OCSP_REQ_CTX_i2d(r, ASN1_ITEM_rptr(OCSP_REQUEST), (ASN1_VALUE *)(req))
8f965908
DDO
190# define OCSP_REQ_CTX_nbio OSSL_HTTP_REQ_CTX_nbio
191# define OCSP_REQ_CTX_nbio_d2i OSSL_HTTP_REQ_CTX_nbio_d2i
dcc780cf 192# define OCSP_sendreq_nbio(p, r) \
8f965908
DDO
193 OSSL_HTTP_REQ_CTX_nbio_d2i(r, (ASN1_VALUE **)(p), \
194 ASN1_ITEM_rptr(OCSP_RESPONSE))
195# define OCSP_REQ_CTX_get0_mem_bio OSSL_HTTP_REQ_CTX_get0_mem_bio
196# define OCSP_set_max_response_length OSSL_HTTP_REQ_CTX_set_max_response_length
ecef17c3 197# endif
bf0d176e 198
68c12bfc
DSH
199OCSP_CERTID *OCSP_cert_to_id(const EVP_MD *dgst, const X509 *subject,
200 const X509 *issuer);
bf0d176e 201
0f113f3e 202OCSP_CERTID *OCSP_cert_id_new(const EVP_MD *dgst,
68c12bfc
DSH
203 const X509_NAME *issuerName,
204 const ASN1_BIT_STRING *issuerKey,
205 const ASN1_INTEGER *serialNumber);
eb64730b 206
0b33bc65 207OCSP_ONEREQ *OCSP_request_add0_id(OCSP_REQUEST *req, OCSP_CERTID *cid);
26e083cc 208
0b33bc65 209int OCSP_request_add1_nonce(OCSP_REQUEST *req, unsigned char *val, int len);
46a58ab9 210int OCSP_basic_add1_nonce(OCSP_BASICRESP *resp, unsigned char *val, int len);
0b33bc65 211int OCSP_check_nonce(OCSP_REQUEST *req, OCSP_BASICRESP *bs);
26e083cc
DSH
212int OCSP_copy_nonce(OCSP_BASICRESP *resp, OCSP_REQUEST *req);
213
8cc86b81 214int OCSP_request_set1_name(OCSP_REQUEST *req, const X509_NAME *nm);
0b33bc65 215int OCSP_request_add1_cert(OCSP_REQUEST *req, X509 *cert);
eb64730b 216
0f113f3e
MC
217int OCSP_request_sign(OCSP_REQUEST *req,
218 X509 *signer,
219 EVP_PKEY *key,
220 const EVP_MD *dgst,
221 STACK_OF(X509) *certs, unsigned long flags);
0b33bc65
DSH
222
223int OCSP_response_status(OCSP_RESPONSE *resp);
224OCSP_BASICRESP *OCSP_response_get1_basic(OCSP_RESPONSE *resp);
eb64730b 225
79613ea8 226const ASN1_OCTET_STRING *OCSP_resp_get0_signature(const OCSP_BASICRESP *bs);
20c36721
PK
227const X509_ALGOR *OCSP_resp_get0_tbs_sigalg(const OCSP_BASICRESP *bs);
228const OCSP_RESPDATA *OCSP_resp_get0_respdata(const OCSP_BASICRESP *bs);
ce5886dd
BK
229int OCSP_resp_get0_signer(OCSP_BASICRESP *bs, X509 **signer,
230 STACK_OF(X509) *extra_certs);
6ef869d7 231
b5524a3a
DSH
232int OCSP_resp_count(OCSP_BASICRESP *bs);
233OCSP_SINGLERESP *OCSP_resp_get0(OCSP_BASICRESP *bs, int idx);
79613ea8 234const ASN1_GENERALIZEDTIME *OCSP_resp_get0_produced_at(const OCSP_BASICRESP* bs);
02fb7cfe
DSH
235const STACK_OF(X509) *OCSP_resp_get0_certs(const OCSP_BASICRESP *bs);
236int OCSP_resp_get0_id(const OCSP_BASICRESP *bs,
237 const ASN1_OCTET_STRING **pid,
238 const X509_NAME **pname);
db17e43d
SS
239int OCSP_resp_get1_id(const OCSP_BASICRESP *bs,
240 ASN1_OCTET_STRING **pid,
241 X509_NAME **pname);
02fb7cfe 242
b5524a3a
DSH
243int OCSP_resp_find(OCSP_BASICRESP *bs, OCSP_CERTID *id, int last);
244int OCSP_single_get0_status(OCSP_SINGLERESP *single, int *reason,
0f113f3e
MC
245 ASN1_GENERALIZEDTIME **revtime,
246 ASN1_GENERALIZEDTIME **thisupd,
247 ASN1_GENERALIZEDTIME **nextupd);
b5524a3a 248int OCSP_resp_find_status(OCSP_BASICRESP *bs, OCSP_CERTID *id, int *status,
0f113f3e
MC
249 int *reason,
250 ASN1_GENERALIZEDTIME **revtime,
251 ASN1_GENERALIZEDTIME **thisupd,
252 ASN1_GENERALIZEDTIME **nextupd);
f1965221 253int OCSP_check_validity(ASN1_GENERALIZEDTIME *thisupd,
0f113f3e 254 ASN1_GENERALIZEDTIME *nextupd, long sec, long maxsec);
b5524a3a 255
0f113f3e
MC
256int OCSP_request_verify(OCSP_REQUEST *req, STACK_OF(X509) *certs,
257 X509_STORE *store, unsigned long flags);
eb64730b 258
bdde5b46 259# define OCSP_parse_url(url, host, port, path, ssl) \
7932982b 260 OSSL_HTTP_parse_url(url, ssl, NULL, host, port, NULL, path, NULL, NULL)
67c18019 261
cc6d9261
MC
262int OCSP_id_issuer_cmp(const OCSP_CERTID *a, const OCSP_CERTID *b);
263int OCSP_id_cmp(const OCSP_CERTID *a, const OCSP_CERTID *b);
0b33bc65 264
02e4fbed
DSH
265int OCSP_request_onereq_count(OCSP_REQUEST *req);
266OCSP_ONEREQ *OCSP_request_onereq_get0(OCSP_REQUEST *req, int i);
267OCSP_CERTID *OCSP_onereq_get0_id(OCSP_ONEREQ *one);
268int OCSP_id_get0_info(ASN1_OCTET_STRING **piNameHash, ASN1_OBJECT **pmd,
0f113f3e
MC
269 ASN1_OCTET_STRING **pikeyHash,
270 ASN1_INTEGER **pserial, OCSP_CERTID *cid);
fafc7f98 271int OCSP_request_is_signed(OCSP_REQUEST *req);
2b916952 272OCSP_RESPONSE *OCSP_response_create(int status, OCSP_BASICRESP *bs);
02e4fbed 273OCSP_SINGLERESP *OCSP_basic_add1_status(OCSP_BASICRESP *rsp,
0f113f3e
MC
274 OCSP_CERTID *cid,
275 int status, int reason,
276 ASN1_TIME *revtime,
277 ASN1_TIME *thisupd,
278 ASN1_TIME *nextupd);
02e4fbed 279int OCSP_basic_add1_cert(OCSP_BASICRESP *resp, X509 *cert);
0f113f3e
MC
280int OCSP_basic_sign(OCSP_BASICRESP *brsp,
281 X509 *signer, EVP_PKEY *key, const EVP_MD *dgst,
282 STACK_OF(X509) *certs, unsigned long flags);
b4dd21a7
DC
283int OCSP_basic_sign_ctx(OCSP_BASICRESP *brsp,
284 X509 *signer, EVP_MD_CTX *ctx,
285 STACK_OF(X509) *certs, unsigned long flags);
e12c0beb 286int OCSP_RESPID_set_by_name(OCSP_RESPID *respid, X509 *cert);
be6aeda6 287int OCSP_RESPID_set_by_key_ex(OCSP_RESPID *respid, X509 *cert,
b4250010 288 OSSL_LIB_CTX *libctx, const char *propq);
e12c0beb 289int OCSP_RESPID_set_by_key(OCSP_RESPID *respid, X509 *cert);
b4250010 290int OCSP_RESPID_match_ex(OCSP_RESPID *respid, X509 *cert, OSSL_LIB_CTX *libctx,
be6aeda6 291 const char *propq);
a671b3e6 292int OCSP_RESPID_match(OCSP_RESPID *respid, X509 *cert);
eb64730b 293
a026fbf9 294X509_EXTENSION *OCSP_crlID_new(const char *url, long *n, char *tim);
eb64730b
RL
295
296X509_EXTENSION *OCSP_accept_responses_new(char **oids);
297
0f113f3e 298X509_EXTENSION *OCSP_archive_cutoff_new(char *tim);
eb64730b 299
8cc86b81 300X509_EXTENSION *OCSP_url_svcloc_new(const X509_NAME *issuer, const char **urls);
eb64730b 301
ec558b65
DSH
302int OCSP_REQUEST_get_ext_count(OCSP_REQUEST *x);
303int OCSP_REQUEST_get_ext_by_NID(OCSP_REQUEST *x, int nid, int lastpos);
c47ba4e9 304int OCSP_REQUEST_get_ext_by_OBJ(OCSP_REQUEST *x, const ASN1_OBJECT *obj,
0f113f3e 305 int lastpos);
ec558b65
DSH
306int OCSP_REQUEST_get_ext_by_critical(OCSP_REQUEST *x, int crit, int lastpos);
307X509_EXTENSION *OCSP_REQUEST_get_ext(OCSP_REQUEST *x, int loc);
308X509_EXTENSION *OCSP_REQUEST_delete_ext(OCSP_REQUEST *x, int loc);
0f113f3e
MC
309void *OCSP_REQUEST_get1_ext_d2i(OCSP_REQUEST *x, int nid, int *crit,
310 int *idx);
ec558b65 311int OCSP_REQUEST_add1_ext_i2d(OCSP_REQUEST *x, int nid, void *value, int crit,
0f113f3e 312 unsigned long flags);
ec558b65
DSH
313int OCSP_REQUEST_add_ext(OCSP_REQUEST *x, X509_EXTENSION *ex, int loc);
314
315int OCSP_ONEREQ_get_ext_count(OCSP_ONEREQ *x);
316int OCSP_ONEREQ_get_ext_by_NID(OCSP_ONEREQ *x, int nid, int lastpos);
c47ba4e9 317int OCSP_ONEREQ_get_ext_by_OBJ(OCSP_ONEREQ *x, const ASN1_OBJECT *obj, int lastpos);
ec558b65
DSH
318int OCSP_ONEREQ_get_ext_by_critical(OCSP_ONEREQ *x, int crit, int lastpos);
319X509_EXTENSION *OCSP_ONEREQ_get_ext(OCSP_ONEREQ *x, int loc);
320X509_EXTENSION *OCSP_ONEREQ_delete_ext(OCSP_ONEREQ *x, int loc);
321void *OCSP_ONEREQ_get1_ext_d2i(OCSP_ONEREQ *x, int nid, int *crit, int *idx);
322int OCSP_ONEREQ_add1_ext_i2d(OCSP_ONEREQ *x, int nid, void *value, int crit,
0f113f3e 323 unsigned long flags);
ec558b65
DSH
324int OCSP_ONEREQ_add_ext(OCSP_ONEREQ *x, X509_EXTENSION *ex, int loc);
325
326int OCSP_BASICRESP_get_ext_count(OCSP_BASICRESP *x);
327int OCSP_BASICRESP_get_ext_by_NID(OCSP_BASICRESP *x, int nid, int lastpos);
c47ba4e9 328int OCSP_BASICRESP_get_ext_by_OBJ(OCSP_BASICRESP *x, const ASN1_OBJECT *obj,
0f113f3e
MC
329 int lastpos);
330int OCSP_BASICRESP_get_ext_by_critical(OCSP_BASICRESP *x, int crit,
331 int lastpos);
ec558b65
DSH
332X509_EXTENSION *OCSP_BASICRESP_get_ext(OCSP_BASICRESP *x, int loc);
333X509_EXTENSION *OCSP_BASICRESP_delete_ext(OCSP_BASICRESP *x, int loc);
0f113f3e
MC
334void *OCSP_BASICRESP_get1_ext_d2i(OCSP_BASICRESP *x, int nid, int *crit,
335 int *idx);
336int OCSP_BASICRESP_add1_ext_i2d(OCSP_BASICRESP *x, int nid, void *value,
337 int crit, unsigned long flags);
ec558b65
DSH
338int OCSP_BASICRESP_add_ext(OCSP_BASICRESP *x, X509_EXTENSION *ex, int loc);
339
340int OCSP_SINGLERESP_get_ext_count(OCSP_SINGLERESP *x);
341int OCSP_SINGLERESP_get_ext_by_NID(OCSP_SINGLERESP *x, int nid, int lastpos);
c47ba4e9 342int OCSP_SINGLERESP_get_ext_by_OBJ(OCSP_SINGLERESP *x, const ASN1_OBJECT *obj,
0f113f3e
MC
343 int lastpos);
344int OCSP_SINGLERESP_get_ext_by_critical(OCSP_SINGLERESP *x, int crit,
345 int lastpos);
ec558b65
DSH
346X509_EXTENSION *OCSP_SINGLERESP_get_ext(OCSP_SINGLERESP *x, int loc);
347X509_EXTENSION *OCSP_SINGLERESP_delete_ext(OCSP_SINGLERESP *x, int loc);
0f113f3e
MC
348void *OCSP_SINGLERESP_get1_ext_d2i(OCSP_SINGLERESP *x, int nid, int *crit,
349 int *idx);
350int OCSP_SINGLERESP_add1_ext_i2d(OCSP_SINGLERESP *x, int nid, void *value,
351 int crit, unsigned long flags);
ec558b65 352int OCSP_SINGLERESP_add_ext(OCSP_SINGLERESP *x, X509_EXTENSION *ex, int loc);
79613ea8 353const OCSP_CERTID *OCSP_SINGLERESP_get0_id(const OCSP_SINGLERESP *x);
ec558b65 354
c08523d8 355DECLARE_ASN1_FUNCTIONS(OCSP_SINGLERESP)
73e92de5
DSH
356DECLARE_ASN1_FUNCTIONS(OCSP_CERTSTATUS)
357DECLARE_ASN1_FUNCTIONS(OCSP_REVOKEDINFO)
358DECLARE_ASN1_FUNCTIONS(OCSP_BASICRESP)
359DECLARE_ASN1_FUNCTIONS(OCSP_RESPDATA)
360DECLARE_ASN1_FUNCTIONS(OCSP_RESPID)
361DECLARE_ASN1_FUNCTIONS(OCSP_RESPONSE)
362DECLARE_ASN1_FUNCTIONS(OCSP_RESPBYTES)
363DECLARE_ASN1_FUNCTIONS(OCSP_ONEREQ)
364DECLARE_ASN1_FUNCTIONS(OCSP_CERTID)
365DECLARE_ASN1_FUNCTIONS(OCSP_REQUEST)
366DECLARE_ASN1_FUNCTIONS(OCSP_SIGNATURE)
1f47ec53 367DECLARE_ASN1_FUNCTIONS(OCSP_REQINFO)
c08523d8 368DECLARE_ASN1_FUNCTIONS(OCSP_CRLID)
c08523d8 369DECLARE_ASN1_FUNCTIONS(OCSP_SERVICELOC)
eb64730b 370
ebc06fba
AP
371const char *OCSP_response_status_str(long s);
372const char *OCSP_cert_status_str(long s);
373const char *OCSP_crl_reason_str(long s);
73758d43 374
0f113f3e
MC
375int OCSP_REQUEST_print(BIO *bp, OCSP_REQUEST *a, unsigned long flags);
376int OCSP_RESPONSE_print(BIO *bp, OCSP_RESPONSE *o, unsigned long flags);
73e92de5 377
9b4dc830 378int OCSP_basic_verify(OCSP_BASICRESP *bs, STACK_OF(X509) *certs,
0f113f3e 379 X509_STORE *st, unsigned long flags);
73e92de5 380
eb64730b 381
0cd0a820 382# ifdef __cplusplus
eb64730b 383}
0cd0a820 384# endif
b5adba20 385# endif /* !defined(OPENSSL_NO_OCSP) */
eb64730b 386#endif