Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/crypto/x509/
H A Dx_x509.c48 CRL_DIST_POINTS_free(ret->crldp); in x509_cb()
79 ret->crldp = NULL; in x509_cb()
89 CRL_DIST_POINTS_free(ret->crldp); in x509_cb()
H A Dv3_purp.c353 x->crldp = X509_get_ext_d2i(x, NID_crl_distribution_points, &i, NULL); in setup_crldp()
354 if (x->crldp == NULL && i != -1) in setup_crldp()
357 for (i = 0; i < sk_DIST_POINT_num(x->crldp); i++) { in setup_crldp()
358 int res = setup_dp(x, sk_DIST_POINT_value(x->crldp, i)); in setup_crldp()
H A Dx509_vfy.c1465 for (i = 0; i < sk_DIST_POINT_num(x->crldp); i++) { in crl_crldp_check()
1466 DIST_POINT *dp = sk_DIST_POINT_value(x->crldp, i); in crl_crldp_check()
/freebsd/crypto/heimdal/lib/hx509/
H A Dca.c61 CRLDistributionPoints crldp; member
108 free_CRLDistributionPoints(&(*tbs)->crldp); in hx509_ca_tbs_free()
540 ret = add_CRLDistributionPoints(&tbs->crldp, &dp); in hx509_ca_tbs_add_crl_dp_uri()
1375 if (tbs->crldp.len) { in ca_sign()
1378 &tbs->crldp, &size, ret); in ca_sign()
/freebsd/crypto/openssl/apps/lib/
H A Dapps.c2395 static X509_CRL *load_crl_crldp(STACK_OF(DIST_POINT) *crldp) in load_crl_crldp() argument
2399 for (i = 0; i < sk_DIST_POINT_num(crldp); i++) { in load_crl_crldp()
2400 DIST_POINT *dp = sk_DIST_POINT_value(crldp, i); in load_crl_crldp()
2419 STACK_OF(DIST_POINT) *crldp; in STACK_OF()
2425 crldp = X509_get_ext_d2i(x, NID_crl_distribution_points, NULL, NULL); in STACK_OF()
2426 crl = load_crl_crldp(crldp); in STACK_OF()
2427 sk_DIST_POINT_pop_free(crldp, DIST_POINT_free); in STACK_OF()
2434 crldp = X509_get_ext_d2i(x, NID_freshest_crl, NULL, NULL); in STACK_OF()
2435 crl = load_crl_crldp(crldp); in STACK_OF()
2436 sk_DIST_POINT_pop_free(crldp, DIST_POINT_free); in STACK_OF()
/freebsd/crypto/openssl/include/crypto/
H A Dx509.h191 STACK_OF(DIST_POINT) *crldp;