Symbol: DIST_POINT
crypto/libressl/crypto/x509/x509_crld.c
270
static DIST_POINT *
crypto/libressl/crypto/x509/x509_crld.c
275
DIST_POINT *point = NULL;
crypto/libressl/crypto/x509/x509_crld.c
311
STACK_OF(DIST_POINT) *crld = NULL;
crypto/libressl/crypto/x509/x509_crld.c
320
DIST_POINT *point;
crypto/libressl/crypto/x509/x509_crld.c
452
.offset = offsetof(DIST_POINT, distpoint),
crypto/libressl/crypto/x509/x509_crld.c
459
.offset = offsetof(DIST_POINT, reasons),
crypto/libressl/crypto/x509/x509_crld.c
466
.offset = offsetof(DIST_POINT, CRLissuer),
crypto/libressl/crypto/x509/x509_crld.c
478
.size = sizeof(DIST_POINT),
crypto/libressl/crypto/x509/x509_crld.c
483
DIST_POINT *
crypto/libressl/crypto/x509/x509_crld.c
484
d2i_DIST_POINT(DIST_POINT **a, const unsigned char **in, long len)
crypto/libressl/crypto/x509/x509_crld.c
486
return (DIST_POINT *)ASN1_item_d2i((ASN1_VALUE **)a, in, len,
crypto/libressl/crypto/x509/x509_crld.c
491
i2d_DIST_POINT(DIST_POINT *a, unsigned char **out)
crypto/libressl/crypto/x509/x509_crld.c
496
DIST_POINT *
crypto/libressl/crypto/x509/x509_crld.c
499
return (DIST_POINT *)ASN1_item_new(&DIST_POINT_it);
crypto/libressl/crypto/x509/x509_crld.c
503
DIST_POINT_free(DIST_POINT *a)
crypto/libressl/crypto/x509/x509_crld.c
763
STACK_OF(DIST_POINT) *crld = pcrldp;
crypto/libressl/crypto/x509/x509_crld.c
764
DIST_POINT *point;
crypto/libressl/crypto/x509/x509_lcl.h
176
STACK_OF(DIST_POINT) *crldp;
crypto/libressl/crypto/x509/x509_purp.c
395
setup_dp(X509 *x, DIST_POINT *dp)
crypto/libressl/crypto/x509/x509_vfy.c
1547
crldp_check_crlissuer(DIST_POINT *dp, X509_CRL *crl, int crl_score)
crypto/libressl/crypto/x509/x509_vfy.c
1583
DIST_POINT *dp = sk_DIST_POINT_value(x->crldp, i);
crypto/libressl/include/openssl/safestack.h
688
#define sk_DIST_POINT_new(cmp) SKM_sk_new(DIST_POINT, (cmp))
crypto/libressl/include/openssl/safestack.h
689
#define sk_DIST_POINT_new_null() SKM_sk_new_null(DIST_POINT)
crypto/libressl/include/openssl/safestack.h
690
#define sk_DIST_POINT_free(st) SKM_sk_free(DIST_POINT, (st))
crypto/libressl/include/openssl/safestack.h
691
#define sk_DIST_POINT_num(st) SKM_sk_num(DIST_POINT, (st))
crypto/libressl/include/openssl/safestack.h
692
#define sk_DIST_POINT_value(st, i) SKM_sk_value(DIST_POINT, (st), (i))
crypto/libressl/include/openssl/safestack.h
693
#define sk_DIST_POINT_set(st, i, val) SKM_sk_set(DIST_POINT, (st), (i), (val))
crypto/libressl/include/openssl/safestack.h
694
#define sk_DIST_POINT_zero(st) SKM_sk_zero(DIST_POINT, (st))
crypto/libressl/include/openssl/safestack.h
695
#define sk_DIST_POINT_push(st, val) SKM_sk_push(DIST_POINT, (st), (val))
crypto/libressl/include/openssl/safestack.h
696
#define sk_DIST_POINT_unshift(st, val) SKM_sk_unshift(DIST_POINT, (st), (val))
crypto/libressl/include/openssl/safestack.h
697
#define sk_DIST_POINT_find(st, val) SKM_sk_find(DIST_POINT, (st), (val))
crypto/libressl/include/openssl/safestack.h
698
#define sk_DIST_POINT_find_ex(st, val) SKM_sk_find_ex(DIST_POINT, (st), (val))
crypto/libressl/include/openssl/safestack.h
699
#define sk_DIST_POINT_delete(st, i) SKM_sk_delete(DIST_POINT, (st), (i))
crypto/libressl/include/openssl/safestack.h
700
#define sk_DIST_POINT_delete_ptr(st, ptr) SKM_sk_delete_ptr(DIST_POINT, (st), (ptr))
crypto/libressl/include/openssl/safestack.h
701
#define sk_DIST_POINT_insert(st, val, i) SKM_sk_insert(DIST_POINT, (st), (val), (i))
crypto/libressl/include/openssl/safestack.h
702
#define sk_DIST_POINT_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(DIST_POINT, (st), (cmp))
crypto/libressl/include/openssl/safestack.h
703
#define sk_DIST_POINT_dup(st) SKM_sk_dup(DIST_POINT, st)
crypto/libressl/include/openssl/safestack.h
704
#define sk_DIST_POINT_pop_free(st, free_func) SKM_sk_pop_free(DIST_POINT, (st), (free_func))
crypto/libressl/include/openssl/safestack.h
705
#define sk_DIST_POINT_shift(st) SKM_sk_shift(DIST_POINT, (st))
crypto/libressl/include/openssl/safestack.h
706
#define sk_DIST_POINT_pop(st) SKM_sk_pop(DIST_POINT, (st))
crypto/libressl/include/openssl/safestack.h
707
#define sk_DIST_POINT_sort(st) SKM_sk_sort(DIST_POINT, (st))
crypto/libressl/include/openssl/safestack.h
708
#define sk_DIST_POINT_is_sorted(st) SKM_sk_is_sorted(DIST_POINT, (st))
crypto/libressl/include/openssl/x509v3.h
256
typedef STACK_OF(DIST_POINT) CRL_DIST_POINTS;
crypto/libressl/include/openssl/x509v3.h
258
DECLARE_STACK_OF(DIST_POINT)
crypto/libressl/include/openssl/x509v3.h
643
DIST_POINT *DIST_POINT_new(void);
crypto/libressl/include/openssl/x509v3.h
644
void DIST_POINT_free(DIST_POINT *a);
crypto/libressl/include/openssl/x509v3.h
645
DIST_POINT *d2i_DIST_POINT(DIST_POINT **a, const unsigned char **in, long len);
crypto/libressl/include/openssl/x509v3.h
646
int i2d_DIST_POINT(DIST_POINT *a, unsigned char **out);