Symbol: OSSL_CMP_PKIHEADER
crypto/openssl/apps/cmp.c
937
OSSL_CMP_PKIHEADER *hdr;
crypto/openssl/crypto/cmp/cmp_asn.c
1032
ASN1_SEQUENCE(OSSL_CMP_PKIHEADER) = {
crypto/openssl/crypto/cmp/cmp_asn.c
1033
ASN1_SIMPLE(OSSL_CMP_PKIHEADER, pvno, ASN1_INTEGER),
crypto/openssl/crypto/cmp/cmp_asn.c
1034
ASN1_SIMPLE(OSSL_CMP_PKIHEADER, sender, GENERAL_NAME),
crypto/openssl/crypto/cmp/cmp_asn.c
1035
ASN1_SIMPLE(OSSL_CMP_PKIHEADER, recipient, GENERAL_NAME),
crypto/openssl/crypto/cmp/cmp_asn.c
1036
ASN1_EXP_OPT(OSSL_CMP_PKIHEADER, messageTime, ASN1_GENERALIZEDTIME, 0),
crypto/openssl/crypto/cmp/cmp_asn.c
1037
ASN1_EXP_OPT(OSSL_CMP_PKIHEADER, protectionAlg, X509_ALGOR, 1),
crypto/openssl/crypto/cmp/cmp_asn.c
1038
ASN1_EXP_OPT(OSSL_CMP_PKIHEADER, senderKID, ASN1_OCTET_STRING, 2),
crypto/openssl/crypto/cmp/cmp_asn.c
1039
ASN1_EXP_OPT(OSSL_CMP_PKIHEADER, recipKID, ASN1_OCTET_STRING, 3),
crypto/openssl/crypto/cmp/cmp_asn.c
1040
ASN1_EXP_OPT(OSSL_CMP_PKIHEADER, transactionID, ASN1_OCTET_STRING, 4),
crypto/openssl/crypto/cmp/cmp_asn.c
1041
ASN1_EXP_OPT(OSSL_CMP_PKIHEADER, senderNonce, ASN1_OCTET_STRING, 5),
crypto/openssl/crypto/cmp/cmp_asn.c
1042
ASN1_EXP_OPT(OSSL_CMP_PKIHEADER, recipNonce, ASN1_OCTET_STRING, 6),
crypto/openssl/crypto/cmp/cmp_asn.c
1044
ASN1_EXP_SEQUENCE_OF_OPT(OSSL_CMP_PKIHEADER, freeText, ASN1_UTF8STRING, 7),
crypto/openssl/crypto/cmp/cmp_asn.c
1045
ASN1_EXP_SEQUENCE_OF_OPT(OSSL_CMP_PKIHEADER, generalInfo,
crypto/openssl/crypto/cmp/cmp_asn.c
1047
} ASN1_SEQUENCE_END(OSSL_CMP_PKIHEADER)
crypto/openssl/crypto/cmp/cmp_asn.c
1048
IMPLEMENT_ASN1_FUNCTIONS(OSSL_CMP_PKIHEADER)
crypto/openssl/crypto/cmp/cmp_asn.c
1051
ASN1_SIMPLE(OSSL_CMP_MSG, header, OSSL_CMP_PKIHEADER),
crypto/openssl/crypto/cmp/cmp_asn.c
1057
ASN1_SIMPLE(OSSL_CMP_MSG, header, OSSL_CMP_PKIHEADER),
crypto/openssl/crypto/cmp/cmp_hdr.c
103
int ossl_cmp_hdr_set1_recipient(OSSL_CMP_PKIHEADER *hdr, const X509_NAME *nm)
crypto/openssl/crypto/cmp/cmp_hdr.c
110
int ossl_cmp_hdr_update_messageTime(OSSL_CMP_PKIHEADER *hdr)
crypto/openssl/crypto/cmp/cmp_hdr.c
134
int ossl_cmp_hdr_set1_senderKID(OSSL_CMP_PKIHEADER *hdr,
crypto/openssl/crypto/cmp/cmp_hdr.c
143
int ossl_cmp_hdr_push0_freeText(OSSL_CMP_PKIHEADER *hdr, ASN1_UTF8STRING *text)
crypto/openssl/crypto/cmp/cmp_hdr.c
155
int ossl_cmp_hdr_push1_freeText(OSSL_CMP_PKIHEADER *hdr, ASN1_UTF8STRING *text)
crypto/openssl/crypto/cmp/cmp_hdr.c
168
int ossl_cmp_hdr_generalInfo_push0_item(OSSL_CMP_PKIHEADER *hdr,
crypto/openssl/crypto/cmp/cmp_hdr.c
176
int ossl_cmp_hdr_generalInfo_push1_items(OSSL_CMP_PKIHEADER *hdr,
crypto/openssl/crypto/cmp/cmp_hdr.c
198
int ossl_cmp_hdr_set_implicitConfirm(OSSL_CMP_PKIHEADER *hdr)
crypto/openssl/crypto/cmp/cmp_hdr.c
223
int ossl_cmp_hdr_has_implicitConfirm(const OSSL_CMP_PKIHEADER *hdr)
crypto/openssl/crypto/cmp/cmp_hdr.c
23
int ossl_cmp_hdr_set_pvno(OSSL_CMP_PKIHEADER *hdr, int pvno)
crypto/openssl/crypto/cmp/cmp_hdr.c
252
int ossl_cmp_hdr_set_transactionID(OSSL_CMP_CTX *ctx, OSSL_CMP_PKIHEADER *hdr)
crypto/openssl/crypto/cmp/cmp_hdr.c
272
int ossl_cmp_hdr_init(OSSL_CMP_CTX *ctx, OSSL_CMP_PKIHEADER *hdr)
crypto/openssl/crypto/cmp/cmp_hdr.c
30
int ossl_cmp_hdr_get_pvno(const OSSL_CMP_PKIHEADER *hdr)
crypto/openssl/crypto/cmp/cmp_hdr.c
41
int ossl_cmp_hdr_get_protection_nid(const OSSL_CMP_PKIHEADER *hdr)
crypto/openssl/crypto/cmp/cmp_hdr.c
49
ASN1_OCTET_STRING *OSSL_CMP_HDR_get0_transactionID(const OSSL_CMP_PKIHEADER *hdr)
crypto/openssl/crypto/cmp/cmp_hdr.c
58
ASN1_OCTET_STRING *ossl_cmp_hdr_get0_senderNonce(const OSSL_CMP_PKIHEADER *hdr)
crypto/openssl/crypto/cmp/cmp_hdr.c
65
ASN1_OCTET_STRING *OSSL_CMP_HDR_get0_recipNonce(const OSSL_CMP_PKIHEADER *hdr)
crypto/openssl/crypto/cmp/cmp_hdr.c
75
*OSSL_CMP_HDR_get0_geninfo_ITAVs(const OSSL_CMP_PKIHEADER *hdr)
crypto/openssl/crypto/cmp/cmp_hdr.c
96
int ossl_cmp_hdr_set1_sender(OSSL_CMP_PKIHEADER *hdr, const X509_NAME *nm)
crypto/openssl/crypto/cmp/cmp_local.h
724
OSSL_CMP_PKIHEADER *header;
crypto/openssl/crypto/cmp/cmp_local.h
742
OSSL_CMP_PKIHEADER *header;
crypto/openssl/crypto/cmp/cmp_local.h
887
int ossl_cmp_hdr_set_pvno(OSSL_CMP_PKIHEADER *hdr, int pvno);
crypto/openssl/crypto/cmp/cmp_local.h
888
int ossl_cmp_hdr_get_pvno(const OSSL_CMP_PKIHEADER *hdr);
crypto/openssl/crypto/cmp/cmp_local.h
889
int ossl_cmp_hdr_get_protection_nid(const OSSL_CMP_PKIHEADER *hdr);
crypto/openssl/crypto/cmp/cmp_local.h
890
ASN1_OCTET_STRING *ossl_cmp_hdr_get0_senderNonce(const OSSL_CMP_PKIHEADER *hdr);
crypto/openssl/crypto/cmp/cmp_local.h
892
int ossl_cmp_hdr_set1_sender(OSSL_CMP_PKIHEADER *hdr, const X509_NAME *nm);
crypto/openssl/crypto/cmp/cmp_local.h
893
int ossl_cmp_hdr_set1_recipient(OSSL_CMP_PKIHEADER *hdr, const X509_NAME *nm);
crypto/openssl/crypto/cmp/cmp_local.h
894
int ossl_cmp_hdr_update_messageTime(OSSL_CMP_PKIHEADER *hdr);
crypto/openssl/crypto/cmp/cmp_local.h
895
int ossl_cmp_hdr_set1_senderKID(OSSL_CMP_PKIHEADER *hdr,
crypto/openssl/crypto/cmp/cmp_local.h
897
int ossl_cmp_hdr_push0_freeText(OSSL_CMP_PKIHEADER *hdr, ASN1_UTF8STRING *text);
crypto/openssl/crypto/cmp/cmp_local.h
898
int ossl_cmp_hdr_push1_freeText(OSSL_CMP_PKIHEADER *hdr, ASN1_UTF8STRING *text);
crypto/openssl/crypto/cmp/cmp_local.h
899
int ossl_cmp_hdr_generalInfo_push0_item(OSSL_CMP_PKIHEADER *hdr,
crypto/openssl/crypto/cmp/cmp_local.h
901
int ossl_cmp_hdr_generalInfo_push1_items(OSSL_CMP_PKIHEADER *hdr,
crypto/openssl/crypto/cmp/cmp_local.h
903
int ossl_cmp_hdr_set_implicitConfirm(OSSL_CMP_PKIHEADER *hdr);
crypto/openssl/crypto/cmp/cmp_local.h
904
int ossl_cmp_hdr_has_implicitConfirm(const OSSL_CMP_PKIHEADER *hdr);
crypto/openssl/crypto/cmp/cmp_local.h
907
int ossl_cmp_hdr_set_transactionID(OSSL_CMP_CTX *ctx, OSSL_CMP_PKIHEADER *hdr);
crypto/openssl/crypto/cmp/cmp_local.h
908
int ossl_cmp_hdr_init(OSSL_CMP_CTX *ctx, OSSL_CMP_PKIHEADER *hdr);
crypto/openssl/crypto/cmp/cmp_msg.c
65
OSSL_CMP_PKIHEADER *OSSL_CMP_MSG_get0_header(const OSSL_CMP_MSG *msg)
crypto/openssl/crypto/cmp/cmp_server.c
279
OSSL_CMP_PKIHEADER *hdr = OSSL_CMP_MSG_get0_header(req);
crypto/openssl/crypto/cmp/cmp_server.c
588
OSSL_CMP_PKIHEADER *hdr;
crypto/openssl/crypto/cmp/cmp_vfy.c
705
OSSL_CMP_PKIHEADER *hdr;
crypto/openssl/include/openssl/cmp.h
221
DECLARE_ASN1_FUNCTIONS(OSSL_CMP_PKIHEADER)
crypto/openssl/include/openssl/cmp.h
618
ASN1_OCTET_STRING *OSSL_CMP_HDR_get0_transactionID(const OSSL_CMP_PKIHEADER *hdr);
crypto/openssl/include/openssl/cmp.h
619
ASN1_OCTET_STRING *OSSL_CMP_HDR_get0_recipNonce(const OSSL_CMP_PKIHEADER *hdr);
crypto/openssl/include/openssl/cmp.h
621
*OSSL_CMP_HDR_get0_geninfo_ITAVs(const OSSL_CMP_PKIHEADER *hdr);
crypto/openssl/include/openssl/cmp.h
624
OSSL_CMP_PKIHEADER *OSSL_CMP_MSG_get0_header(const OSSL_CMP_MSG *msg);
crypto/openssl/test/cmp_hdr_test.c
20
OSSL_CMP_PKIHEADER *hdr;
crypto/openssl/test/cmp_vfy_test.c
443
const OSSL_CMP_PKIHEADER *hdr = OSSL_CMP_MSG_get0_header(fixture->msg);