Symbol: CMS_RevocationInfoChoice
crypto/openssl/crypto/cms/cms_asn1.c
65
ASN1_CHOICE(CMS_RevocationInfoChoice)
crypto/openssl/crypto/cms/cms_asn1.c
66
= { ASN1_SIMPLE(CMS_RevocationInfoChoice, d.crl, X509_CRL), ASN1_IMP(CMS_RevocationInfoChoice, d.other, CMS_OtherRevocationInfoFormat, 1) } ASN1_CHOICE_END(CMS_RevocationInfoChoice)
crypto/openssl/crypto/cms/cms_asn1.c
73
ASN1_IMP_SET_OF_OPT(CMS_SignedData, crls, CMS_RevocationInfoChoice, 1),
crypto/openssl/crypto/cms/cms_asn1.c
80
ASN1_IMP_SET_OF_OPT(CMS_OriginatorInfo, crls, CMS_RevocationInfoChoice, 1)
crypto/openssl/crypto/cms/cms_env.c
1070
CMS_RevocationInfoChoice *rch;
crypto/openssl/crypto/cms/cms_lib.c
572
static STACK_OF(CMS_RevocationInfoChoice)
crypto/openssl/crypto/cms/cms_lib.c
597
CMS_RevocationInfoChoice *CMS_add0_RevocationInfoChoice(CMS_ContentInfo *cms)
crypto/openssl/crypto/cms/cms_lib.c
599
STACK_OF(CMS_RevocationInfoChoice) **pcrls;
crypto/openssl/crypto/cms/cms_lib.c
600
CMS_RevocationInfoChoice *rch;
crypto/openssl/crypto/cms/cms_lib.c
609
rch = M_ASN1_new_of(CMS_RevocationInfoChoice);
crypto/openssl/crypto/cms/cms_lib.c
613
M_ASN1_free_of(rch, CMS_RevocationInfoChoice);
crypto/openssl/crypto/cms/cms_lib.c
621
CMS_RevocationInfoChoice *rch = CMS_add0_RevocationInfoChoice(cms);
crypto/openssl/crypto/cms/cms_lib.c
700
STACK_OF(CMS_RevocationInfoChoice) **pcrls;
crypto/openssl/crypto/cms/cms_lib.c
701
CMS_RevocationInfoChoice *rch;
crypto/openssl/crypto/cms/cms_local.h
124
STACK_OF(CMS_RevocationInfoChoice) *crls;
crypto/openssl/crypto/cms/cms_local.h
505
DECLARE_ASN1_ITEM(CMS_RevocationInfoChoice)
crypto/openssl/crypto/cms/cms_local.h
76
STACK_OF(CMS_RevocationInfoChoice) *crls;
crypto/openssl/crypto/cms/cms_sd.c
68
CMS_RevocationInfoChoice *rch;
crypto/openssl/include/openssl/cms.h
127
SKM_DEFINE_STACK_OF_INTERNAL(CMS_RevocationInfoChoice, CMS_RevocationInfoChoice, CMS_RevocationInfoChoice)
crypto/openssl/include/openssl/cms.h
129
#define sk_CMS_RevocationInfoChoice_value(sk, idx) ((CMS_RevocationInfoChoice *)OPENSSL_sk_value(ossl_check_const_CMS_RevocationInfoChoice_sk_type(sk), (idx)))
crypto/openssl/include/openssl/cms.h
130
#define sk_CMS_RevocationInfoChoice_new(cmp) ((STACK_OF(CMS_RevocationInfoChoice) *)OPENSSL_sk_new(ossl_check_CMS_RevocationInfoChoice_compfunc_type(cmp)))
crypto/openssl/include/openssl/cms.h
131
#define sk_CMS_RevocationInfoChoice_new_null() ((STACK_OF(CMS_RevocationInfoChoice) *)OPENSSL_sk_new_null())
crypto/openssl/include/openssl/cms.h
132
#define sk_CMS_RevocationInfoChoice_new_reserve(cmp, n) ((STACK_OF(CMS_RevocationInfoChoice) *)OPENSSL_sk_new_reserve(ossl_check_CMS_RevocationInfoChoice_compfunc_type(cmp), (n)))
crypto/openssl/include/openssl/cms.h
136
#define sk_CMS_RevocationInfoChoice_delete(sk, i) ((CMS_RevocationInfoChoice *)OPENSSL_sk_delete(ossl_check_CMS_RevocationInfoChoice_sk_type(sk), (i)))
crypto/openssl/include/openssl/cms.h
137
#define sk_CMS_RevocationInfoChoice_delete_ptr(sk, ptr) ((CMS_RevocationInfoChoice *)OPENSSL_sk_delete_ptr(ossl_check_CMS_RevocationInfoChoice_sk_type(sk), ossl_check_CMS_RevocationInfoChoice_type(ptr)))
crypto/openssl/include/openssl/cms.h
140
#define sk_CMS_RevocationInfoChoice_pop(sk) ((CMS_RevocationInfoChoice *)OPENSSL_sk_pop(ossl_check_CMS_RevocationInfoChoice_sk_type(sk)))
crypto/openssl/include/openssl/cms.h
141
#define sk_CMS_RevocationInfoChoice_shift(sk) ((CMS_RevocationInfoChoice *)OPENSSL_sk_shift(ossl_check_CMS_RevocationInfoChoice_sk_type(sk)))
crypto/openssl/include/openssl/cms.h
144
#define sk_CMS_RevocationInfoChoice_set(sk, idx, ptr) ((CMS_RevocationInfoChoice *)OPENSSL_sk_set(ossl_check_CMS_RevocationInfoChoice_sk_type(sk), (idx), ossl_check_CMS_RevocationInfoChoice_type(ptr)))
crypto/openssl/include/openssl/cms.h
150
#define sk_CMS_RevocationInfoChoice_dup(sk) ((STACK_OF(CMS_RevocationInfoChoice) *)OPENSSL_sk_dup(ossl_check_const_CMS_RevocationInfoChoice_sk_type(sk)))
crypto/openssl/include/openssl/cms.h
151
#define sk_CMS_RevocationInfoChoice_deep_copy(sk, copyfunc, freefunc) ((STACK_OF(CMS_RevocationInfoChoice) *)OPENSSL_sk_deep_copy(ossl_check_const_CMS_RevocationInfoChoice_sk_type(sk), ossl_check_CMS_RevocationInfoChoice_copyfunc_type(copyfunc), ossl_check_CMS_RevocationInfoChoice_freefunc_type(freefunc)))
crypto/openssl/include/openssl/cms.h
378
CMS_RevocationInfoChoice *CMS_add0_RevocationInfoChoice(CMS_ContentInfo *cms);