Home | History | Annotate | Download | only in apps

Lines Matching refs:ts_req

42 static TS_REQ *create_query(BIO *data_bio, const char *digest, const EVP_MD *md,
372 TS_REQ *query = NULL;
414 static TS_REQ *create_query(BIO *data_bio, const char *digest, const EVP_MD *md,
418 TS_REQ *ts_req = NULL;
428 if ((ts_req = TS_REQ_new()) == NULL)
430 if (!TS_REQ_set_version(ts_req, 1))
447 if (!TS_REQ_set_msg_imprint(ts_req, msg_imprint))
451 if (policy_obj && !TS_REQ_set_policy_id(ts_req, policy_obj))
457 if (nonce_asn1 && !TS_REQ_set_nonce(ts_req, nonce_asn1))
459 if (!TS_REQ_set_cert_req(ts_req, cert))
465 TS_REQ_free(ts_req);
466 ts_req = NULL;
475 return ts_req;
872 TS_REQ *request = NULL;