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


Python name.Name方法代碼示例

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


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

示例1: __init__

# 需要導入模塊: from cryptography.x509 import name [as 別名]
# 或者: from cryptography.x509.name import Name [as 別名]
def __init__(self, value):
        if not isinstance(value, six.text_type):
            raise TypeError("value must be a unicode string")

        name, address = parseaddr(value)
        parts = address.split(u"@")
        if name or not address:
            # parseaddr has found a name (e.g. Name <email>) or the entire
            # value is an empty string.
            raise ValueError("Invalid rfc822name value")
        elif len(parts) == 1:
            # Single label email name. This is valid for local delivery.
            # No IDNA encoding needed since there is no domain component.
            encoded = address.encode("ascii")
        else:
            # A normal email of the form [email protected] Let's attempt to
            # encode the domain component and reconstruct the address.
            encoded = parts[0].encode("ascii") + b"@" + idna.encode(parts[1])

        self._value = value
        self._encoded = encoded 
開發者ID:yuxiaokui,項目名稱:Intranet-Penetration,代碼行數:23,代碼來源:general_name.py

示例2: __init__

# 需要導入模塊: from cryptography.x509 import name [as 別名]
# 或者: from cryptography.x509.name import Name [as 別名]
def __init__(self, value):
        if isinstance(value, six.text_type):
            try:
                value.encode("ascii")
            except UnicodeEncodeError:
                value = self._idna_encode(value)
                warnings.warn(
                    "RFC822Name values should be passed as an A-label string. "
                    "This means unicode characters should be encoded via "
                    "idna. Support for passing unicode strings (aka U-label) "
                    " will be removed in a future version.",
                    utils.DeprecatedIn21,
                    stacklevel=2,
                )
        else:
            raise TypeError("value must be string")

        name, address = parseaddr(value)
        if name or not address:
            # parseaddr has found a name (e.g. Name <email>) or the entire
            # value is an empty string.
            raise ValueError("Invalid rfc822name value")

        self._value = value 
開發者ID:aws-quickstart,項目名稱:quickstart-git2s3,代碼行數:26,代碼來源:general_name.py

示例3: subject_name

# 需要導入模塊: from cryptography.x509 import name [as 別名]
# 或者: from cryptography.x509.name import Name [as 別名]
def subject_name(self, name):
        """
        Sets the certificate requestor's distinguished name.
        """
        if not isinstance(name, Name):
            raise TypeError('Expecting x509.Name object.')
        if self._subject_name is not None:
            raise ValueError('The subject name may only be set once.')
        return CertificateSigningRequestBuilder(name, self._extensions) 
開發者ID:DirceuSilvaLabs,項目名稱:noc-orchestrator,代碼行數:11,代碼來源:base.py

示例4: issuer_name

# 需要導入模塊: from cryptography.x509 import name [as 別名]
# 或者: from cryptography.x509.name import Name [as 別名]
def issuer_name(self, name):
        """
        Sets the CA's distinguished name.
        """
        if not isinstance(name, Name):
            raise TypeError('Expecting x509.Name object.')
        if self._issuer_name is not None:
            raise ValueError('The issuer name may only be set once.')
        return CertificateBuilder(
            name, self._subject_name, self._public_key,
            self._serial_number, self._not_valid_before,
            self._not_valid_after, self._extensions
        ) 
開發者ID:DirceuSilvaLabs,項目名稱:noc-orchestrator,代碼行數:15,代碼來源:base.py

示例5: issuer_name

# 需要導入模塊: from cryptography.x509 import name [as 別名]
# 或者: from cryptography.x509.name import Name [as 別名]
def issuer_name(self, issuer_name):
        if not isinstance(issuer_name, Name):
            raise TypeError('Expecting x509.Name object.')
        if self._issuer_name is not None:
            raise ValueError('The issuer name may only be set once.')
        return CertificateRevocationListBuilder(
            issuer_name, self._last_update, self._next_update,
            self._extensions, self._revoked_certificates
        ) 
開發者ID:DirceuSilvaLabs,項目名稱:noc-orchestrator,代碼行數:11,代碼來源:base.py


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