Home | History | Annotate | Download | only in apps

Lines Matching full:resp

79 static int make_ocsp_response(OCSP_RESPONSE **resp, OCSP_REQUEST *req, CA_DB *db,
87 static int send_ocsp_response(BIO *cbio, OCSP_RESPONSE *resp);
108 OCSP_RESPONSE *resp = NULL;
646 resp = OCSP_response_create(OCSP_RESPONSE_STATUS_MALFORMEDREQUEST, NULL);
647 send_ocsp_response(cbio, resp);
716 i = make_ocsp_response(&resp, req, rdb, rca_cert, rsigner, rkey, rother, rflags, nmin, ndays);
718 send_ocsp_response(cbio, resp);
723 resp = process_responder(bio_err, req, host, path,
725 if (!resp)
740 resp = d2i_OCSP_RESPONSE_bio(derbio, NULL);
742 if(!resp)
765 i2d_OCSP_RESPONSE_bio(derbio, resp);
769 i = OCSP_response_status(resp);
781 if (resp_text) OCSP_RESPONSE_print(out, resp, 0);
795 OCSP_RESPONSE_free(resp);
796 resp = NULL;
813 bs = OCSP_response_get1_basic(resp);
867 OCSP_RESPONSE_free(resp);
1003 static int make_ocsp_response(OCSP_RESPONSE **resp, OCSP_REQUEST *req, CA_DB *db,
1018 *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_MALFORMEDREQUEST, NULL);
1084 *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_SUCCESSFUL, bs);
1200 static int send_ocsp_response(BIO *cbio, OCSP_RESPONSE *resp)
1207 BIO_printf(cbio, http_resp, i2d_OCSP_RESPONSE(resp, NULL));
1208 i2d_OCSP_RESPONSE_bio(cbio, resp);
1305 OCSP_RESPONSE *resp = NULL;
1335 resp = query_responder(err, cbio, path, req, req_timeout);
1336 if (!resp)
1343 return resp;