当前位置: 首页>>代码示例>>Python>>正文


Python x509.IssuingDistributionPoint方法代码示例

本文整理汇总了Python中cryptography.x509.IssuingDistributionPoint方法的典型用法代码示例。如果您正苦于以下问题:Python x509.IssuingDistributionPoint方法的具体用法?Python x509.IssuingDistributionPoint怎么用?Python x509.IssuingDistributionPoint使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在cryptography.x509的用法示例。


在下文中一共展示了x509.IssuingDistributionPoint方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: _decode_issuing_dist_point

# 需要导入模块: from cryptography import x509 [as 别名]
# 或者: from cryptography.x509 import IssuingDistributionPoint [as 别名]
def _decode_issuing_dist_point(backend, idp):
    idp = backend._ffi.cast("ISSUING_DIST_POINT *", idp)
    idp = backend._ffi.gc(idp, backend._lib.ISSUING_DIST_POINT_free)
    if idp.distpoint != backend._ffi.NULL:
        full_name, relative_name = _decode_distpoint(backend, idp.distpoint)
    else:
        full_name = None
        relative_name = None

    only_user = idp.onlyuser == 255
    only_ca = idp.onlyCA == 255
    indirect_crl = idp.indirectCRL == 255
    only_attr = idp.onlyattr == 255
    if idp.onlysomereasons != backend._ffi.NULL:
        only_some_reasons = _decode_reasons(backend, idp.onlysomereasons)
    else:
        only_some_reasons = None

    return x509.IssuingDistributionPoint(
        full_name, relative_name, only_user, only_ca, only_some_reasons,
        indirect_crl, only_attr
    ) 
开发者ID:tp4a,项目名称:teleport,代码行数:24,代码来源:decode_asn1.py

示例2: get_idp

# 需要导入模块: from cryptography import x509 [as 别名]
# 或者: from cryptography.x509 import IssuingDistributionPoint [as 别名]
def get_idp(self, full_name=None, indirect_crl=False, only_contains_attribute_certs=False,
                only_contains_ca_certs=False, only_contains_user_certs=False, only_some_reasons=None,
                relative_name=None):
        return x509.Extension(
            oid=ExtensionOID.ISSUING_DISTRIBUTION_POINT,
            value=x509.IssuingDistributionPoint(
                full_name=full_name,
                indirect_crl=indirect_crl,
                only_contains_attribute_certs=only_contains_attribute_certs,
                only_contains_ca_certs=only_contains_ca_certs,
                only_contains_user_certs=only_contains_user_certs,
                only_some_reasons=only_some_reasons,
                relative_name=relative_name
            ), critical=True) 
开发者ID:mathiasertl,项目名称:django-ca,代码行数:16,代码来源:base.py


注:本文中的cryptography.x509.IssuingDistributionPoint方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。