當前位置: 首頁>>代碼示例>>Python>>正文


Python x509.DirectoryName方法代碼示例

本文整理匯總了Python中cryptography.x509.DirectoryName方法的典型用法代碼示例。如果您正苦於以下問題:Python x509.DirectoryName方法的具體用法?Python x509.DirectoryName怎麽用?Python x509.DirectoryName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在cryptography.x509的用法示例。


在下文中一共展示了x509.DirectoryName方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: _serialize

# 需要導入模塊: from cryptography import x509 [as 別名]
# 或者: from cryptography.x509 import DirectoryName [as 別名]
def _serialize(self, value, attr, obj):
        general_names = []
        name_type = None

        if value:
            for name in value._general_names:
                value = name.value

                if isinstance(name, x509.DNSName):
                    name_type = "DNSName"

                elif isinstance(name, x509.IPAddress):
                    if isinstance(value, ipaddress.IPv4Network):
                        name_type = "IPNetwork"
                    else:
                        name_type = "IPAddress"

                    value = str(value)

                elif isinstance(name, x509.UniformResourceIdentifier):
                    name_type = "uniformResourceIdentifier"

                elif isinstance(name, x509.DirectoryName):
                    name_type = "directoryName"

                elif isinstance(name, x509.RFC822Name):
                    name_type = "rfc822Name"

                elif isinstance(name, x509.RegisteredID):
                    name_type = "registeredID"
                    value = value.dotted_string
                else:
                    current_app.logger.warning(
                        "Unknown SubAltName type: {name}".format(name=name)
                    )
                    continue

                general_names.append({"nameType": name_type, "value": value})

        return general_names 
開發者ID:Netflix,項目名稱:lemur,代碼行數:42,代碼來源:fields.py

示例2: format_general_name

# 需要導入模塊: from cryptography import x509 [as 別名]
# 或者: from cryptography.x509 import DirectoryName [as 別名]
def format_general_name(name):
    """Format a single general name.

    >>> import ipaddress
    >>> format_general_name(x509.DNSName('example.com'))
    'DNS:example.com'
    >>> format_general_name(x509.IPAddress(ipaddress.IPv4Address('127.0.0.1')))
    'IP:127.0.0.1'
    """

    if isinstance(name, x509.DirectoryName):
        value = format_name(name.value)
    else:
        value = name.value
    return '%s:%s' % (SAN_NAME_MAPPINGS[type(name)], value) 
開發者ID:mathiasertl,項目名稱:django-ca,代碼行數:17,代碼來源:utils.py

示例3: get_common_name

# 需要導入模塊: from cryptography import x509 [as 別名]
# 或者: from cryptography.x509 import DirectoryName [as 別名]
def get_common_name(self):
        """Get a value suitable for use as CommonName in a subject, or None if no such value is found.

        This function returns a string representation of the first value that is not a DirectoryName,
        RegisteredID or OtherName.
        """

        for name in self.value:
            if isinstance(name, (x509.DirectoryName, x509.RegisteredID, x509.OtherName)):
                continue
            return name.value 
開發者ID:mathiasertl,項目名稱:django-ca,代碼行數:13,代碼來源:extensions.py

示例4: test_dirname

# 需要導入模塊: from cryptography import x509 [as 別名]
# 或者: from cryptography.x509 import DirectoryName [as 別名]
def test_dirname(self):
        self.assertEqual(parse_general_name('/CN=example.com'), x509.DirectoryName(x509.Name([
            x509.NameAttribute(NameOID.COMMON_NAME, 'example.com'),
        ])))
        self.assertEqual(parse_general_name('dirname:/CN=example.com'), x509.DirectoryName(x509.Name([
            x509.NameAttribute(NameOID.COMMON_NAME, 'example.com'),
        ])))
        self.assertEqual(parse_general_name('dirname:/C=AT/CN=example.com'), x509.DirectoryName(x509.Name([
            x509.NameAttribute(NameOID.COUNTRY_NAME, 'AT'),
            x509.NameAttribute(NameOID.COMMON_NAME, 'example.com'),
        ]))) 
開發者ID:mathiasertl,項目名稱:django-ca,代碼行數:13,代碼來源:tests_utils.py


注:本文中的cryptography.x509.DirectoryName方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。