Home
last modified time | relevance | path

Searched refs:TS_MSG_IMPRINT (Results 1 – 12 of 12) sorted by relevance

/freebsd/crypto/openssl/crypto/ts/
H A Dts_asn1.c15 ASN1_SEQUENCE(TS_MSG_IMPRINT) = {
16 ASN1_SIMPLE(TS_MSG_IMPRINT, hash_algo, X509_ALGOR),
17 ASN1_SIMPLE(TS_MSG_IMPRINT, hashed_msg, ASN1_OCTET_STRING)
18 } static_ASN1_SEQUENCE_END(TS_MSG_IMPRINT)
20 IMPLEMENT_ASN1_FUNCTIONS(TS_MSG_IMPRINT)
21 IMPLEMENT_ASN1_DUP_FUNCTION(TS_MSG_IMPRINT)
22 TS_MSG_IMPRINT *d2i_TS_MSG_IMPRINT_bio(BIO *bp, TS_MSG_IMPRINT **a)
24 return ASN1_d2i_bio_of(TS_MSG_IMPRINT, TS_MSG_IMPRINT_new,
28 int i2d_TS_MSG_IMPRINT_bio(BIO *bp, const TS_MSG_IMPRINT *a) in i2d_TS_MSG_IMPRINT_bio()
30 return ASN1_i2d_bio_of(TS_MSG_IMPRINT, i2d_TS_MSG_IMPRINT, bp, a); in i2d_TS_MSG_IMPRINT_bio()
[all …]
H A Dts_req_utils.c27 int TS_REQ_set_msg_imprint(TS_REQ *a, TS_MSG_IMPRINT *msg_imprint) in TS_REQ_set_msg_imprint()
29 TS_MSG_IMPRINT *new_msg_imprint; in TS_REQ_set_msg_imprint()
43 TS_MSG_IMPRINT *TS_REQ_get_msg_imprint(TS_REQ *a) in TS_REQ_get_msg_imprint()
48 int TS_MSG_IMPRINT_set_algo(TS_MSG_IMPRINT *a, X509_ALGOR *alg) in TS_MSG_IMPRINT_set_algo()
64 X509_ALGOR *TS_MSG_IMPRINT_get_algo(TS_MSG_IMPRINT *a) in TS_MSG_IMPRINT_get_algo()
69 int TS_MSG_IMPRINT_set_msg(TS_MSG_IMPRINT *a, unsigned char *d, int len) in TS_MSG_IMPRINT_set_msg()
74 ASN1_OCTET_STRING *TS_MSG_IMPRINT_get_msg(TS_MSG_IMPRINT *a) in TS_MSG_IMPRINT_get_msg()
H A Dts_local.h44 TS_MSG_IMPRINT *msg_imprint;
85 TS_MSG_IMPRINT *msg_imprint;
H A Dts_rsp_utils.c89 int TS_TST_INFO_set_msg_imprint(TS_TST_INFO *a, TS_MSG_IMPRINT *msg_imprint) in TS_TST_INFO_set_msg_imprint()
91 TS_MSG_IMPRINT *new_msg_imprint; in TS_TST_INFO_set_msg_imprint()
105 TS_MSG_IMPRINT *TS_TST_INFO_get_msg_imprint(TS_TST_INFO *a) in TS_TST_INFO_get_msg_imprint()
H A Dts_lib.c80 int TS_MSG_IMPRINT_print_bio(BIO *bio, TS_MSG_IMPRINT *a) in TS_MSG_IMPRINT_print_bio()
H A Dts_verify_ctx.c105 TS_MSG_IMPRINT *imprint; in TS_REQ_to_TS_VERIFY_CTX()
H A Dts_rsp_verify.c422 TS_MSG_IMPRINT *msg_imprint = tst_info->msg_imprint; in ts_compute_imprint()
492 TS_MSG_IMPRINT *b = tst_info->msg_imprint; in ts_check_imprints()
H A Dts_rsp_sign.c449 TS_MSG_IMPRINT *msg_imprint; in ts_RESP_check_request()
/freebsd/crypto/openssl/include/openssl/
H A Dts.h40 typedef struct TS_msg_imprint_st TS_MSG_IMPRINT; typedef
79 DECLARE_ASN1_ALLOC_FUNCTIONS(TS_MSG_IMPRINT)
80 DECLARE_ASN1_ENCODE_FUNCTIONS_only(TS_MSG_IMPRINT, TS_MSG_IMPRINT)
81 DECLARE_ASN1_DUP_FUNCTION(TS_MSG_IMPRINT)
84 TS_MSG_IMPRINT *d2i_TS_MSG_IMPRINT_fp(FILE *fp, TS_MSG_IMPRINT **a);
85 int i2d_TS_MSG_IMPRINT_fp(FILE *fp, const TS_MSG_IMPRINT *a);
87 TS_MSG_IMPRINT *d2i_TS_MSG_IMPRINT_bio(BIO *bio, TS_MSG_IMPRINT **a);
88 int i2d_TS_MSG_IMPRINT_bio(BIO *bio, const TS_MSG_IMPRINT *a);
133 int TS_REQ_set_msg_imprint(TS_REQ *a, TS_MSG_IMPRINT *msg_imprint);
134 TS_MSG_IMPRINT *TS_REQ_get_msg_imprint(TS_REQ *a);
[all …]
/freebsd/crypto/openssl/fuzz/
H A Dasn1.c335 DO_TEST(TS_MSG_IMPRINT, d2i_TS_MSG_IMPRINT, i2d_TS_MSG_IMPRINT, TS_MSG_IMPRINT_print_bio); in FuzzerTestOneInput()
/freebsd/crypto/openssl/util/
H A Dindent.pro408 -T TS_MSG_IMPRINT
/freebsd/crypto/openssl/apps/
H A Dts.c447 TS_MSG_IMPRINT *msg_imprint = NULL; in create_query()