Searched refs:msg_imprint (Results 1 - 8 of 8) sorted by relevance

/barrelfish-master/lib/openssl-1.0.0d/crypto/ts/
H A Dts_req_utils.c75 int TS_REQ_set_msg_imprint(TS_REQ *a, TS_MSG_IMPRINT *msg_imprint) argument
79 if (a->msg_imprint == msg_imprint)
81 new_msg_imprint = TS_MSG_IMPRINT_dup(msg_imprint);
87 TS_MSG_IMPRINT_free(a->msg_imprint);
88 a->msg_imprint = new_msg_imprint;
94 return a->msg_imprint;
H A Dts_rsp_utils.c142 int TS_TST_INFO_set_msg_imprint(TS_TST_INFO *a, TS_MSG_IMPRINT *msg_imprint) argument
146 if (a->msg_imprint == msg_imprint)
148 new_msg_imprint = TS_MSG_IMPRINT_dup(msg_imprint);
154 TS_MSG_IMPRINT_free(a->msg_imprint);
155 a->msg_imprint = new_msg_imprint;
161 return a->msg_imprint;
H A Dts.h131 TS_MSG_IMPRINT *msg_imprint; member in struct:TS_req_st
176 TS_MSG_IMPRINT *msg_imprint; member in struct:TS_tst_info_st
378 int TS_REQ_set_msg_imprint(TS_REQ *a, TS_MSG_IMPRINT *msg_imprint);
427 int TS_TST_INFO_set_msg_imprint(TS_TST_INFO *a, TS_MSG_IMPRINT *msg_imprint);
H A Dts_asn1.c94 ASN1_SIMPLE(TS_REQ, msg_imprint, TS_MSG_IMPRINT),
138 ASN1_SIMPLE(TS_TST_INFO, msg_imprint, TS_MSG_IMPRINT),
H A Dts_rsp_sign.c509 TS_MSG_IMPRINT *msg_imprint; local
526 msg_imprint = TS_REQ_get_msg_imprint(request);
527 md_alg = TS_MSG_IMPRINT_get_algo(msg_imprint);
555 digest = TS_MSG_IMPRINT_get_msg(msg_imprint);
618 if (!TS_TST_INFO_set_msg_imprint(tst_info, ctx->request->msg_imprint))
H A Dts_rsp_verify.c586 TS_MSG_IMPRINT *msg_imprint = TS_TST_INFO_get_msg_imprint(tst_info); local
587 X509_ALGOR *md_alg_resp = TS_MSG_IMPRINT_get_algo(msg_imprint);
/barrelfish-master/include/openssl/
H A Dts.h131 TS_MSG_IMPRINT *msg_imprint; member in struct:TS_req_st
176 TS_MSG_IMPRINT *msg_imprint; member in struct:TS_tst_info_st
378 int TS_REQ_set_msg_imprint(TS_REQ *a, TS_MSG_IMPRINT *msg_imprint);
427 int TS_TST_INFO_set_msg_imprint(TS_TST_INFO *a, TS_MSG_IMPRINT *msg_imprint);
/barrelfish-master/lib/openssl-1.0.0d/apps/
H A Dts.c539 TS_MSG_IMPRINT *msg_imprint = NULL; local
555 if (!(msg_imprint = TS_MSG_IMPRINT_new())) goto err;
562 if (!TS_MSG_IMPRINT_set_algo(msg_imprint, algo)) goto err;
567 if (!TS_MSG_IMPRINT_set_msg(msg_imprint, data, len)) goto err;
569 if (!TS_REQ_set_msg_imprint(ts_req, msg_imprint)) goto err;
590 TS_MSG_IMPRINT_free(msg_imprint);

Completed in 45 milliseconds