Home
last modified time | relevance | path

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

/minix3/crypto/external/bsd/openssl/dist/crypto/ocsp/
H A Docsp.h154 } OCSP_REQUEST; typedef
350 # define d2i_OCSP_REQUEST_bio(bp,p) ASN1_d2i_bio_of(OCSP_REQUEST,OCSP_REQUEST_new,d2i_OCSP_REQUEST,…
354 # define PEM_read_bio_OCSP_REQUEST(bp,x,cb) (OCSP_REQUEST *)PEM_ASN1_read_bio( \
370 # define i2d_OCSP_REQUEST_bio(bp,o) ASN1_i2d_bio_of(OCSP_REQUEST,i2d_OCSP_REQUEST,bp,o)
397 OCSP_RESPONSE *OCSP_sendreq_bio(BIO *b, char *path, OCSP_REQUEST *req);
398 OCSP_REQ_CTX *OCSP_sendreq_new(BIO *io, char *path, OCSP_REQUEST *req,
402 int OCSP_REQ_CTX_set1_req(OCSP_REQ_CTX *rctx, OCSP_REQUEST *req);
413 OCSP_ONEREQ *OCSP_request_add0_id(OCSP_REQUEST *req, OCSP_CERTID *cid);
415 int OCSP_request_add1_nonce(OCSP_REQUEST *req, unsigned char *val, int len);
417 int OCSP_check_nonce(OCSP_REQUEST *req, OCSP_BASICRESP *bs);
[all …]
H A Docsp_ext.c79 int OCSP_REQUEST_get_ext_count(OCSP_REQUEST *x) in OCSP_REQUEST_get_ext_count()
84 int OCSP_REQUEST_get_ext_by_NID(OCSP_REQUEST *x, int nid, int lastpos) in OCSP_REQUEST_get_ext_by_NID()
90 int OCSP_REQUEST_get_ext_by_OBJ(OCSP_REQUEST *x, ASN1_OBJECT *obj, in OCSP_REQUEST_get_ext_by_OBJ()
97 int OCSP_REQUEST_get_ext_by_critical(OCSP_REQUEST *x, int crit, int lastpos) in OCSP_REQUEST_get_ext_by_critical()
103 X509_EXTENSION *OCSP_REQUEST_get_ext(OCSP_REQUEST *x, int loc) in OCSP_REQUEST_get_ext()
108 X509_EXTENSION *OCSP_REQUEST_delete_ext(OCSP_REQUEST *x, int loc) in OCSP_REQUEST_delete_ext()
113 void *OCSP_REQUEST_get1_ext_d2i(OCSP_REQUEST *x, int nid, int *crit, int *idx) in OCSP_REQUEST_get1_ext_d2i()
118 int OCSP_REQUEST_add1_ext_i2d(OCSP_REQUEST *x, int nid, void *value, int crit, in OCSP_REQUEST_add1_ext_i2d()
125 int OCSP_REQUEST_add_ext(OCSP_REQUEST *x, X509_EXTENSION *ex, int loc) in OCSP_REQUEST_add_ext()
378 int OCSP_request_add1_nonce(OCSP_REQUEST *req, unsigned char *val, int len) in OCSP_request_add1_nonce()
[all …]
H A Docsp_asn.c96 ASN1_SEQUENCE(OCSP_REQUEST) = {
97 ASN1_SIMPLE(OCSP_REQUEST, tbsRequest, OCSP_REQINFO),
98 ASN1_EXP_OPT(OCSP_REQUEST, optionalSignature, OCSP_SIGNATURE, 0)
99 } ASN1_SEQUENCE_END(OCSP_REQUEST)
101 IMPLEMENT_ASN1_FUNCTIONS(OCSP_REQUEST)
H A Docsp_cl.c87 OCSP_ONEREQ *OCSP_request_add0_id(OCSP_REQUEST *req, OCSP_CERTID *cid) in OCSP_request_add0_id()
106 int OCSP_request_set1_name(OCSP_REQUEST *req, X509_NAME *nm) in OCSP_request_set1_name()
125 int OCSP_request_add1_cert(OCSP_REQUEST *req, X509 *cert) in OCSP_request_add1_cert()
150 int OCSP_request_sign(OCSP_REQUEST *req, in OCSP_request_sign()
H A Docsp_srv.c74 int OCSP_request_onereq_count(OCSP_REQUEST *req) in OCSP_request_onereq_count()
79 OCSP_ONEREQ *OCSP_request_onereq_get0(OCSP_REQUEST *req, int i) in OCSP_request_onereq_get0()
106 int OCSP_request_is_signed(OCSP_REQUEST *req) in OCSP_request_is_signed()
H A Docsp_ht.c121 int OCSP_REQ_CTX_set1_req(OCSP_REQ_CTX *rctx, OCSP_REQUEST *req) in OCSP_REQ_CTX_set1_req()
153 OCSP_REQ_CTX *OCSP_sendreq_new(BIO *io, char *path, OCSP_REQUEST *req, in OCSP_sendreq_new()
455 OCSP_RESPONSE *OCSP_sendreq_bio(BIO *b, 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,
370 int OCSP_request_verify(OCSP_REQUEST *req, STACK_OF(X509) *certs, in OCSP_request_verify()
435 static int ocsp_req_find_signer(X509 **psigner, OCSP_REQUEST *req, in ocsp_req_find_signer()
H A Docsp_prn.c140 int OCSP_REQUEST_print(BIO *bp, OCSP_REQUEST *o, unsigned long flags) in OCSP_REQUEST_print()
/minix3/crypto/external/bsd/openssl/dist/apps/
H A Docsp.c100 static int add_ocsp_cert(OCSP_REQUEST **req, X509 *cert,
103 static int add_ocsp_serial(OCSP_REQUEST **req, char *serial,
106 static int print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req,
111 static int make_ocsp_response(OCSP_RESPONSE **resp, OCSP_REQUEST *req,
118 static int do_responder(OCSP_REQUEST **preq, BIO **pcbio, BIO *acbio,
123 OCSP_REQUEST *req, int req_timeout);
143 OCSP_REQUEST *req = NULL; in MAIN()
862 static int add_ocsp_cert(OCSP_REQUEST **req, X509 *cert, in add_ocsp_cert()
887 static int add_ocsp_serial(OCSP_REQUEST **req, char *serial, in add_ocsp_serial()
923 static int print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req, in print_ocsp_summary()
[all …]
H A Dapps.h264 OCSP_RESPONSE *process_responder(BIO *err, OCSP_REQUEST *req,
H A Ds_server.c870 OCSP_REQUEST *req = NULL; in cert_status_cb()
/minix3/crypto/external/bsd/openssl/dist/ssl/
H A Dkssl.h81 # undef OCSP_REQUEST
/minix3/crypto/external/bsd/openssl/dist/crypto/
H A Dossl_typ.h111 # undef OCSP_REQUEST
/minix3/crypto/external/bsd/openssl/dist/util/
H A Dindent.pro368 -T OCSP_REQUEST