Symbol: DIST_POINT
crypto/openssl/apps/lib/apps.c
2423
static const char *get_dp_url(DIST_POINT *dp)
crypto/openssl/apps/lib/apps.c
2451
static X509_CRL *load_crl_crldp(STACK_OF(DIST_POINT) *crldp)
crypto/openssl/apps/lib/apps.c
2457
DIST_POINT *dp = sk_DIST_POINT_value(crldp, i);
crypto/openssl/apps/lib/apps.c
2477
STACK_OF(DIST_POINT) *crldp;
crypto/openssl/crypto/asn1/asn1_item_list.h
65
ASN1_ITEM_ref(DIST_POINT),
crypto/openssl/crypto/cmp/cmp_asn.c
685
STACK_OF(DIST_POINT) *crldps = NULL;
crypto/openssl/crypto/cmp/cmp_asn.c
704
DIST_POINT *dp = sk_DIST_POINT_value(crldps, i);
crypto/openssl/crypto/x509/v3_crld.c
208
static DIST_POINT *crldp_from_section(X509V3_CTX *ctx,
crypto/openssl/crypto/x509/v3_crld.c
213
DIST_POINT *point = DIST_POINT_new();
crypto/openssl/crypto/x509/v3_crld.c
245
STACK_OF(DIST_POINT) *crld;
crypto/openssl/crypto/x509/v3_crld.c
258
DIST_POINT *point;
crypto/openssl/crypto/x509/v3_crld.c
331
ASN1_SEQUENCE(DIST_POINT) = {
crypto/openssl/crypto/x509/v3_crld.c
332
ASN1_EXP_OPT(DIST_POINT, distpoint, DIST_POINT_NAME, 0),
crypto/openssl/crypto/x509/v3_crld.c
333
ASN1_IMP_OPT(DIST_POINT, reasons, ASN1_BIT_STRING, 1),
crypto/openssl/crypto/x509/v3_crld.c
334
ASN1_IMP_SEQUENCE_OF_OPT(DIST_POINT, CRLissuer, GENERAL_NAME, 2)
crypto/openssl/crypto/x509/v3_crld.c
335
} ASN1_SEQUENCE_END(DIST_POINT)
crypto/openssl/crypto/x509/v3_crld.c
337
IMPLEMENT_ASN1_FUNCTIONS(DIST_POINT)
crypto/openssl/crypto/x509/v3_crld.c
339
ASN1_ITEM_TEMPLATE(CRL_DIST_POINTS) = ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SEQUENCE_OF, 0, CRLDistributionPoints, DIST_POINT)
crypto/openssl/crypto/x509/v3_crld.c
463
STACK_OF(DIST_POINT) *crld = pcrldp;
crypto/openssl/crypto/x509/v3_crld.c
464
DIST_POINT *point;
crypto/openssl/crypto/x509/v3_purp.c
349
static int setup_dp(const X509 *x, DIST_POINT *dp)
crypto/openssl/crypto/x509/x509_vfy.c
1583
static int crldp_check_crlissuer(DIST_POINT *dp, X509_CRL *crl, int crl_score)
crypto/openssl/crypto/x509/x509_vfy.c
1619
DIST_POINT *dp = sk_DIST_POINT_value(x->crldp, i);
crypto/openssl/fuzz/asn1.c
96
ASN1_ITEM_ref(DIST_POINT),
crypto/openssl/include/crypto/x509.h
191
STACK_OF(DIST_POINT) *crldp;
crypto/openssl/include/openssl/x509v3.h
338
SKM_DEFINE_STACK_OF_INTERNAL(DIST_POINT, DIST_POINT, DIST_POINT)
crypto/openssl/include/openssl/x509v3.h
340
#define sk_DIST_POINT_value(sk, idx) ((DIST_POINT *)OPENSSL_sk_value(ossl_check_const_DIST_POINT_sk_type(sk), (idx)))
crypto/openssl/include/openssl/x509v3.h
341
#define sk_DIST_POINT_new(cmp) ((STACK_OF(DIST_POINT) *)OPENSSL_sk_new(ossl_check_DIST_POINT_compfunc_type(cmp)))
crypto/openssl/include/openssl/x509v3.h
342
#define sk_DIST_POINT_new_null() ((STACK_OF(DIST_POINT) *)OPENSSL_sk_new_null())
crypto/openssl/include/openssl/x509v3.h
343
#define sk_DIST_POINT_new_reserve(cmp, n) ((STACK_OF(DIST_POINT) *)OPENSSL_sk_new_reserve(ossl_check_DIST_POINT_compfunc_type(cmp), (n)))
crypto/openssl/include/openssl/x509v3.h
347
#define sk_DIST_POINT_delete(sk, i) ((DIST_POINT *)OPENSSL_sk_delete(ossl_check_DIST_POINT_sk_type(sk), (i)))
crypto/openssl/include/openssl/x509v3.h
348
#define sk_DIST_POINT_delete_ptr(sk, ptr) ((DIST_POINT *)OPENSSL_sk_delete_ptr(ossl_check_DIST_POINT_sk_type(sk), ossl_check_DIST_POINT_type(ptr)))
crypto/openssl/include/openssl/x509v3.h
351
#define sk_DIST_POINT_pop(sk) ((DIST_POINT *)OPENSSL_sk_pop(ossl_check_DIST_POINT_sk_type(sk)))
crypto/openssl/include/openssl/x509v3.h
352
#define sk_DIST_POINT_shift(sk) ((DIST_POINT *)OPENSSL_sk_shift(ossl_check_DIST_POINT_sk_type(sk)))
crypto/openssl/include/openssl/x509v3.h
355
#define sk_DIST_POINT_set(sk, idx, ptr) ((DIST_POINT *)OPENSSL_sk_set(ossl_check_DIST_POINT_sk_type(sk), (idx), ossl_check_DIST_POINT_type(ptr)))
crypto/openssl/include/openssl/x509v3.h
361
#define sk_DIST_POINT_dup(sk) ((STACK_OF(DIST_POINT) *)OPENSSL_sk_dup(ossl_check_const_DIST_POINT_sk_type(sk)))
crypto/openssl/include/openssl/x509v3.h
362
#define sk_DIST_POINT_deep_copy(sk, copyfunc, freefunc) ((STACK_OF(DIST_POINT) *)OPENSSL_sk_deep_copy(ossl_check_const_DIST_POINT_sk_type(sk), ossl_check_DIST_POINT_copyfunc_type(copyfunc), ossl_check_DIST_POINT_freefunc_type(freefunc)))
crypto/openssl/include/openssl/x509v3.h
367
typedef STACK_OF(DIST_POINT) CRL_DIST_POINTS;
crypto/openssl/include/openssl/x509v3.h
882
DECLARE_ASN1_FUNCTIONS(DIST_POINT)