Searched refs:crldp (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/crypto/openssl/crypto/x509/
H A Dx_x509.c48 CRL_DIST_POINTS_free(ret->crldp);
77 ret->crldp = NULL;
87 CRL_DIST_POINTS_free(ret->crldp);
H A Dx509_vfy.c1451 for (i = 0; i < sk_DIST_POINT_num(x->crldp); i++) {
1452 DIST_POINT *dp = sk_DIST_POINT_value(x->crldp, i);
/freebsd-13-stable/crypto/heimdal/lib/hx509/
H A Dca.c61 CRLDistributionPoints crldp; member in struct:hx509_ca_tbs
108 free_CRLDistributionPoints(&(*tbs)->crldp);
540 ret = add_CRLDistributionPoints(&tbs->crldp, &dp);
1375 if (tbs->crldp.len) {
1378 &tbs->crldp, &size, ret);
/freebsd-13-stable/crypto/openssl/crypto/x509v3/
H A Dv3_purp.c338 x->crldp = X509_get_ext_d2i(x, NID_crl_distribution_points, &i, NULL);
339 if (x->crldp == NULL && i != -1)
341 for (i = 0; i < sk_DIST_POINT_num(x->crldp); i++) {
342 if (!setup_dp(x, sk_DIST_POINT_value(x->crldp, i)))
/freebsd-13-stable/crypto/openssl/include/crypto/
H A Dx509.h175 STACK_OF(DIST_POINT) *crldp; member in struct:x509_st
/freebsd-13-stable/crypto/openssl/apps/
H A Dapps.c2061 static X509_CRL *load_crl_crldp(STACK_OF(DIST_POINT) *crldp)
2065 for (i = 0; i < sk_DIST_POINT_num(crldp); i++) {
2066 DIST_POINT *dp = sk_DIST_POINT_value(crldp, i);
2085 STACK_OF(DIST_POINT) *crldp;
2091 crldp = X509_get_ext_d2i(x, NID_crl_distribution_points, NULL, NULL);
2092 crl = load_crl_crldp(crldp);
2093 sk_DIST_POINT_pop_free(crldp, DIST_POINT_free);
2100 crldp = X509_get_ext_d2i(x, NID_freshest_crl, NULL, NULL);
2101 crl = load_crl_crldp(crldp);
2102 sk_DIST_POINT_pop_free(crldp, DIST_POINT_fre
[all...]

Completed in 131 milliseconds