jpayne@69
|
1 /*
|
jpayne@69
|
2 * Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.
|
jpayne@69
|
3 *
|
jpayne@69
|
4 * Licensed under the OpenSSL license (the "License"). You may not use
|
jpayne@69
|
5 * this file except in compliance with the License. You can obtain a copy
|
jpayne@69
|
6 * in the file LICENSE in the source distribution or at
|
jpayne@69
|
7 * https://www.openssl.org/source/license.html
|
jpayne@69
|
8 */
|
jpayne@69
|
9
|
jpayne@69
|
10 #ifndef HEADER_OCSP_H
|
jpayne@69
|
11 # define HEADER_OCSP_H
|
jpayne@69
|
12
|
jpayne@69
|
13 #include <openssl/opensslconf.h>
|
jpayne@69
|
14
|
jpayne@69
|
15 /*
|
jpayne@69
|
16 * These definitions are outside the OPENSSL_NO_OCSP guard because although for
|
jpayne@69
|
17 * historical reasons they have OCSP_* names, they can actually be used
|
jpayne@69
|
18 * independently of OCSP. E.g. see RFC5280
|
jpayne@69
|
19 */
|
jpayne@69
|
20 /*-
|
jpayne@69
|
21 * CRLReason ::= ENUMERATED {
|
jpayne@69
|
22 * unspecified (0),
|
jpayne@69
|
23 * keyCompromise (1),
|
jpayne@69
|
24 * cACompromise (2),
|
jpayne@69
|
25 * affiliationChanged (3),
|
jpayne@69
|
26 * superseded (4),
|
jpayne@69
|
27 * cessationOfOperation (5),
|
jpayne@69
|
28 * certificateHold (6),
|
jpayne@69
|
29 * removeFromCRL (8) }
|
jpayne@69
|
30 */
|
jpayne@69
|
31 # define OCSP_REVOKED_STATUS_NOSTATUS -1
|
jpayne@69
|
32 # define OCSP_REVOKED_STATUS_UNSPECIFIED 0
|
jpayne@69
|
33 # define OCSP_REVOKED_STATUS_KEYCOMPROMISE 1
|
jpayne@69
|
34 # define OCSP_REVOKED_STATUS_CACOMPROMISE 2
|
jpayne@69
|
35 # define OCSP_REVOKED_STATUS_AFFILIATIONCHANGED 3
|
jpayne@69
|
36 # define OCSP_REVOKED_STATUS_SUPERSEDED 4
|
jpayne@69
|
37 # define OCSP_REVOKED_STATUS_CESSATIONOFOPERATION 5
|
jpayne@69
|
38 # define OCSP_REVOKED_STATUS_CERTIFICATEHOLD 6
|
jpayne@69
|
39 # define OCSP_REVOKED_STATUS_REMOVEFROMCRL 8
|
jpayne@69
|
40
|
jpayne@69
|
41
|
jpayne@69
|
42 # ifndef OPENSSL_NO_OCSP
|
jpayne@69
|
43
|
jpayne@69
|
44 # include <openssl/ossl_typ.h>
|
jpayne@69
|
45 # include <openssl/x509.h>
|
jpayne@69
|
46 # include <openssl/x509v3.h>
|
jpayne@69
|
47 # include <openssl/safestack.h>
|
jpayne@69
|
48 # include <openssl/ocsperr.h>
|
jpayne@69
|
49
|
jpayne@69
|
50 #ifdef __cplusplus
|
jpayne@69
|
51 extern "C" {
|
jpayne@69
|
52 #endif
|
jpayne@69
|
53
|
jpayne@69
|
54 /* Various flags and values */
|
jpayne@69
|
55
|
jpayne@69
|
56 # define OCSP_DEFAULT_NONCE_LENGTH 16
|
jpayne@69
|
57
|
jpayne@69
|
58 # define OCSP_NOCERTS 0x1
|
jpayne@69
|
59 # define OCSP_NOINTERN 0x2
|
jpayne@69
|
60 # define OCSP_NOSIGS 0x4
|
jpayne@69
|
61 # define OCSP_NOCHAIN 0x8
|
jpayne@69
|
62 # define OCSP_NOVERIFY 0x10
|
jpayne@69
|
63 # define OCSP_NOEXPLICIT 0x20
|
jpayne@69
|
64 # define OCSP_NOCASIGN 0x40
|
jpayne@69
|
65 # define OCSP_NODELEGATED 0x80
|
jpayne@69
|
66 # define OCSP_NOCHECKS 0x100
|
jpayne@69
|
67 # define OCSP_TRUSTOTHER 0x200
|
jpayne@69
|
68 # define OCSP_RESPID_KEY 0x400
|
jpayne@69
|
69 # define OCSP_NOTIME 0x800
|
jpayne@69
|
70
|
jpayne@69
|
71 typedef struct ocsp_cert_id_st OCSP_CERTID;
|
jpayne@69
|
72
|
jpayne@69
|
73 DEFINE_STACK_OF(OCSP_CERTID)
|
jpayne@69
|
74
|
jpayne@69
|
75 typedef struct ocsp_one_request_st OCSP_ONEREQ;
|
jpayne@69
|
76
|
jpayne@69
|
77 DEFINE_STACK_OF(OCSP_ONEREQ)
|
jpayne@69
|
78
|
jpayne@69
|
79 typedef struct ocsp_req_info_st OCSP_REQINFO;
|
jpayne@69
|
80 typedef struct ocsp_signature_st OCSP_SIGNATURE;
|
jpayne@69
|
81 typedef struct ocsp_request_st OCSP_REQUEST;
|
jpayne@69
|
82
|
jpayne@69
|
83 # define OCSP_RESPONSE_STATUS_SUCCESSFUL 0
|
jpayne@69
|
84 # define OCSP_RESPONSE_STATUS_MALFORMEDREQUEST 1
|
jpayne@69
|
85 # define OCSP_RESPONSE_STATUS_INTERNALERROR 2
|
jpayne@69
|
86 # define OCSP_RESPONSE_STATUS_TRYLATER 3
|
jpayne@69
|
87 # define OCSP_RESPONSE_STATUS_SIGREQUIRED 5
|
jpayne@69
|
88 # define OCSP_RESPONSE_STATUS_UNAUTHORIZED 6
|
jpayne@69
|
89
|
jpayne@69
|
90 typedef struct ocsp_resp_bytes_st OCSP_RESPBYTES;
|
jpayne@69
|
91
|
jpayne@69
|
92 # define V_OCSP_RESPID_NAME 0
|
jpayne@69
|
93 # define V_OCSP_RESPID_KEY 1
|
jpayne@69
|
94
|
jpayne@69
|
95 DEFINE_STACK_OF(OCSP_RESPID)
|
jpayne@69
|
96
|
jpayne@69
|
97 typedef struct ocsp_revoked_info_st OCSP_REVOKEDINFO;
|
jpayne@69
|
98
|
jpayne@69
|
99 # define V_OCSP_CERTSTATUS_GOOD 0
|
jpayne@69
|
100 # define V_OCSP_CERTSTATUS_REVOKED 1
|
jpayne@69
|
101 # define V_OCSP_CERTSTATUS_UNKNOWN 2
|
jpayne@69
|
102
|
jpayne@69
|
103 typedef struct ocsp_cert_status_st OCSP_CERTSTATUS;
|
jpayne@69
|
104 typedef struct ocsp_single_response_st OCSP_SINGLERESP;
|
jpayne@69
|
105
|
jpayne@69
|
106 DEFINE_STACK_OF(OCSP_SINGLERESP)
|
jpayne@69
|
107
|
jpayne@69
|
108 typedef struct ocsp_response_data_st OCSP_RESPDATA;
|
jpayne@69
|
109
|
jpayne@69
|
110 typedef struct ocsp_basic_response_st OCSP_BASICRESP;
|
jpayne@69
|
111
|
jpayne@69
|
112 typedef struct ocsp_crl_id_st OCSP_CRLID;
|
jpayne@69
|
113 typedef struct ocsp_service_locator_st OCSP_SERVICELOC;
|
jpayne@69
|
114
|
jpayne@69
|
115 # define PEM_STRING_OCSP_REQUEST "OCSP REQUEST"
|
jpayne@69
|
116 # define PEM_STRING_OCSP_RESPONSE "OCSP RESPONSE"
|
jpayne@69
|
117
|
jpayne@69
|
118 # define d2i_OCSP_REQUEST_bio(bp,p) ASN1_d2i_bio_of(OCSP_REQUEST,OCSP_REQUEST_new,d2i_OCSP_REQUEST,bp,p)
|
jpayne@69
|
119
|
jpayne@69
|
120 # define d2i_OCSP_RESPONSE_bio(bp,p) ASN1_d2i_bio_of(OCSP_RESPONSE,OCSP_RESPONSE_new,d2i_OCSP_RESPONSE,bp,p)
|
jpayne@69
|
121
|
jpayne@69
|
122 # define PEM_read_bio_OCSP_REQUEST(bp,x,cb) (OCSP_REQUEST *)PEM_ASN1_read_bio( \
|
jpayne@69
|
123 (char *(*)())d2i_OCSP_REQUEST,PEM_STRING_OCSP_REQUEST, \
|
jpayne@69
|
124 bp,(char **)(x),cb,NULL)
|
jpayne@69
|
125
|
jpayne@69
|
126 # define PEM_read_bio_OCSP_RESPONSE(bp,x,cb) (OCSP_RESPONSE *)PEM_ASN1_read_bio(\
|
jpayne@69
|
127 (char *(*)())d2i_OCSP_RESPONSE,PEM_STRING_OCSP_RESPONSE, \
|
jpayne@69
|
128 bp,(char **)(x),cb,NULL)
|
jpayne@69
|
129
|
jpayne@69
|
130 # define PEM_write_bio_OCSP_REQUEST(bp,o) \
|
jpayne@69
|
131 PEM_ASN1_write_bio((int (*)())i2d_OCSP_REQUEST,PEM_STRING_OCSP_REQUEST,\
|
jpayne@69
|
132 bp,(char *)(o), NULL,NULL,0,NULL,NULL)
|
jpayne@69
|
133
|
jpayne@69
|
134 # define PEM_write_bio_OCSP_RESPONSE(bp,o) \
|
jpayne@69
|
135 PEM_ASN1_write_bio((int (*)())i2d_OCSP_RESPONSE,PEM_STRING_OCSP_RESPONSE,\
|
jpayne@69
|
136 bp,(char *)(o), NULL,NULL,0,NULL,NULL)
|
jpayne@69
|
137
|
jpayne@69
|
138 # define i2d_OCSP_RESPONSE_bio(bp,o) ASN1_i2d_bio_of(OCSP_RESPONSE,i2d_OCSP_RESPONSE,bp,o)
|
jpayne@69
|
139
|
jpayne@69
|
140 # define i2d_OCSP_REQUEST_bio(bp,o) ASN1_i2d_bio_of(OCSP_REQUEST,i2d_OCSP_REQUEST,bp,o)
|
jpayne@69
|
141
|
jpayne@69
|
142 # define ASN1_BIT_STRING_digest(data,type,md,len) \
|
jpayne@69
|
143 ASN1_item_digest(ASN1_ITEM_rptr(ASN1_BIT_STRING),type,data,md,len)
|
jpayne@69
|
144
|
jpayne@69
|
145 # define OCSP_CERTSTATUS_dup(cs)\
|
jpayne@69
|
146 (OCSP_CERTSTATUS*)ASN1_dup((int(*)())i2d_OCSP_CERTSTATUS,\
|
jpayne@69
|
147 (char *(*)())d2i_OCSP_CERTSTATUS,(char *)(cs))
|
jpayne@69
|
148
|
jpayne@69
|
149 OCSP_CERTID *OCSP_CERTID_dup(OCSP_CERTID *id);
|
jpayne@69
|
150
|
jpayne@69
|
151 OCSP_RESPONSE *OCSP_sendreq_bio(BIO *b, const char *path, OCSP_REQUEST *req);
|
jpayne@69
|
152 OCSP_REQ_CTX *OCSP_sendreq_new(BIO *io, const char *path, OCSP_REQUEST *req,
|
jpayne@69
|
153 int maxline);
|
jpayne@69
|
154 int OCSP_REQ_CTX_nbio(OCSP_REQ_CTX *rctx);
|
jpayne@69
|
155 int OCSP_sendreq_nbio(OCSP_RESPONSE **presp, OCSP_REQ_CTX *rctx);
|
jpayne@69
|
156 OCSP_REQ_CTX *OCSP_REQ_CTX_new(BIO *io, int maxline);
|
jpayne@69
|
157 void OCSP_REQ_CTX_free(OCSP_REQ_CTX *rctx);
|
jpayne@69
|
158 void OCSP_set_max_response_length(OCSP_REQ_CTX *rctx, unsigned long len);
|
jpayne@69
|
159 int OCSP_REQ_CTX_i2d(OCSP_REQ_CTX *rctx, const ASN1_ITEM *it,
|
jpayne@69
|
160 ASN1_VALUE *val);
|
jpayne@69
|
161 int OCSP_REQ_CTX_nbio_d2i(OCSP_REQ_CTX *rctx, ASN1_VALUE **pval,
|
jpayne@69
|
162 const ASN1_ITEM *it);
|
jpayne@69
|
163 BIO *OCSP_REQ_CTX_get0_mem_bio(OCSP_REQ_CTX *rctx);
|
jpayne@69
|
164 int OCSP_REQ_CTX_http(OCSP_REQ_CTX *rctx, const char *op, const char *path);
|
jpayne@69
|
165 int OCSP_REQ_CTX_set1_req(OCSP_REQ_CTX *rctx, OCSP_REQUEST *req);
|
jpayne@69
|
166 int OCSP_REQ_CTX_add1_header(OCSP_REQ_CTX *rctx,
|
jpayne@69
|
167 const char *name, const char *value);
|
jpayne@69
|
168
|
jpayne@69
|
169 OCSP_CERTID *OCSP_cert_to_id(const EVP_MD *dgst, const X509 *subject,
|
jpayne@69
|
170 const X509 *issuer);
|
jpayne@69
|
171
|
jpayne@69
|
172 OCSP_CERTID *OCSP_cert_id_new(const EVP_MD *dgst,
|
jpayne@69
|
173 const X509_NAME *issuerName,
|
jpayne@69
|
174 const ASN1_BIT_STRING *issuerKey,
|
jpayne@69
|
175 const ASN1_INTEGER *serialNumber);
|
jpayne@69
|
176
|
jpayne@69
|
177 OCSP_ONEREQ *OCSP_request_add0_id(OCSP_REQUEST *req, OCSP_CERTID *cid);
|
jpayne@69
|
178
|
jpayne@69
|
179 int OCSP_request_add1_nonce(OCSP_REQUEST *req, unsigned char *val, int len);
|
jpayne@69
|
180 int OCSP_basic_add1_nonce(OCSP_BASICRESP *resp, unsigned char *val, int len);
|
jpayne@69
|
181 int OCSP_check_nonce(OCSP_REQUEST *req, OCSP_BASICRESP *bs);
|
jpayne@69
|
182 int OCSP_copy_nonce(OCSP_BASICRESP *resp, OCSP_REQUEST *req);
|
jpayne@69
|
183
|
jpayne@69
|
184 int OCSP_request_set1_name(OCSP_REQUEST *req, X509_NAME *nm);
|
jpayne@69
|
185 int OCSP_request_add1_cert(OCSP_REQUEST *req, X509 *cert);
|
jpayne@69
|
186
|
jpayne@69
|
187 int OCSP_request_sign(OCSP_REQUEST *req,
|
jpayne@69
|
188 X509 *signer,
|
jpayne@69
|
189 EVP_PKEY *key,
|
jpayne@69
|
190 const EVP_MD *dgst,
|
jpayne@69
|
191 STACK_OF(X509) *certs, unsigned long flags);
|
jpayne@69
|
192
|
jpayne@69
|
193 int OCSP_response_status(OCSP_RESPONSE *resp);
|
jpayne@69
|
194 OCSP_BASICRESP *OCSP_response_get1_basic(OCSP_RESPONSE *resp);
|
jpayne@69
|
195
|
jpayne@69
|
196 const ASN1_OCTET_STRING *OCSP_resp_get0_signature(const OCSP_BASICRESP *bs);
|
jpayne@69
|
197 const X509_ALGOR *OCSP_resp_get0_tbs_sigalg(const OCSP_BASICRESP *bs);
|
jpayne@69
|
198 const OCSP_RESPDATA *OCSP_resp_get0_respdata(const OCSP_BASICRESP *bs);
|
jpayne@69
|
199 int OCSP_resp_get0_signer(OCSP_BASICRESP *bs, X509 **signer,
|
jpayne@69
|
200 STACK_OF(X509) *extra_certs);
|
jpayne@69
|
201
|
jpayne@69
|
202 int OCSP_resp_count(OCSP_BASICRESP *bs);
|
jpayne@69
|
203 OCSP_SINGLERESP *OCSP_resp_get0(OCSP_BASICRESP *bs, int idx);
|
jpayne@69
|
204 const ASN1_GENERALIZEDTIME *OCSP_resp_get0_produced_at(const OCSP_BASICRESP* bs);
|
jpayne@69
|
205 const STACK_OF(X509) *OCSP_resp_get0_certs(const OCSP_BASICRESP *bs);
|
jpayne@69
|
206 int OCSP_resp_get0_id(const OCSP_BASICRESP *bs,
|
jpayne@69
|
207 const ASN1_OCTET_STRING **pid,
|
jpayne@69
|
208 const X509_NAME **pname);
|
jpayne@69
|
209 int OCSP_resp_get1_id(const OCSP_BASICRESP *bs,
|
jpayne@69
|
210 ASN1_OCTET_STRING **pid,
|
jpayne@69
|
211 X509_NAME **pname);
|
jpayne@69
|
212
|
jpayne@69
|
213 int OCSP_resp_find(OCSP_BASICRESP *bs, OCSP_CERTID *id, int last);
|
jpayne@69
|
214 int OCSP_single_get0_status(OCSP_SINGLERESP *single, int *reason,
|
jpayne@69
|
215 ASN1_GENERALIZEDTIME **revtime,
|
jpayne@69
|
216 ASN1_GENERALIZEDTIME **thisupd,
|
jpayne@69
|
217 ASN1_GENERALIZEDTIME **nextupd);
|
jpayne@69
|
218 int OCSP_resp_find_status(OCSP_BASICRESP *bs, OCSP_CERTID *id, int *status,
|
jpayne@69
|
219 int *reason,
|
jpayne@69
|
220 ASN1_GENERALIZEDTIME **revtime,
|
jpayne@69
|
221 ASN1_GENERALIZEDTIME **thisupd,
|
jpayne@69
|
222 ASN1_GENERALIZEDTIME **nextupd);
|
jpayne@69
|
223 int OCSP_check_validity(ASN1_GENERALIZEDTIME *thisupd,
|
jpayne@69
|
224 ASN1_GENERALIZEDTIME *nextupd, long sec, long maxsec);
|
jpayne@69
|
225
|
jpayne@69
|
226 int OCSP_request_verify(OCSP_REQUEST *req, STACK_OF(X509) *certs,
|
jpayne@69
|
227 X509_STORE *store, unsigned long flags);
|
jpayne@69
|
228
|
jpayne@69
|
229 int OCSP_parse_url(const char *url, char **phost, char **pport, char **ppath,
|
jpayne@69
|
230 int *pssl);
|
jpayne@69
|
231
|
jpayne@69
|
232 int OCSP_id_issuer_cmp(const OCSP_CERTID *a, const OCSP_CERTID *b);
|
jpayne@69
|
233 int OCSP_id_cmp(const OCSP_CERTID *a, const OCSP_CERTID *b);
|
jpayne@69
|
234
|
jpayne@69
|
235 int OCSP_request_onereq_count(OCSP_REQUEST *req);
|
jpayne@69
|
236 OCSP_ONEREQ *OCSP_request_onereq_get0(OCSP_REQUEST *req, int i);
|
jpayne@69
|
237 OCSP_CERTID *OCSP_onereq_get0_id(OCSP_ONEREQ *one);
|
jpayne@69
|
238 int OCSP_id_get0_info(ASN1_OCTET_STRING **piNameHash, ASN1_OBJECT **pmd,
|
jpayne@69
|
239 ASN1_OCTET_STRING **pikeyHash,
|
jpayne@69
|
240 ASN1_INTEGER **pserial, OCSP_CERTID *cid);
|
jpayne@69
|
241 int OCSP_request_is_signed(OCSP_REQUEST *req);
|
jpayne@69
|
242 OCSP_RESPONSE *OCSP_response_create(int status, OCSP_BASICRESP *bs);
|
jpayne@69
|
243 OCSP_SINGLERESP *OCSP_basic_add1_status(OCSP_BASICRESP *rsp,
|
jpayne@69
|
244 OCSP_CERTID *cid,
|
jpayne@69
|
245 int status, int reason,
|
jpayne@69
|
246 ASN1_TIME *revtime,
|
jpayne@69
|
247 ASN1_TIME *thisupd,
|
jpayne@69
|
248 ASN1_TIME *nextupd);
|
jpayne@69
|
249 int OCSP_basic_add1_cert(OCSP_BASICRESP *resp, X509 *cert);
|
jpayne@69
|
250 int OCSP_basic_sign(OCSP_BASICRESP *brsp,
|
jpayne@69
|
251 X509 *signer, EVP_PKEY *key, const EVP_MD *dgst,
|
jpayne@69
|
252 STACK_OF(X509) *certs, unsigned long flags);
|
jpayne@69
|
253 int OCSP_basic_sign_ctx(OCSP_BASICRESP *brsp,
|
jpayne@69
|
254 X509 *signer, EVP_MD_CTX *ctx,
|
jpayne@69
|
255 STACK_OF(X509) *certs, unsigned long flags);
|
jpayne@69
|
256 int OCSP_RESPID_set_by_name(OCSP_RESPID *respid, X509 *cert);
|
jpayne@69
|
257 int OCSP_RESPID_set_by_key(OCSP_RESPID *respid, X509 *cert);
|
jpayne@69
|
258 int OCSP_RESPID_match(OCSP_RESPID *respid, X509 *cert);
|
jpayne@69
|
259
|
jpayne@69
|
260 X509_EXTENSION *OCSP_crlID_new(const char *url, long *n, char *tim);
|
jpayne@69
|
261
|
jpayne@69
|
262 X509_EXTENSION *OCSP_accept_responses_new(char **oids);
|
jpayne@69
|
263
|
jpayne@69
|
264 X509_EXTENSION *OCSP_archive_cutoff_new(char *tim);
|
jpayne@69
|
265
|
jpayne@69
|
266 X509_EXTENSION *OCSP_url_svcloc_new(X509_NAME *issuer, const char **urls);
|
jpayne@69
|
267
|
jpayne@69
|
268 int OCSP_REQUEST_get_ext_count(OCSP_REQUEST *x);
|
jpayne@69
|
269 int OCSP_REQUEST_get_ext_by_NID(OCSP_REQUEST *x, int nid, int lastpos);
|
jpayne@69
|
270 int OCSP_REQUEST_get_ext_by_OBJ(OCSP_REQUEST *x, const ASN1_OBJECT *obj,
|
jpayne@69
|
271 int lastpos);
|
jpayne@69
|
272 int OCSP_REQUEST_get_ext_by_critical(OCSP_REQUEST *x, int crit, int lastpos);
|
jpayne@69
|
273 X509_EXTENSION *OCSP_REQUEST_get_ext(OCSP_REQUEST *x, int loc);
|
jpayne@69
|
274 X509_EXTENSION *OCSP_REQUEST_delete_ext(OCSP_REQUEST *x, int loc);
|
jpayne@69
|
275 void *OCSP_REQUEST_get1_ext_d2i(OCSP_REQUEST *x, int nid, int *crit,
|
jpayne@69
|
276 int *idx);
|
jpayne@69
|
277 int OCSP_REQUEST_add1_ext_i2d(OCSP_REQUEST *x, int nid, void *value, int crit,
|
jpayne@69
|
278 unsigned long flags);
|
jpayne@69
|
279 int OCSP_REQUEST_add_ext(OCSP_REQUEST *x, X509_EXTENSION *ex, int loc);
|
jpayne@69
|
280
|
jpayne@69
|
281 int OCSP_ONEREQ_get_ext_count(OCSP_ONEREQ *x);
|
jpayne@69
|
282 int OCSP_ONEREQ_get_ext_by_NID(OCSP_ONEREQ *x, int nid, int lastpos);
|
jpayne@69
|
283 int OCSP_ONEREQ_get_ext_by_OBJ(OCSP_ONEREQ *x, const ASN1_OBJECT *obj, int lastpos);
|
jpayne@69
|
284 int OCSP_ONEREQ_get_ext_by_critical(OCSP_ONEREQ *x, int crit, int lastpos);
|
jpayne@69
|
285 X509_EXTENSION *OCSP_ONEREQ_get_ext(OCSP_ONEREQ *x, int loc);
|
jpayne@69
|
286 X509_EXTENSION *OCSP_ONEREQ_delete_ext(OCSP_ONEREQ *x, int loc);
|
jpayne@69
|
287 void *OCSP_ONEREQ_get1_ext_d2i(OCSP_ONEREQ *x, int nid, int *crit, int *idx);
|
jpayne@69
|
288 int OCSP_ONEREQ_add1_ext_i2d(OCSP_ONEREQ *x, int nid, void *value, int crit,
|
jpayne@69
|
289 unsigned long flags);
|
jpayne@69
|
290 int OCSP_ONEREQ_add_ext(OCSP_ONEREQ *x, X509_EXTENSION *ex, int loc);
|
jpayne@69
|
291
|
jpayne@69
|
292 int OCSP_BASICRESP_get_ext_count(OCSP_BASICRESP *x);
|
jpayne@69
|
293 int OCSP_BASICRESP_get_ext_by_NID(OCSP_BASICRESP *x, int nid, int lastpos);
|
jpayne@69
|
294 int OCSP_BASICRESP_get_ext_by_OBJ(OCSP_BASICRESP *x, const ASN1_OBJECT *obj,
|
jpayne@69
|
295 int lastpos);
|
jpayne@69
|
296 int OCSP_BASICRESP_get_ext_by_critical(OCSP_BASICRESP *x, int crit,
|
jpayne@69
|
297 int lastpos);
|
jpayne@69
|
298 X509_EXTENSION *OCSP_BASICRESP_get_ext(OCSP_BASICRESP *x, int loc);
|
jpayne@69
|
299 X509_EXTENSION *OCSP_BASICRESP_delete_ext(OCSP_BASICRESP *x, int loc);
|
jpayne@69
|
300 void *OCSP_BASICRESP_get1_ext_d2i(OCSP_BASICRESP *x, int nid, int *crit,
|
jpayne@69
|
301 int *idx);
|
jpayne@69
|
302 int OCSP_BASICRESP_add1_ext_i2d(OCSP_BASICRESP *x, int nid, void *value,
|
jpayne@69
|
303 int crit, unsigned long flags);
|
jpayne@69
|
304 int OCSP_BASICRESP_add_ext(OCSP_BASICRESP *x, X509_EXTENSION *ex, int loc);
|
jpayne@69
|
305
|
jpayne@69
|
306 int OCSP_SINGLERESP_get_ext_count(OCSP_SINGLERESP *x);
|
jpayne@69
|
307 int OCSP_SINGLERESP_get_ext_by_NID(OCSP_SINGLERESP *x, int nid, int lastpos);
|
jpayne@69
|
308 int OCSP_SINGLERESP_get_ext_by_OBJ(OCSP_SINGLERESP *x, const ASN1_OBJECT *obj,
|
jpayne@69
|
309 int lastpos);
|
jpayne@69
|
310 int OCSP_SINGLERESP_get_ext_by_critical(OCSP_SINGLERESP *x, int crit,
|
jpayne@69
|
311 int lastpos);
|
jpayne@69
|
312 X509_EXTENSION *OCSP_SINGLERESP_get_ext(OCSP_SINGLERESP *x, int loc);
|
jpayne@69
|
313 X509_EXTENSION *OCSP_SINGLERESP_delete_ext(OCSP_SINGLERESP *x, int loc);
|
jpayne@69
|
314 void *OCSP_SINGLERESP_get1_ext_d2i(OCSP_SINGLERESP *x, int nid, int *crit,
|
jpayne@69
|
315 int *idx);
|
jpayne@69
|
316 int OCSP_SINGLERESP_add1_ext_i2d(OCSP_SINGLERESP *x, int nid, void *value,
|
jpayne@69
|
317 int crit, unsigned long flags);
|
jpayne@69
|
318 int OCSP_SINGLERESP_add_ext(OCSP_SINGLERESP *x, X509_EXTENSION *ex, int loc);
|
jpayne@69
|
319 const OCSP_CERTID *OCSP_SINGLERESP_get0_id(const OCSP_SINGLERESP *x);
|
jpayne@69
|
320
|
jpayne@69
|
321 DECLARE_ASN1_FUNCTIONS(OCSP_SINGLERESP)
|
jpayne@69
|
322 DECLARE_ASN1_FUNCTIONS(OCSP_CERTSTATUS)
|
jpayne@69
|
323 DECLARE_ASN1_FUNCTIONS(OCSP_REVOKEDINFO)
|
jpayne@69
|
324 DECLARE_ASN1_FUNCTIONS(OCSP_BASICRESP)
|
jpayne@69
|
325 DECLARE_ASN1_FUNCTIONS(OCSP_RESPDATA)
|
jpayne@69
|
326 DECLARE_ASN1_FUNCTIONS(OCSP_RESPID)
|
jpayne@69
|
327 DECLARE_ASN1_FUNCTIONS(OCSP_RESPONSE)
|
jpayne@69
|
328 DECLARE_ASN1_FUNCTIONS(OCSP_RESPBYTES)
|
jpayne@69
|
329 DECLARE_ASN1_FUNCTIONS(OCSP_ONEREQ)
|
jpayne@69
|
330 DECLARE_ASN1_FUNCTIONS(OCSP_CERTID)
|
jpayne@69
|
331 DECLARE_ASN1_FUNCTIONS(OCSP_REQUEST)
|
jpayne@69
|
332 DECLARE_ASN1_FUNCTIONS(OCSP_SIGNATURE)
|
jpayne@69
|
333 DECLARE_ASN1_FUNCTIONS(OCSP_REQINFO)
|
jpayne@69
|
334 DECLARE_ASN1_FUNCTIONS(OCSP_CRLID)
|
jpayne@69
|
335 DECLARE_ASN1_FUNCTIONS(OCSP_SERVICELOC)
|
jpayne@69
|
336
|
jpayne@69
|
337 const char *OCSP_response_status_str(long s);
|
jpayne@69
|
338 const char *OCSP_cert_status_str(long s);
|
jpayne@69
|
339 const char *OCSP_crl_reason_str(long s);
|
jpayne@69
|
340
|
jpayne@69
|
341 int OCSP_REQUEST_print(BIO *bp, OCSP_REQUEST *a, unsigned long flags);
|
jpayne@69
|
342 int OCSP_RESPONSE_print(BIO *bp, OCSP_RESPONSE *o, unsigned long flags);
|
jpayne@69
|
343
|
jpayne@69
|
344 int OCSP_basic_verify(OCSP_BASICRESP *bs, STACK_OF(X509) *certs,
|
jpayne@69
|
345 X509_STORE *st, unsigned long flags);
|
jpayne@69
|
346
|
jpayne@69
|
347
|
jpayne@69
|
348 # ifdef __cplusplus
|
jpayne@69
|
349 }
|
jpayne@69
|
350 # endif
|
jpayne@69
|
351 # endif
|
jpayne@69
|
352 #endif
|