Searched refs:DNSName (Results 1 – 15 of 15) sorted by relevance
/external/python/cryptography/tests/x509/ |
D | test_x509_ext.py | 22 from cryptography.x509 import DNSName, NameConstraints, SubjectAlternativeName 249 x509.DNSName(u"cryptography.io"), 250 x509.DNSName(u"crypto.local"), 254 x509.DNSName(u"cryptography.io"), 255 x509.DNSName(u"crypto.local"), 260 x509.DNSName(u"cryptography.io"), 261 x509.DNSName(u"crypto.local"), 262 x509.DNSName(u"another.local"), 270 ci1 = x509.CertificateIssuer([x509.DNSName(u"cryptography.io")]) 271 ci2 = x509.CertificateIssuer([x509.DNSName(u"cryptography.io")]) [all …]
|
D | test_x509_revokedcertbuilder.py | 149 x509.DNSName(u"cryptography.io"), 183 x509.DNSName(u"cryptography.io"),
|
D | test_x509.py | 240 x509.DNSName(u"cryptography.io") 828 names = san.get_values_for_type(x509.DNSName) 1283 x509.DNSName(u"cryptography.io"), 1284 x509.DNSName(u"sub.cryptography.io"), 1511 x509.SubjectAlternativeName([x509.DNSName(u"cryptography.io")]), 1533 x509.DNSName(u"cryptography.io"), 2249 x509.SubjectAlternativeName([x509.DNSName(u"cryptography.io")]), 2271 x509.DNSName(u"cryptography.io"), 2295 x509.SubjectAlternativeName([x509.DNSName(u"cryptography.io")]), 2317 x509.DNSName(u"cryptography.io"), [all …]
|
D | test_x509_crlbuilder.py | 222 x509.DNSName(u"cryptography.io")
|
/external/python/cryptography/docs/x509/ |
D | tutorial.rst | 73 ... x509.DNSName(u"mysite.com"), 74 ... x509.DNSName(u"www.mysite.com"), 75 ... x509.DNSName(u"subdomain.mysite.com"), 145 ... x509.SubjectAlternativeName([x509.DNSName(u"localhost")]),
|
D | reference.rst | 696 ... [x509.DNSName(u'cryptography.io')] 1373 .. class:: DNSName(value) 1985 >>> ext.value.get_values_for_type(x509.DNSName)
|
/external/python/asn1crypto/tests/ |
D | test_x509.py | 117 e = x509.DNSName('example.com') 123 e = x509.DNSName.load(b'\x36\x80\x16\x04exam\x16\x07ple.com\x00\x00') 129 self.assertEqual(b'\x16\x03.gr', x509.DNSName('.gr').dump()) 163 one = x509.DNSName(domain_one) 165 two = x509.DNSName.load(domain_two) 167 two = x509.DNSName(domain_two) 496 self.assertIsInstance(alt_names[2].chosen, x509.DNSName)
|
/external/python/cryptography/src/cryptography/x509/ |
D | general_name.py | 130 class DNSName(object): class 162 if not isinstance(other, DNSName):
|
D | __init__.py | 31 DNSName, DirectoryName, GeneralName, IPAddress, OtherName, RFC822Name,
|
/external/python/asn1crypto/asn1crypto/ |
D | x509.py | 71 class DNSName(IA5String): class 90 if not isinstance(other, DNSName): 686 'domain_component': DNSName, 1021 value = DNSName(attribute_value) 1418 ('dns_name', DNSName, {'implicit': 2}),
|
/external/python/asn1crypto/ |
D | changelog.md | 88 - `x509.EmailAddress()` and `x509.DNSName()` now handle invalidly-encoded 172 - Correct `x509.DNSName` to allow a leading `.`, such as when used with
|
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/ |
D | encode_asn1.py | 388 if isinstance(name, x509.DNSName):
|
D | decode_asn1.py | 101 return x509.DNSName._init_without_validation(data)
|
/external/python/cryptography/ |
D | CHANGELOG.rst | 207 :attr:`DNSName.value <cryptography.x509.DNSName.value>`, 217 :class:`~cryptography.x509.DNSName`,
|
/external/boringssl/src/ssl/test/runner/ |
D | handshake_client.go | 1539 DNSName: c.config.ServerName,
|