Home
last modified time | relevance | path

Searched refs:OCSP_REQUEST (Results 1 – 13 of 13) sorted by relevance

/openbsd/lib/libcrypto/ocsp/
H A Docsp.h125 typedef struct ocsp_request_st OCSP_REQUEST; typedef
211 int OCSP_check_nonce(OCSP_REQUEST *req, OCSP_BASICRESP *bs);
215 int OCSP_request_add1_cert(OCSP_REQUEST *req, X509 *cert);
255 int OCSP_request_onereq_count(OCSP_REQUEST *req);
261 int OCSP_request_is_signed(OCSP_REQUEST *req);
278 int OCSP_REQUEST_get_ext_count(OCSP_REQUEST *x);
386 OCSP_REQUEST *OCSP_REQUEST_new(void);
387 void OCSP_REQUEST_free(OCSP_REQUEST *a);
388 OCSP_REQUEST *d2i_OCSP_REQUEST(OCSP_REQUEST **a, const unsigned char **in, long len);
390 OCSP_REQUEST *d2i_OCSP_REQUEST_bio(BIO *bp, OCSP_REQUEST **a);
[all …]
H A Docsp_ext.c81 OCSP_REQUEST_get_ext_count(OCSP_REQUEST *x) in OCSP_REQUEST_get_ext_count()
88 OCSP_REQUEST_get_ext_by_NID(OCSP_REQUEST *x, int nid, int lastpos) in OCSP_REQUEST_get_ext_by_NID()
96 OCSP_REQUEST_get_ext_by_OBJ(OCSP_REQUEST *x, const ASN1_OBJECT *obj, in OCSP_REQUEST_get_ext_by_OBJ()
105 OCSP_REQUEST_get_ext_by_critical(OCSP_REQUEST *x, int crit, int lastpos) in OCSP_REQUEST_get_ext_by_critical()
113 OCSP_REQUEST_get_ext(OCSP_REQUEST *x, int loc) in OCSP_REQUEST_get_ext()
120 OCSP_REQUEST_delete_ext(OCSP_REQUEST *x, int loc) in OCSP_REQUEST_delete_ext()
127 OCSP_REQUEST_get1_ext_d2i(OCSP_REQUEST *x, int nid, int *crit, int *idx) in OCSP_REQUEST_get1_ext_d2i()
143 OCSP_REQUEST_add_ext(OCSP_REQUEST *x, X509_EXTENSION *ex, int loc) in OCSP_REQUEST_add_ext()
402 OCSP_request_add1_nonce(OCSP_REQUEST *req, unsigned char *val, int len) in OCSP_request_add1_nonce()
430 OCSP_check_nonce(OCSP_REQUEST *req, OCSP_BASICRESP *bs) in OCSP_check_nonce()
[all …]
H A Docsp_asn.c335 .offset = offsetof(OCSP_REQUEST, tbsRequest),
342 .offset = offsetof(OCSP_REQUEST, optionalSignature),
354 .size = sizeof(OCSP_REQUEST),
359 OCSP_REQUEST *
368 i2d_OCSP_REQUEST(OCSP_REQUEST *a, unsigned char **out) in i2d_OCSP_REQUEST()
374 OCSP_REQUEST *
375 d2i_OCSP_REQUEST_bio(BIO *bp, OCSP_REQUEST **a) in d2i_OCSP_REQUEST_bio()
382 i2d_OCSP_REQUEST_bio(BIO *bp, OCSP_REQUEST *a) in i2d_OCSP_REQUEST_bio()
388 OCSP_REQUEST *
391 return (OCSP_REQUEST *)ASN1_item_new(&OCSP_REQUEST_it); in OCSP_REQUEST_new()
[all …]
H A Docsp_cl.c86 OCSP_request_add0_id(OCSP_REQUEST *req, OCSP_CERTID *cid) in OCSP_request_add0_id()
108 OCSP_request_set1_name(OCSP_REQUEST *req, X509_NAME *nm) in OCSP_request_set1_name()
129 OCSP_request_add1_cert(OCSP_REQUEST *req, X509 *cert) in OCSP_request_add1_cert()
156 OCSP_request_sign(OCSP_REQUEST *req, X509 *signer, EVP_PKEY *key, in OCSP_request_sign()
H A Docsp_srv.c75 OCSP_request_onereq_count(OCSP_REQUEST *req) in OCSP_request_onereq_count()
82 OCSP_request_onereq_get0(OCSP_REQUEST *req, int i) in OCSP_request_onereq_get0()
114 OCSP_request_is_signed(OCSP_REQUEST *req) in OCSP_request_is_signed()
H A Docsp_ht.c121 OCSP_REQ_CTX_set1_req(OCSP_REQ_CTX *rctx, OCSP_REQUEST *req) in OCSP_REQ_CTX_set1_req()
155 OCSP_sendreq_new(BIO *io, const char *path, OCSP_REQUEST *req, int maxline) in OCSP_sendreq_new()
448 OCSP_sendreq_bio(BIO *b, const char *path, OCSP_REQUEST *req) in OCSP_sendreq_bio()
H A Docsp_vfy.c75 static int ocsp_req_find_signer(X509 **psigner, OCSP_REQUEST *req,
383 OCSP_request_verify(OCSP_REQUEST *req, STACK_OF(X509) *certs, X509_STORE *store, in OCSP_request_verify()
456 ocsp_req_find_signer(X509 **psigner, OCSP_REQUEST *req, X509_NAME *nm, in ocsp_req_find_signer()
H A Docsp_prn.c153 OCSP_REQUEST_print(BIO *bp, OCSP_REQUEST* o, unsigned long flags) in OCSP_REQUEST_print()
/openbsd/usr.bin/openssl/
H A Docsp.c83 static int add_ocsp_cert(OCSP_REQUEST **req, X509 *cert,
85 static int add_ocsp_serial(OCSP_REQUEST **req, char *serial,
91 static int make_ocsp_response(OCSP_RESPONSE **resp, OCSP_REQUEST *req,
97 static int do_responder(OCSP_REQUEST **preq, BIO **pcbio, BIO *acbio,
101 STACK_OF(CONF_VALUE) *headers, const char *host, OCSP_REQUEST *req,
128 OCSP_REQUEST *req;
1187 print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req, in print_ocsp_summary()
1248 make_ocsp_response(OCSP_RESPONSE **resp, OCSP_REQUEST *req, CA_DB *db, in make_ocsp_response()
1400 do_responder(OCSP_REQUEST **preq, BIO **pcbio, BIO *acbio, char *port) in do_responder()
1403 OCSP_REQUEST *req = NULL; in do_responder()
[all …]
H A Dapps.h184 OCSP_RESPONSE *process_responder(BIO *err, OCSP_REQUEST *req,
H A Ds_server.c2276 OCSP_REQUEST *req = NULL; in cert_status_cb()
/openbsd/sbin/iked/
H A Docsp.c49 OCSP_REQUEST *ocsp_req; /* ocsp-request */
/openbsd/usr.sbin/ocspcheck/
H A Docspcheck.c48 OCSP_REQUEST *req;