/external/python/setuptools/setuptools/ |
D | ssl_support.py | 42 from ssl import CertificateError, match_hostname 46 from backports.ssl_match_hostname import match_hostname 49 match_hostname = None variable 57 if not match_hostname: 111 def match_hostname(cert, hostname): function 198 match_hostname(self.sock.getpeercert(), actual_host)
|
/external/openssh/ |
D | match.h | 19 int match_hostname(const char *, const char *);
|
D | match.c | 180 match_hostname(const char *host, const char *pattern) in match_hostname() function 208 if ((mhost = match_hostname(host, patterns)) == -1) in match_host_and_ip()
|
D | hostfile.c | 670 return match_hostname(host, names) == 1; in match_maybe_hashed()
|
D | readconf.c | 612 r = match_hostname(host, arg) == 1; in match_cfg_line() 617 r = match_hostname(original_host, arg) == 1; in match_cfg_line()
|
D | servconf.c | 837 if (match_hostname(ci->host, arg) != 1) in match_cfg_line()
|
/external/python/cpython2/Lib/ |
D | ssl.py | 255 def match_hostname(cert, hostname): function 854 match_hostname(self.getpeercert(), self.server_hostname)
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.0a2.rst | 234 ssl.match_hostname() now supports matching of IP addresses.
|
D | 3.7.0b2.rst | 227 ssl.match_hostname() has been simplified and no longer depends on re and
|
D | 3.8.0b2.rst | 17 ssl.match_hostname() no longer accepts IPv4 addresses with additional text
|
D | 3.7.0a3.rst | 344 :meth:`ssl.match_hostname`. Patch by Mandeep Singh.
|
D | 3.8.0a1.rst | 5790 ssl.match_hostname() has been simplified and no longer depends on re and
|
/external/python/cpython3/Lib/test/ |
D | test_ssl.py | 654 ssl.match_hostname(cert, hostname) 657 ssl.match_hostname, cert, hostname) 805 self.assertRaises(ValueError, ssl.match_hostname, None, 'example.com') 806 self.assertRaises(ValueError, ssl.match_hostname, {}, 'example.com') 814 ssl.match_hostname(cert, 'axxb.example.com') 820 ssl.match_hostname(cert, 'www.sub.example.com') 826 ssl.match_hostname(cert, 'axxbxxc.example.com') 832 ssl.match_hostname(cert, 'host') 838 ssl.match_hostname(cert, 'com')
|
/external/python/cpython2/Doc/library/ |
D | ssl.rst | 380 .. function:: match_hostname(cert, hostname) 394 >>> ssl.match_hostname(cert, "example.com") 395 >>> ssl.match_hostname(cert, "example.org") 398 File "/home/py3k/Lib/ssl.py", line 130, in match_hostname 901 The handshake method also performs :func:`match_hostname` when the 947 :func:`match_hostname` function. 1326 Wether to match the peer cert's hostname with :func:`match_hostname` in 1760 in this case, the :func:`match_hostname` function can be used. This common
|
/external/python/cpython3/Doc/library/ |
D | ssl.rst | 358 .. function:: match_hostname(cert, hostname) 371 >>> ssl.match_hostname(cert, "example.com") 372 >>> ssl.match_hostname(cert, "example.org") 375 File "/home/py3k/Lib/ssl.py", line 130, in match_hostname 1178 The handshake method also performs :func:`match_hostname` when the 1188 function :func:`match_hostname` is no longer used. In case OpenSSL 1234 :func:`match_hostname` function. 1881 Whether to match the peer cert's hostname with :func:`match_hostname` in 2636 in this case, the :func:`match_hostname` function can be used. This common 2642 :func:`match_hostname`.
|
/external/python/cpython2/Lib/test/ |
D | test_ssl.py | 408 ssl.match_hostname(cert, hostname) 411 ssl.match_hostname, cert, hostname) 525 self.assertRaises(ValueError, ssl.match_hostname, None, 'example.com') 526 self.assertRaises(ValueError, ssl.match_hostname, {}, 'example.com') 536 ssl.match_hostname(cert, 'axxbxxc.com')
|
/external/python/cpython3/Lib/ |
D | ssl.py | 371 def match_hostname(cert, hostname): function
|
/external/python/httplib2/python3/httplib2/ |
D | __init__.py | 1327 ssl.match_hostname(self.sock.getpeercert(), self.host)
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.7.rst | 1320 :func:`~ssl.match_hostname` to check a host name or an IP address. Values 1338 :func:`~ssl.match_hostname` no longer supports partial wildcards like
|
D | 3.5.rst | 1822 The :func:`~ssl.match_hostname` function now supports matching of IP addresses.
|
D | 3.2.rst | 1641 * A new function, :func:`ssl.match_hostname`, supports server identity
|
D | 3.4.rst | 157 (:func:`ssl.match_hostname`) and CRLs (Certificate Revocation lists, see
|
/external/python/setuptools/ |
D | CHANGES.rst | 2316 * Address security vulnerability in SSL match_hostname check as reported in
|
/external/python/cpython3/Misc/ |
D | HISTORY | 3503 - Issue #17997: Change behavior of ``ssl.match_hostname()`` to follow RFC 6125, 4959 - Issue #17980: Fix possible abuse of ssl.match_hostname() for denial of 9703 dNSName entry, ssl.match_hostname() should use the subject's commonName. 11969 - Issue #1589: Add ssl.match_hostname(), to help implement server identity
|