Symbol: TS_MSG_IMPRINT
crypto/openssl/apps/ts.c
470
TS_MSG_IMPRINT *msg_imprint = NULL;
crypto/openssl/crypto/ts/ts_asn1.c
15
ASN1_SEQUENCE(TS_MSG_IMPRINT) = {
crypto/openssl/crypto/ts/ts_asn1.c
16
ASN1_SIMPLE(TS_MSG_IMPRINT, hash_algo, X509_ALGOR),
crypto/openssl/crypto/ts/ts_asn1.c
17
ASN1_SIMPLE(TS_MSG_IMPRINT, hashed_msg, ASN1_OCTET_STRING)
crypto/openssl/crypto/ts/ts_asn1.c
18
} static_ASN1_SEQUENCE_END(TS_MSG_IMPRINT)
crypto/openssl/crypto/ts/ts_asn1.c
20
IMPLEMENT_ASN1_FUNCTIONS(TS_MSG_IMPRINT)
crypto/openssl/crypto/ts/ts_asn1.c
21
IMPLEMENT_ASN1_DUP_FUNCTION(TS_MSG_IMPRINT)
crypto/openssl/crypto/ts/ts_asn1.c
22
TS_MSG_IMPRINT *d2i_TS_MSG_IMPRINT_bio(BIO *bp, TS_MSG_IMPRINT **a)
crypto/openssl/crypto/ts/ts_asn1.c
24
return ASN1_d2i_bio_of(TS_MSG_IMPRINT, TS_MSG_IMPRINT_new,
crypto/openssl/crypto/ts/ts_asn1.c
28
int i2d_TS_MSG_IMPRINT_bio(BIO *bp, const TS_MSG_IMPRINT *a)
crypto/openssl/crypto/ts/ts_asn1.c
30
return ASN1_i2d_bio_of(TS_MSG_IMPRINT, i2d_TS_MSG_IMPRINT, bp, a);
crypto/openssl/crypto/ts/ts_asn1.c
33
TS_MSG_IMPRINT *d2i_TS_MSG_IMPRINT_fp(FILE *fp, TS_MSG_IMPRINT **a)
crypto/openssl/crypto/ts/ts_asn1.c
35
return ASN1_d2i_fp_of(TS_MSG_IMPRINT, TS_MSG_IMPRINT_new,
crypto/openssl/crypto/ts/ts_asn1.c
39
int i2d_TS_MSG_IMPRINT_fp(FILE *fp, const TS_MSG_IMPRINT *a)
crypto/openssl/crypto/ts/ts_asn1.c
41
return ASN1_i2d_fp_of(TS_MSG_IMPRINT, i2d_TS_MSG_IMPRINT, fp, a);
crypto/openssl/crypto/ts/ts_asn1.c
47
ASN1_SIMPLE(TS_REQ, msg_imprint, TS_MSG_IMPRINT),
crypto/openssl/crypto/ts/ts_asn1.c
89
ASN1_SIMPLE(TS_TST_INFO, msg_imprint, TS_MSG_IMPRINT),
crypto/openssl/crypto/ts/ts_lib.c
80
int TS_MSG_IMPRINT_print_bio(BIO *bio, TS_MSG_IMPRINT *a)
crypto/openssl/crypto/ts/ts_local.h
44
TS_MSG_IMPRINT *msg_imprint;
crypto/openssl/crypto/ts/ts_local.h
85
TS_MSG_IMPRINT *msg_imprint;
crypto/openssl/crypto/ts/ts_req_utils.c
27
int TS_REQ_set_msg_imprint(TS_REQ *a, TS_MSG_IMPRINT *msg_imprint)
crypto/openssl/crypto/ts/ts_req_utils.c
29
TS_MSG_IMPRINT *new_msg_imprint;
crypto/openssl/crypto/ts/ts_req_utils.c
43
TS_MSG_IMPRINT *TS_REQ_get_msg_imprint(TS_REQ *a)
crypto/openssl/crypto/ts/ts_req_utils.c
48
int TS_MSG_IMPRINT_set_algo(TS_MSG_IMPRINT *a, X509_ALGOR *alg)
crypto/openssl/crypto/ts/ts_req_utils.c
64
X509_ALGOR *TS_MSG_IMPRINT_get_algo(TS_MSG_IMPRINT *a)
crypto/openssl/crypto/ts/ts_req_utils.c
69
int TS_MSG_IMPRINT_set_msg(TS_MSG_IMPRINT *a, unsigned char *d, int len)
crypto/openssl/crypto/ts/ts_req_utils.c
74
ASN1_OCTET_STRING *TS_MSG_IMPRINT_get_msg(TS_MSG_IMPRINT *a)
crypto/openssl/crypto/ts/ts_rsp_sign.c
448
TS_MSG_IMPRINT *msg_imprint;
crypto/openssl/crypto/ts/ts_rsp_utils.c
105
TS_MSG_IMPRINT *TS_TST_INFO_get_msg_imprint(TS_TST_INFO *a)
crypto/openssl/crypto/ts/ts_rsp_utils.c
89
int TS_TST_INFO_set_msg_imprint(TS_TST_INFO *a, TS_MSG_IMPRINT *msg_imprint)
crypto/openssl/crypto/ts/ts_rsp_utils.c
91
TS_MSG_IMPRINT *new_msg_imprint;
crypto/openssl/crypto/ts/ts_rsp_verify.c
421
TS_MSG_IMPRINT *msg_imprint = tst_info->msg_imprint;
crypto/openssl/crypto/ts/ts_rsp_verify.c
489
TS_MSG_IMPRINT *b = tst_info->msg_imprint;
crypto/openssl/crypto/ts/ts_verify_ctx.c
141
TS_MSG_IMPRINT *imprint;
crypto/openssl/fuzz/asn1.c
335
DO_TEST(TS_MSG_IMPRINT, d2i_TS_MSG_IMPRINT, i2d_TS_MSG_IMPRINT, TS_MSG_IMPRINT_print_bio);
crypto/openssl/include/openssl/ts.h
134
int TS_REQ_set_msg_imprint(TS_REQ *a, TS_MSG_IMPRINT *msg_imprint);
crypto/openssl/include/openssl/ts.h
135
TS_MSG_IMPRINT *TS_REQ_get_msg_imprint(TS_REQ *a);
crypto/openssl/include/openssl/ts.h
137
int TS_MSG_IMPRINT_set_algo(TS_MSG_IMPRINT *a, X509_ALGOR *alg);
crypto/openssl/include/openssl/ts.h
138
X509_ALGOR *TS_MSG_IMPRINT_get_algo(TS_MSG_IMPRINT *a);
crypto/openssl/include/openssl/ts.h
140
int TS_MSG_IMPRINT_set_msg(TS_MSG_IMPRINT *a, unsigned char *d, int len);
crypto/openssl/include/openssl/ts.h
141
ASN1_OCTET_STRING *TS_MSG_IMPRINT_get_msg(TS_MSG_IMPRINT *a);
crypto/openssl/include/openssl/ts.h
183
int TS_TST_INFO_set_msg_imprint(TS_TST_INFO *a, TS_MSG_IMPRINT *msg_imprint);
crypto/openssl/include/openssl/ts.h
184
TS_MSG_IMPRINT *TS_TST_INFO_get_msg_imprint(TS_TST_INFO *a);
crypto/openssl/include/openssl/ts.h
476
int TS_MSG_IMPRINT_print_bio(BIO *bio, TS_MSG_IMPRINT *msg);
crypto/openssl/include/openssl/ts.h
80
DECLARE_ASN1_ALLOC_FUNCTIONS(TS_MSG_IMPRINT)
crypto/openssl/include/openssl/ts.h
81
DECLARE_ASN1_ENCODE_FUNCTIONS_only(TS_MSG_IMPRINT, TS_MSG_IMPRINT)
crypto/openssl/include/openssl/ts.h
82
DECLARE_ASN1_DUP_FUNCTION(TS_MSG_IMPRINT)
crypto/openssl/include/openssl/ts.h
85
TS_MSG_IMPRINT *d2i_TS_MSG_IMPRINT_fp(FILE *fp, TS_MSG_IMPRINT **a);
crypto/openssl/include/openssl/ts.h
86
int i2d_TS_MSG_IMPRINT_fp(FILE *fp, const TS_MSG_IMPRINT *a);
crypto/openssl/include/openssl/ts.h
88
TS_MSG_IMPRINT *d2i_TS_MSG_IMPRINT_bio(BIO *bio, TS_MSG_IMPRINT **a);
crypto/openssl/include/openssl/ts.h
89
int i2d_TS_MSG_IMPRINT_bio(BIO *bio, const TS_MSG_IMPRINT *a);