Home
last modified time | relevance | path

Searched refs:cdps (Results 1 – 3 of 3) sorted by relevance

/external/python/cryptography/src/cryptography/hazmat/backends/openssl/
Ddecode_asn1.py526 def _decode_dist_points(backend, cdps): argument
527 cdps = backend._ffi.cast("Cryptography_STACK_OF_DIST_POINT *", cdps)
528 cdps = backend._ffi.gc(cdps, backend._lib.CRL_DIST_POINTS_free)
530 num = backend._lib.sk_DIST_POINT_num(cdps)
537 cdp = backend._lib.sk_DIST_POINT_value(cdps, i)
621 def _decode_crl_distribution_points(backend, cdps): argument
622 dist_points = _decode_dist_points(backend, cdps)
626 def _decode_freshest_crl(backend, cdps): argument
627 dist_points = _decode_dist_points(backend, cdps)
Dencode_asn1.py535 def _encode_cdps_freshest_crl(backend, cdps): argument
538 for point in cdps:
/external/python/cryptography/tests/x509/
Dtest_x509_ext.py4111 cdps = cert.extensions.get_extension_for_oid(
4115 assert cdps == x509.CRLDistributionPoints([
4161 cdps = cert.extensions.get_extension_for_oid(
4165 assert cdps == x509.CRLDistributionPoints([
4200 cdps = cert.extensions.get_extension_for_oid(
4204 assert cdps == x509.CRLDistributionPoints([
4237 cdps = cert.extensions.get_extension_for_oid(
4241 assert cdps == x509.CRLDistributionPoints([
4270 cdps = cert.extensions.get_extension_for_oid(
4274 assert cdps == x509.CRLDistributionPoints([
[all …]