Home
last modified time | relevance | path

Searched refs:distpoint (Results 1 – 15 of 15) sorted by relevance

/external/rust/crates/quiche/deps/boringssl/src/crypto/x509v3/
Dv3_crld.c263 ret = set_dist_point_name(&point->distpoint, ctx, cnf); in crldp_from_section()
326 if (!(point->distpoint = DIST_POINT_NAME_new())) in v2i_crld()
328 point->distpoint->name.fullname = gens; in v2i_crld()
329 point->distpoint->type = 0; in v2i_crld()
374 ASN1_EXP_OPT(DIST_POINT, distpoint, DIST_POINT_NAME, 0),
388 ASN1_EXP_OPT(ISSUING_DIST_POINT, distpoint, DIST_POINT_NAME, 0),
429 ret = set_dist_point_name(&idp->distpoint, ctx, cnf); in v2i_idp()
494 if (idp->distpoint) in i2r_idp()
495 print_distpoint(out, idp->distpoint, indent); in i2r_idp()
506 if (!idp->distpoint && (idp->onlyuser <= 0) && (idp->onlyCA <= 0) in i2r_idp()
[all …]
Dv3_purp.c385 if (!dp->distpoint || (dp->distpoint->type != 1)) in setup_dp()
397 return DIST_POINT_set_dpname(dp->distpoint, iname); in setup_dp()
/external/boringssl/src/crypto/x509v3/
Dv3_crld.c263 ret = set_dist_point_name(&point->distpoint, ctx, cnf); in crldp_from_section()
326 if (!(point->distpoint = DIST_POINT_NAME_new())) in v2i_crld()
328 point->distpoint->name.fullname = gens; in v2i_crld()
329 point->distpoint->type = 0; in v2i_crld()
374 ASN1_EXP_OPT(DIST_POINT, distpoint, DIST_POINT_NAME, 0),
388 ASN1_EXP_OPT(ISSUING_DIST_POINT, distpoint, DIST_POINT_NAME, 0),
429 ret = set_dist_point_name(&idp->distpoint, ctx, cnf); in v2i_idp()
494 if (idp->distpoint) in i2r_idp()
495 print_distpoint(out, idp->distpoint, indent); in i2r_idp()
506 if (!idp->distpoint && (idp->onlyuser <= 0) && (idp->onlyCA <= 0) in i2r_idp()
[all …]
Dv3_purp.c385 if (!dp->distpoint || (dp->distpoint->type != 1)) in setup_dp()
397 return DIST_POINT_set_dpname(dp->distpoint, iname); in setup_dp()
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/
Ddecode_asn1.py470 if idp.distpoint != backend._ffi.NULL:
471 full_name, relative_name = _decode_distpoint(backend, idp.distpoint)
546 if cdp.distpoint != backend._ffi.NULL:
548 backend, cdp.distpoint
592 def _decode_distpoint(backend, distpoint): argument
593 if distpoint.type == _DISTPOINT_TYPE_FULLNAME:
594 full_name = _decode_general_names(backend, distpoint.name.fullname)
604 rns = distpoint.name.relativename
Dencode_asn1.py153 idp.distpoint = _encode_full_name(backend, ext.full_name)
156 idp.distpoint = _encode_relative_name(backend, ext.relative_name)
546 dp.distpoint = _encode_full_name(backend, point.full_name)
549 dp.distpoint = _encode_relative_name(backend, point.relative_name)
/external/tpm2-tss/src/tss2-fapi/
Dfapi_crypto.c1612 DIST_POINT_NAME *distpoint = dp->distpoint; in get_crl_from_cert() local
1613 if (distpoint->type==0) in get_crl_from_cert()
1615 for (int j = 0; j < sk_GENERAL_NAME_num(distpoint->name.fullname); j++) in get_crl_from_cert()
1617 GENERAL_NAME *gen_name = sk_GENERAL_NAME_value(distpoint->name.fullname, j); in get_crl_from_cert()
/external/boringssl/src/include/openssl/
Dx509v3.h252 DIST_POINT_NAME *distpoint; member
343 DIST_POINT_NAME *distpoint; member
/external/rust/crates/quiche/deps/boringssl/src/include/openssl/
Dx509v3.h258 DIST_POINT_NAME *distpoint; member
367 DIST_POINT_NAME *distpoint; member
/external/rust/crates/quiche/deps/boringssl/src/crypto/x509/
Dx_crl.c377 return DIST_POINT_set_dpname(idp->distpoint, X509_CRL_get_issuer(crl)); in setup_idp()
Dx509_vfy.c1528 if (!crl->idp || idp_check_dp(dp->distpoint, crl->idp->distpoint)) { in crl_crldp_check()
1534 if ((!crl->idp || !crl->idp->distpoint) in crl_crldp_check()
/external/boringssl/src/crypto/x509/
Dx_crl.c377 return DIST_POINT_set_dpname(idp->distpoint, X509_CRL_get_issuer(crl)); in setup_idp()
Dx509_vfy.c1528 if (!crl->idp || idp_check_dp(dp->distpoint, crl->idp->distpoint)) { in crl_crldp_check()
1534 if ((!crl->idp || !crl->idp->distpoint) in crl_crldp_check()
/external/python/cpython3/Modules/
D_ssl.c1634 if (dp->distpoint == NULL) { in _get_crl_dp()
1638 gns = dp->distpoint->name.fullname; in _get_crl_dp()
/external/python/cpython2/Modules/
D_ssl.c1227 gns = dp->distpoint->name.fullname; in _get_crl_dp()