Home
last modified time | relevance | path

Searched refs:match_hostname (Results 1 – 24 of 24) sorted by relevance

/external/python/setuptools/setuptools/
Dssl_support.py42 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/
Dmatch.h19 int match_hostname(const char *, const char *);
Dmatch.c180 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()
Dhostfile.c670 return match_hostname(host, names) == 1; in match_maybe_hashed()
Dreadconf.c612 r = match_hostname(host, arg) == 1; in match_cfg_line()
617 r = match_hostname(original_host, arg) == 1; in match_cfg_line()
Dservconf.c837 if (match_hostname(ci->host, arg) != 1) in match_cfg_line()
/external/python/cpython2/Lib/
Dssl.py255 def match_hostname(cert, hostname): function
854 match_hostname(self.getpeercert(), self.server_hostname)
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a2.rst234 ssl.match_hostname() now supports matching of IP addresses.
D3.7.0b2.rst227 ssl.match_hostname() has been simplified and no longer depends on re and
D3.8.0b2.rst17 ssl.match_hostname() no longer accepts IPv4 addresses with additional text
D3.7.0a3.rst344 :meth:`ssl.match_hostname`. Patch by Mandeep Singh.
D3.8.0a1.rst5790 ssl.match_hostname() has been simplified and no longer depends on re and
/external/python/cpython3/Lib/test/
Dtest_ssl.py654 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/
Dssl.rst380 .. 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/
Dssl.rst358 .. 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/
Dtest_ssl.py408 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/
Dssl.py371 def match_hostname(cert, hostname): function
/external/python/httplib2/python3/httplib2/
D__init__.py1327 ssl.match_hostname(self.sock.getpeercert(), self.host)
/external/python/cpython3/Doc/whatsnew/
D3.7.rst1320 :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
D3.5.rst1822 The :func:`~ssl.match_hostname` function now supports matching of IP addresses.
D3.2.rst1641 * A new function, :func:`ssl.match_hostname`, supports server identity
D3.4.rst157 (:func:`ssl.match_hostname`) and CRLs (Certificate Revocation lists, see
/external/python/setuptools/
DCHANGES.rst2316 * Address security vulnerability in SSL match_hostname check as reported in
/external/python/cpython3/Misc/
DHISTORY3503 - 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