Home
last modified time | relevance | path

Searched refs:getpeercert (Results 1 – 12 of 12) sorted by relevance

/third_party/python/Lib/test/
Dtest_ssl.py2009 self.assertEqual({}, s.getpeercert())
2017 self.assertTrue(s.getpeercert())
2037 self.assertTrue(s.getpeercert())
2063 self.assertTrue(s.getpeercert())
2072 self.assertEqual({}, s.getpeercert())
2082 cert = s.getpeercert()
2109 cert = s.getpeercert()
2118 cert = s.getpeercert()
2130 cert = s.getpeercert()
2139 cert = s.getpeercert()
[all …]
/third_party/python/Lib/
Dssl.py927 def getpeercert(self, binary_form=False): member in SSLObject
934 return self._sslobj.getpeercert(binary_form)
1151 def getpeercert(self, binary_form=False): member in SSLSocket
1154 return self._sslobj.getpeercert(binary_form)
1524 dercert = sslsock.getpeercert(True)
/third_party/python/Lib/asyncio/
Dsslproto.py633 peercert = sslobj.getpeercert()
/third_party/python/Doc/library/
Dssl.rst44 additional methods such as :meth:`getpeercert`, which retrieves the
362 :meth:`SSLSocket.getpeercert`) matches the given *hostname*. The rules
1236 .. method:: SSLSocket.getpeercert(binary_form=False)
1290 when requested by the server; therefore :meth:`getpeercert` will return
1623 entry is a dict like the output of :meth:`SSLSocket.getpeercert`. Otherwise
1756 :meth:`SSLSocket.getpeercert`, :meth:`SSLSocket.getpeercert`,
2274 >>> cert = conn.getpeercert()
2513 - :meth:`~SSLSocket.getpeercert`
2662 :meth:`SSLSocket.getpeercert`, matches the desired service. For many
Dasyncio-protocol.rst210 :meth:`ssl.SSLSocket.getpeercert`
/third_party/python/Misc/NEWS.d/
D3.9.0a2.rst552 Make Python compatible with OpenSSL 3.0.0. :func:`ssl.SSLSocket.getpeercert`
D3.5.1rc1.rst817 Fix memory leak in SSLSocket.getpeercert().
D3.6.0a1.rst3032 Fix memory leak in SSLSocket.getpeercert().
/third_party/python/Doc/whatsnew/
D3.4.rst1490 The dictionary returned by :meth:`.SSLSocket.getpeercert` contains additional
2360 * :meth:`ssl.SSLSocket.getpeercert` and :meth:`ssl.SSLSocket.do_handshake`
2363 :exc:`AttributeError`. In addition, :meth:`~ssl.SSLSocket.getpeercert`
D2.6.rst2902 obtain certificate info by calling the :meth:`getpeercert` method.
/third_party/python/Lib/test/test_asyncio/
Dtest_events.py581 self.assertEqual(sslobj.getpeercert(),
/third_party/python/Misc/
DHISTORY313 - Issue #25569: Fix memory leak in SSLSocket.getpeercert().
3352 - Issue #18379: SSLSocket.getpeercert() returns CA issuer AIA fields, OCSP
3850 - Issue #19095: SSLSocket.getpeercert() now raises ValueError when the
5015 - Issue #13721: SSLSocket.getpeercert() and SSLSocket.do_handshake() now
8745 - Issue #13014: Fix a possible reference leak in SSLSocket.getpeercert().
11587 - Issue #10022: The dictionary returned by the ``getpeercert()`` method of SSL