2 /* Written by Tom Titchener <Tom_Titchener@groove.net> for the OpenSSL
6 This file was transfered to Richard Levitte from CertCo by Kathy
7 Weinhold in mid-spring 2000 to be included in OpenSSL or released
10 /* ====================================================================
11 * Copyright (c) 1998-2000 The OpenSSL Project. All rights reserved.
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
17 * 1. Redistributions of source code must retain the above copyright
18 * notice, this list of conditions and the following disclaimer.
20 * 2. Redistributions in binary form must reproduce the above copyright
21 * notice, this list of conditions and the following disclaimer in
22 * the documentation and/or other materials provided with the
25 * 3. All advertising materials mentioning features or use of this
26 * software must display the following acknowledgment:
27 * "This product includes software developed by the OpenSSL Project
28 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
30 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
31 * endorse or promote products derived from this software without
32 * prior written permission. For written permission, please contact
33 * openssl-core@openssl.org.
35 * 5. Products derived from this software may not be called "OpenSSL"
36 * nor may "OpenSSL" appear in their names without prior written
37 * permission of the OpenSSL Project.
39 * 6. Redistributions of any form whatsoever must retain the following
41 * "This product includes software developed by the OpenSSL Project
42 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
44 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
45 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
46 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
47 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
48 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
49 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
50 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
51 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
52 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
53 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
54 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
55 * OF THE POSSIBILITY OF SUCH DAMAGE.
56 * ====================================================================
58 * This product includes cryptographic software written by Eric Young
59 * (eay@cryptsoft.com). This product includes software written by Tim
60 * Hudson (tjh@cryptsoft.com).
64 #ifndef PROTO_AMISSL_H
65 #include <proto/amissl.h>
66 #endif /* PROTO_AMISSL_H */
71 #include <openssl/x509.h>
72 #include <openssl/x509v3.h>
73 #include <openssl/safestack.h>
79 /* Various flags and values */
81 #define OCSP_DEFAULT_NONCE_LENGTH 16
83 #define OCSP_NOCERTS 0x1
84 #define OCSP_NOINTERN 0x2
85 #define OCSP_NOSIGS 0x4
86 #define OCSP_NOCHAIN 0x8
87 #define OCSP_NOVERIFY 0x10
88 #define OCSP_NOEXPLICIT 0x20
89 #define OCSP_NOCASIGN 0x40
90 #define OCSP_NODELEGATED 0x80
91 #define OCSP_NOCHECKS 0x100
92 #define OCSP_TRUSTOTHER 0x200
93 #define OCSP_RESPID_KEY 0x400
94 #define OCSP_NOTIME 0x800
96 /* CertID ::= SEQUENCE {
97 * hashAlgorithm AlgorithmIdentifier,
98 * issuerNameHash OCTET STRING, -- Hash of Issuer's DN
99 * issuerKeyHash OCTET STRING, -- Hash of Issuers public key (excluding the tag & length fields)
100 * serialNumber CertificateSerialNumber }
102 typedef struct ocsp_cert_id_st
104 X509_ALGOR
*hashAlgorithm
;
105 ASN1_OCTET_STRING
*issuerNameHash
;
106 ASN1_OCTET_STRING
*issuerKeyHash
;
107 ASN1_INTEGER
*serialNumber
;
110 DECLARE_STACK_OF(OCSP_CERTID
)
112 /* Request ::= SEQUENCE {
114 * singleRequestExtensions [0] EXPLICIT Extensions OPTIONAL }
116 typedef struct ocsp_one_request_st
118 OCSP_CERTID
*reqCert
;
119 STACK_OF(X509_EXTENSION
) *singleRequestExtensions
;
122 DECLARE_STACK_OF(OCSP_ONEREQ
)
123 DECLARE_ASN1_SET_OF(OCSP_ONEREQ
)
126 /* TBSRequest ::= SEQUENCE {
127 * version [0] EXPLICIT Version DEFAULT v1,
128 * requestorName [1] EXPLICIT GeneralName OPTIONAL,
129 * requestList SEQUENCE OF Request,
130 * requestExtensions [2] EXPLICIT Extensions OPTIONAL }
132 typedef struct ocsp_req_info_st
134 ASN1_INTEGER
*version
;
135 GENERAL_NAME
*requestorName
;
136 STACK_OF(OCSP_ONEREQ
) *requestList
;
137 STACK_OF(X509_EXTENSION
) *requestExtensions
;
140 /* Signature ::= SEQUENCE {
141 * signatureAlgorithm AlgorithmIdentifier,
142 * signature BIT STRING,
143 * certs [0] EXPLICIT SEQUENCE OF Certificate OPTIONAL }
145 typedef struct ocsp_signature_st
147 X509_ALGOR
*signatureAlgorithm
;
148 ASN1_BIT_STRING
*signature
;
149 STACK_OF(X509
) *certs
;
152 /* OCSPRequest ::= SEQUENCE {
153 * tbsRequest TBSRequest,
154 * optionalSignature [0] EXPLICIT Signature OPTIONAL }
156 typedef struct ocsp_request_st
158 OCSP_REQINFO
*tbsRequest
;
159 OCSP_SIGNATURE
*optionalSignature
; /* OPTIONAL */
162 /* OCSPResponseStatus ::= ENUMERATED {
163 * successful (0), --Response has valid confirmations
164 * malformedRequest (1), --Illegal confirmation request
165 * internalError (2), --Internal error in issuer
166 * tryLater (3), --Try again later
168 * sigRequired (5), --Must sign the request
169 * unauthorized (6) --Request unauthorized
172 #define OCSP_RESPONSE_STATUS_SUCCESSFUL 0
173 #define OCSP_RESPONSE_STATUS_MALFORMEDREQUEST 1
174 #define OCSP_RESPONSE_STATUS_INTERNALERROR 2
175 #define OCSP_RESPONSE_STATUS_TRYLATER 3
176 #define OCSP_RESPONSE_STATUS_SIGREQUIRED 5
177 #define OCSP_RESPONSE_STATUS_UNAUTHORIZED 6
179 /* ResponseBytes ::= SEQUENCE {
180 * responseType OBJECT IDENTIFIER,
181 * response OCTET STRING }
183 typedef struct ocsp_resp_bytes_st
185 ASN1_OBJECT
*responseType
;
186 ASN1_OCTET_STRING
*response
;
189 /* OCSPResponse ::= SEQUENCE {
190 * responseStatus OCSPResponseStatus,
191 * responseBytes [0] EXPLICIT ResponseBytes OPTIONAL }
193 typedef struct ocsp_response_st
195 ASN1_ENUMERATED
*responseStatus
;
196 OCSP_RESPBYTES
*responseBytes
;
199 /* ResponderID ::= CHOICE {
201 * byKey [2] KeyHash }
203 #define V_OCSP_RESPID_NAME 0
204 #define V_OCSP_RESPID_KEY 1
205 typedef struct ocsp_responder_id_st
210 ASN1_OCTET_STRING
*byKey
;
213 /* KeyHash ::= OCTET STRING --SHA-1 hash of responder's public key
214 * --(excluding the tag and length fields)
217 /* RevokedInfo ::= SEQUENCE {
218 * revocationTime GeneralizedTime,
219 * revocationReason [0] EXPLICIT CRLReason OPTIONAL }
221 typedef struct ocsp_revoked_info_st
223 ASN1_GENERALIZEDTIME
*revocationTime
;
224 ASN1_ENUMERATED
*revocationReason
;
227 /* CertStatus ::= CHOICE {
228 * good [0] IMPLICIT NULL,
229 * revoked [1] IMPLICIT RevokedInfo,
230 * unknown [2] IMPLICIT UnknownInfo }
232 #define V_OCSP_CERTSTATUS_GOOD 0
233 #define V_OCSP_CERTSTATUS_REVOKED 1
234 #define V_OCSP_CERTSTATUS_UNKNOWN 2
235 typedef struct ocsp_cert_status_st
240 OCSP_REVOKEDINFO
*revoked
;
245 /* SingleResponse ::= SEQUENCE {
247 * certStatus CertStatus,
248 * thisUpdate GeneralizedTime,
249 * nextUpdate [0] EXPLICIT GeneralizedTime OPTIONAL,
250 * singleExtensions [1] EXPLICIT Extensions OPTIONAL }
252 typedef struct ocsp_single_response_st
255 OCSP_CERTSTATUS
*certStatus
;
256 ASN1_GENERALIZEDTIME
*thisUpdate
;
257 ASN1_GENERALIZEDTIME
*nextUpdate
;
258 STACK_OF(X509_EXTENSION
) *singleExtensions
;
261 DECLARE_STACK_OF(OCSP_SINGLERESP
)
262 DECLARE_ASN1_SET_OF(OCSP_SINGLERESP
)
264 /* ResponseData ::= SEQUENCE {
265 * version [0] EXPLICIT Version DEFAULT v1,
266 * responderID ResponderID,
267 * producedAt GeneralizedTime,
268 * responses SEQUENCE OF SingleResponse,
269 * responseExtensions [1] EXPLICIT Extensions OPTIONAL }
271 typedef struct ocsp_response_data_st
273 ASN1_INTEGER
*version
;
274 OCSP_RESPID
*responderId
;
275 ASN1_GENERALIZEDTIME
*producedAt
;
276 STACK_OF(OCSP_SINGLERESP
) *responses
;
277 STACK_OF(X509_EXTENSION
) *responseExtensions
;
280 /* BasicOCSPResponse ::= SEQUENCE {
281 * tbsResponseData ResponseData,
282 * signatureAlgorithm AlgorithmIdentifier,
283 * signature BIT STRING,
284 * certs [0] EXPLICIT SEQUENCE OF Certificate OPTIONAL }
287 The value for "signature" is specified in the OCSP rfc2560 as follows:
288 "The value for the signature SHALL be computed on the hash of the DER
289 encoding ResponseData." This means that you must hash the DER-encoded
290 tbsResponseData, and then run it through a crypto-signing function, which
291 will (at least w/RSA) do a hash-'n'-private-encrypt operation. This seems
292 a bit odd, but that's the spec. Also note that the data structures do not
293 leave anywhere to independently specify the algorithm used for the initial
294 hash. So, we look at the signature-specification algorithm, and try to do
295 something intelligent. -- Kathy Weinhold, CertCo */
297 It seems that the mentioned passage from RFC 2560 (section 4.2.1) is open
298 for interpretation. I've done tests against another responder, and found
299 that it doesn't do the double hashing that the RFC seems to say one
300 should. Therefore, all relevant functions take a flag saying which
301 variant should be used. -- Richard Levitte, OpenSSL team and CeloCom */
302 typedef struct ocsp_basic_response_st
304 OCSP_RESPDATA
*tbsResponseData
;
305 X509_ALGOR
*signatureAlgorithm
;
306 ASN1_BIT_STRING
*signature
;
307 STACK_OF(X509
) *certs
;
311 * CRLReason ::= ENUMERATED {
315 * affiliationChanged (3),
317 * cessationOfOperation (5),
318 * certificateHold (6),
319 * removeFromCRL (8) }
321 #define OCSP_REVOKED_STATUS_NOSTATUS -1
322 #define OCSP_REVOKED_STATUS_UNSPECIFIED 0
323 #define OCSP_REVOKED_STATUS_KEYCOMPROMISE 1
324 #define OCSP_REVOKED_STATUS_CACOMPROMISE 2
325 #define OCSP_REVOKED_STATUS_AFFILIATIONCHANGED 3
326 #define OCSP_REVOKED_STATUS_SUPERSEDED 4
327 #define OCSP_REVOKED_STATUS_CESSATIONOFOPERATION 5
328 #define OCSP_REVOKED_STATUS_CERTIFICATEHOLD 6
329 #define OCSP_REVOKED_STATUS_REMOVEFROMCRL 8
331 /* CrlID ::= SEQUENCE {
332 * crlUrl [0] EXPLICIT IA5String OPTIONAL,
333 * crlNum [1] EXPLICIT INTEGER OPTIONAL,
334 * crlTime [2] EXPLICIT GeneralizedTime OPTIONAL }
336 typedef struct ocsp_crl_id_st
338 ASN1_IA5STRING
*crlUrl
;
339 ASN1_INTEGER
*crlNum
;
340 ASN1_GENERALIZEDTIME
*crlTime
;
343 /* ServiceLocator ::= SEQUENCE {
345 * locator AuthorityInfoAccessSyntax OPTIONAL }
347 typedef struct ocsp_service_locator_st
350 STACK_OF(ACCESS_DESCRIPTION
) *locator
;
353 #define PEM_STRING_OCSP_REQUEST "OCSP REQUEST"
354 #define PEM_STRING_OCSP_RESPONSE "OCSP RESPONSE"
356 #define d2i_OCSP_REQUEST_bio(bp,p) (OCSP_REQUEST*)ASN1_d2i_bio((char*(*)()) \
357 OCSP_REQUEST_new,(char *(*)())d2i_OCSP_REQUEST, (bp),\
358 (unsigned char **)(p))
360 #define d2i_OCSP_RESPONSE_bio(bp,p) (OCSP_RESPONSE*)ASN1_d2i_bio((char*(*)())\
361 OCSP_REQUEST_new,(char *(*)())d2i_OCSP_RESPONSE, (bp),\
362 (unsigned char **)(p))
364 #define PEM_read_bio_OCSP_REQUEST(bp,x,cb) (OCSP_REQUEST *)PEM_ASN1_read_bio( \
365 (char *(*)())d2i_OCSP_REQUEST,PEM_STRING_OCSP_REQUEST,bp,(char **)x,cb,NULL)
367 #define PEM_read_bio_OCSP_RESPONSE(bp,x,cb)(OCSP_RESPONSE *)PEM_ASN1_read_bio(\
368 (char *(*)())d2i_OCSP_RESPONSE,PEM_STRING_OCSP_RESPONSE,bp,(char **)x,cb,NULL)
370 #define PEM_write_bio_OCSP_REQUEST(bp,o) \
371 PEM_ASN1_write_bio((int (*)())i2d_OCSP_REQUEST,PEM_STRING_OCSP_REQUEST,\
372 bp,(char *)o, NULL,NULL,0,NULL,NULL)
374 #define PEM_write_bio_OCSP_RESPONSE(bp,o) \
375 PEM_ASN1_write_bio((int (*)())i2d_OCSP_RESPONSE,PEM_STRING_OCSP_RESPONSE,\
376 bp,(char *)o, NULL,NULL,0,NULL,NULL)
378 #define i2d_OCSP_RESPONSE_bio(bp,o) ASN1_i2d_bio(i2d_OCSP_RESPONSE,bp,\
381 #define i2d_OCSP_REQUEST_bio(bp,o) ASN1_i2d_bio(i2d_OCSP_REQUEST,bp,\
384 #define OCSP_REQUEST_sign(o,pkey,md) \
385 ASN1_item_sign(ASN1_ITEM_rptr(OCSP_REQINFO),\
386 o->optionalSignature->signatureAlgorithm,NULL,\
387 o->optionalSignature->signature,o->tbsRequest,pkey,md)
389 #define OCSP_BASICRESP_sign(o,pkey,md,d) \
390 ASN1_item_sign(ASN1_ITEM_rptr(OCSP_RESPDATA),o->signatureAlgorithm,NULL,\
391 o->signature,o->tbsResponseData,pkey,md)
393 #define OCSP_REQUEST_verify(a,r) ASN1_item_verify(ASN1_ITEM_rptr(OCSP_REQINFO),\
394 a->optionalSignature->signatureAlgorithm,\
395 a->optionalSignature->signature,a->tbsRequest,r)
397 #define OCSP_BASICRESP_verify(a,r,d) ASN1_item_verify(ASN1_ITEM_rptr(OCSP_RESPDATA),\
398 a->signatureAlgorithm,a->signature,a->tbsResponseData,r)
400 #define ASN1_BIT_STRING_digest(data,type,md,len) \
401 ASN1_item_digest(ASN1_ITEM_rptr(ASN1_BIT_STRING),type,data,md,len)
403 #define OCSP_CERTID_dup(cid) (OCSP_CERTID*)ASN1_dup((int(*)())i2d_OCSP_CERTID,\
404 (char *(*)())d2i_OCSP_CERTID,(char *)(cid))
406 #define OCSP_CERTSTATUS_dup(cs)\
407 (OCSP_CERTSTATUS*)ASN1_dup((int(*)())i2d_OCSP_CERTSTATUS,\
408 (char *(*)())d2i_OCSP_CERTSTATUS,(char *)(cs))
410 OCSP_RESPONSE
*OCSP_sendreq_bio(BIO
*b
, char *path
, OCSP_REQUEST
*req
);
412 OCSP_CERTID
*OCSP_cert_to_id(const EVP_MD
*dgst
, X509
*subject
, X509
*issuer
);
414 OCSP_CERTID
*OCSP_cert_id_new(const EVP_MD
*dgst
,
415 X509_NAME
*issuerName
,
416 ASN1_BIT_STRING
* issuerKey
,
417 ASN1_INTEGER
*serialNumber
);
419 OCSP_ONEREQ
*OCSP_request_add0_id(OCSP_REQUEST
*req
, OCSP_CERTID
*cid
);
421 int OCSP_request_add1_nonce(OCSP_REQUEST
*req
, unsigned char *val
, int len
);
422 int OCSP_basic_add1_nonce(OCSP_BASICRESP
*resp
, unsigned char *val
, int len
);
423 int OCSP_check_nonce(OCSP_REQUEST
*req
, OCSP_BASICRESP
*bs
);
424 int OCSP_copy_nonce(OCSP_BASICRESP
*resp
, OCSP_REQUEST
*req
);
426 int OCSP_request_set1_name(OCSP_REQUEST
*req
, X509_NAME
*nm
);
427 int OCSP_request_add1_cert(OCSP_REQUEST
*req
, X509
*cert
);
429 int OCSP_request_sign(OCSP_REQUEST
*req
,
433 STACK_OF(X509
) *certs
,
434 unsigned long flags
);
436 int OCSP_response_status(OCSP_RESPONSE
*resp
);
437 OCSP_BASICRESP
*OCSP_response_get1_basic(OCSP_RESPONSE
*resp
);
439 int OCSP_resp_count(OCSP_BASICRESP
*bs
);
440 OCSP_SINGLERESP
*OCSP_resp_get0(OCSP_BASICRESP
*bs
, int idx
);
441 int OCSP_resp_find(OCSP_BASICRESP
*bs
, OCSP_CERTID
*id
, int last
);
442 int OCSP_single_get0_status(OCSP_SINGLERESP
*single
, int *reason
,
443 ASN1_GENERALIZEDTIME
**revtime
,
444 ASN1_GENERALIZEDTIME
**thisupd
,
445 ASN1_GENERALIZEDTIME
**nextupd
);
446 int OCSP_resp_find_status(OCSP_BASICRESP
*bs
, OCSP_CERTID
*id
, int *status
,
448 ASN1_GENERALIZEDTIME
**revtime
,
449 ASN1_GENERALIZEDTIME
**thisupd
,
450 ASN1_GENERALIZEDTIME
**nextupd
);
451 int OCSP_check_validity(ASN1_GENERALIZEDTIME
*thisupd
,
452 ASN1_GENERALIZEDTIME
*nextupd
,
453 long sec
, long maxsec
);
455 int OCSP_request_verify(OCSP_REQUEST
*req
, STACK_OF(X509
) *certs
, X509_STORE
*store
, unsigned long flags
);
457 int OCSP_parse_url(char *url
, char **phost
, char **pport
, char **ppath
, int *pssl
);
459 int OCSP_id_issuer_cmp(OCSP_CERTID
*a
, OCSP_CERTID
*b
);
460 int OCSP_id_cmp(OCSP_CERTID
*a
, OCSP_CERTID
*b
);
462 int OCSP_request_onereq_count(OCSP_REQUEST
*req
);
463 OCSP_ONEREQ
*OCSP_request_onereq_get0(OCSP_REQUEST
*req
, int i
);
464 OCSP_CERTID
*OCSP_onereq_get0_id(OCSP_ONEREQ
*one
);
465 int OCSP_id_get0_info(ASN1_OCTET_STRING
**piNameHash
, ASN1_OBJECT
**pmd
,
466 ASN1_OCTET_STRING
**pikeyHash
,
467 ASN1_INTEGER
**pserial
, OCSP_CERTID
*cid
);
468 int OCSP_request_is_signed(OCSP_REQUEST
*req
);
469 OCSP_RESPONSE
*OCSP_response_create(int status
, OCSP_BASICRESP
*bs
);
470 OCSP_SINGLERESP
*OCSP_basic_add1_status(OCSP_BASICRESP
*rsp
,
472 int status
, int reason
,
474 ASN1_TIME
*thisupd
, ASN1_TIME
*nextupd
);
475 int OCSP_basic_add1_cert(OCSP_BASICRESP
*resp
, X509
*cert
);
476 int OCSP_basic_sign(OCSP_BASICRESP
*brsp
,
477 X509
*signer
, EVP_PKEY
*key
, const EVP_MD
*dgst
,
478 STACK_OF(X509
) *certs
, unsigned long flags
);
480 ASN1_STRING
*ASN1_STRING_encode(ASN1_STRING
*s
, int (*i2d
)(),
481 char *data
, STACK_OF(ASN1_OBJECT
) *sk
);
483 X509_EXTENSION
*OCSP_crlID_new(char *url
, long *n
, char *tim
);
485 X509_EXTENSION
*OCSP_accept_responses_new(char **oids
);
487 X509_EXTENSION
*OCSP_archive_cutoff_new(char* tim
);
489 X509_EXTENSION
*OCSP_url_svcloc_new(X509_NAME
* issuer
, char **urls
);
491 int OCSP_REQUEST_get_ext_count(OCSP_REQUEST
*x
);
492 int OCSP_REQUEST_get_ext_by_NID(OCSP_REQUEST
*x
, int nid
, int lastpos
);
493 int OCSP_REQUEST_get_ext_by_OBJ(OCSP_REQUEST
*x
, ASN1_OBJECT
*obj
, int lastpos
);
494 int OCSP_REQUEST_get_ext_by_critical(OCSP_REQUEST
*x
, int crit
, int lastpos
);
495 X509_EXTENSION
*OCSP_REQUEST_get_ext(OCSP_REQUEST
*x
, int loc
);
496 X509_EXTENSION
*OCSP_REQUEST_delete_ext(OCSP_REQUEST
*x
, int loc
);
497 void *OCSP_REQUEST_get1_ext_d2i(OCSP_REQUEST
*x
, int nid
, int *crit
, int *idx
);
498 int OCSP_REQUEST_add1_ext_i2d(OCSP_REQUEST
*x
, int nid
, void *value
, int crit
,
499 unsigned long flags
);
500 int OCSP_REQUEST_add_ext(OCSP_REQUEST
*x
, X509_EXTENSION
*ex
, int loc
);
502 int OCSP_ONEREQ_get_ext_count(OCSP_ONEREQ
*x
);
503 int OCSP_ONEREQ_get_ext_by_NID(OCSP_ONEREQ
*x
, int nid
, int lastpos
);
504 int OCSP_ONEREQ_get_ext_by_OBJ(OCSP_ONEREQ
*x
, ASN1_OBJECT
*obj
, int lastpos
);
505 int OCSP_ONEREQ_get_ext_by_critical(OCSP_ONEREQ
*x
, int crit
, int lastpos
);
506 X509_EXTENSION
*OCSP_ONEREQ_get_ext(OCSP_ONEREQ
*x
, int loc
);
507 X509_EXTENSION
*OCSP_ONEREQ_delete_ext(OCSP_ONEREQ
*x
, int loc
);
508 void *OCSP_ONEREQ_get1_ext_d2i(OCSP_ONEREQ
*x
, int nid
, int *crit
, int *idx
);
509 int OCSP_ONEREQ_add1_ext_i2d(OCSP_ONEREQ
*x
, int nid
, void *value
, int crit
,
510 unsigned long flags
);
511 int OCSP_ONEREQ_add_ext(OCSP_ONEREQ
*x
, X509_EXTENSION
*ex
, int loc
);
513 int OCSP_BASICRESP_get_ext_count(OCSP_BASICRESP
*x
);
514 int OCSP_BASICRESP_get_ext_by_NID(OCSP_BASICRESP
*x
, int nid
, int lastpos
);
515 int OCSP_BASICRESP_get_ext_by_OBJ(OCSP_BASICRESP
*x
, ASN1_OBJECT
*obj
, int lastpos
);
516 int OCSP_BASICRESP_get_ext_by_critical(OCSP_BASICRESP
*x
, int crit
, int lastpos
);
517 X509_EXTENSION
*OCSP_BASICRESP_get_ext(OCSP_BASICRESP
*x
, int loc
);
518 X509_EXTENSION
*OCSP_BASICRESP_delete_ext(OCSP_BASICRESP
*x
, int loc
);
519 void *OCSP_BASICRESP_get1_ext_d2i(OCSP_BASICRESP
*x
, int nid
, int *crit
, int *idx
);
520 int OCSP_BASICRESP_add1_ext_i2d(OCSP_BASICRESP
*x
, int nid
, void *value
, int crit
,
521 unsigned long flags
);
522 int OCSP_BASICRESP_add_ext(OCSP_BASICRESP
*x
, X509_EXTENSION
*ex
, int loc
);
524 int OCSP_SINGLERESP_get_ext_count(OCSP_SINGLERESP
*x
);
525 int OCSP_SINGLERESP_get_ext_by_NID(OCSP_SINGLERESP
*x
, int nid
, int lastpos
);
526 int OCSP_SINGLERESP_get_ext_by_OBJ(OCSP_SINGLERESP
*x
, ASN1_OBJECT
*obj
, int lastpos
);
527 int OCSP_SINGLERESP_get_ext_by_critical(OCSP_SINGLERESP
*x
, int crit
, int lastpos
);
528 X509_EXTENSION
*OCSP_SINGLERESP_get_ext(OCSP_SINGLERESP
*x
, int loc
);
529 X509_EXTENSION
*OCSP_SINGLERESP_delete_ext(OCSP_SINGLERESP
*x
, int loc
);
530 void *OCSP_SINGLERESP_get1_ext_d2i(OCSP_SINGLERESP
*x
, int nid
, int *crit
, int *idx
);
531 int OCSP_SINGLERESP_add1_ext_i2d(OCSP_SINGLERESP
*x
, int nid
, void *value
, int crit
,
532 unsigned long flags
);
533 int OCSP_SINGLERESP_add_ext(OCSP_SINGLERESP
*x
, X509_EXTENSION
*ex
, int loc
);
535 DECLARE_ASN1_FUNCTIONS(OCSP_SINGLERESP
)
536 DECLARE_ASN1_FUNCTIONS(OCSP_CERTSTATUS
)
537 DECLARE_ASN1_FUNCTIONS(OCSP_REVOKEDINFO
)
538 DECLARE_ASN1_FUNCTIONS(OCSP_BASICRESP
)
539 DECLARE_ASN1_FUNCTIONS(OCSP_RESPDATA
)
540 DECLARE_ASN1_FUNCTIONS(OCSP_RESPID
)
541 DECLARE_ASN1_FUNCTIONS(OCSP_RESPONSE
)
542 DECLARE_ASN1_FUNCTIONS(OCSP_RESPBYTES
)
543 DECLARE_ASN1_FUNCTIONS(OCSP_ONEREQ
)
544 DECLARE_ASN1_FUNCTIONS(OCSP_CERTID
)
545 DECLARE_ASN1_FUNCTIONS(OCSP_REQUEST
)
546 DECLARE_ASN1_FUNCTIONS(OCSP_SIGNATURE
)
547 DECLARE_ASN1_FUNCTIONS(OCSP_REQINFO
)
548 DECLARE_ASN1_FUNCTIONS(OCSP_CRLID
)
549 DECLARE_ASN1_FUNCTIONS(OCSP_SERVICELOC
)
551 char *OCSP_response_status_str(long s
);
552 char *OCSP_cert_status_str(long s
);
553 char *OCSP_crl_reason_str(long s
);
555 int OCSP_REQUEST_print(BIO
*bp
, OCSP_REQUEST
* a
, unsigned long flags
);
556 int OCSP_RESPONSE_print(BIO
*bp
, OCSP_RESPONSE
* o
, unsigned long flags
);
558 int OCSP_basic_verify(OCSP_BASICRESP
*bs
, STACK_OF(X509
) *certs
,
559 X509_STORE
*st
, unsigned long flags
);
561 /* BEGIN ERROR CODES */
562 /* The following lines are auto generated by the script mkerr.pl. Any changes
563 * made after this point may be overwritten when the script is next run.
565 void ERR_load_OCSP_strings(void);
567 /* Error codes for the OCSP functions. */
569 /* Function codes. */
570 #define OCSP_F_ASN1_STRING_ENCODE 100
571 #define OCSP_F_CERT_ID_NEW 101
572 #define OCSP_F_D2I_OCSP_NONCE 102
573 #define OCSP_F_OCSP_BASIC_ADD1_STATUS 103
574 #define OCSP_F_OCSP_BASIC_SIGN 104
575 #define OCSP_F_OCSP_BASIC_VERIFY 105
576 #define OCSP_F_OCSP_CHECK_DELEGATED 106
577 #define OCSP_F_OCSP_CHECK_IDS 107
578 #define OCSP_F_OCSP_CHECK_ISSUER 108
579 #define OCSP_F_OCSP_CHECK_VALIDITY 115
580 #define OCSP_F_OCSP_MATCH_ISSUERID 109
581 #define OCSP_F_OCSP_PARSE_URL 114
582 #define OCSP_F_OCSP_REQUEST_SIGN 110
583 #define OCSP_F_OCSP_REQUEST_VERIFY 116
584 #define OCSP_F_OCSP_RESPONSE_GET1_BASIC 111
585 #define OCSP_F_OCSP_SENDREQ_BIO 112
586 #define OCSP_F_REQUEST_VERIFY 113
589 #define OCSP_R_BAD_DATA 100
590 #define OCSP_R_CERTIFICATE_VERIFY_ERROR 101
591 #define OCSP_R_DIGEST_ERR 102
592 #define OCSP_R_ERROR_IN_NEXTUPDATE_FIELD 122
593 #define OCSP_R_ERROR_IN_THISUPDATE_FIELD 123
594 #define OCSP_R_ERROR_PARSING_URL 121
595 #define OCSP_R_MISSING_OCSPSIGNING_USAGE 103
596 #define OCSP_R_NEXTUPDATE_BEFORE_THISUPDATE 124
597 #define OCSP_R_NOT_BASIC_RESPONSE 104
598 #define OCSP_R_NO_CERTIFICATES_IN_CHAIN 105
599 #define OCSP_R_NO_CONTENT 106
600 #define OCSP_R_NO_PUBLIC_KEY 107
601 #define OCSP_R_NO_RESPONSE_DATA 108
602 #define OCSP_R_NO_REVOKED_TIME 109
603 #define OCSP_R_PRIVATE_KEY_DOES_NOT_MATCH_CERTIFICATE 110
604 #define OCSP_R_REQUEST_NOT_SIGNED 128
605 #define OCSP_R_RESPONSE_CONTAINS_NO_REVOCATION_DATA 111
606 #define OCSP_R_ROOT_CA_NOT_TRUSTED 112
607 #define OCSP_R_SERVER_READ_ERROR 113
608 #define OCSP_R_SERVER_RESPONSE_ERROR 114
609 #define OCSP_R_SERVER_RESPONSE_PARSE_ERROR 115
610 #define OCSP_R_SERVER_WRITE_ERROR 116
611 #define OCSP_R_SIGNATURE_FAILURE 117
612 #define OCSP_R_SIGNER_CERTIFICATE_NOT_FOUND 118
613 #define OCSP_R_STATUS_EXPIRED 125
614 #define OCSP_R_STATUS_NOT_YET_VALID 126
615 #define OCSP_R_STATUS_TOO_OLD 127
616 #define OCSP_R_UNKNOWN_MESSAGE_DIGEST 119
617 #define OCSP_R_UNKNOWN_NID 120
618 #define OCSP_R_UNSUPPORTED_REQUESTORNAME_TYPE 129