Home
last modified time | relevance | path

Searched refs:binary_form (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Modules/clinic/
D_ssl.c.h899 _ssl__SSLContext_get_ca_certs_impl(PySSLContext *self, int binary_form);
909 int binary_form = 0; in _ssl__SSLContext_get_ca_certs() local
918 binary_form = PyObject_IsTrue(args[0]); in _ssl__SSLContext_get_ca_certs()
919 if (binary_form < 0) { in _ssl__SSLContext_get_ca_certs()
923 return_value = _ssl__SSLContext_get_ca_certs_impl(self, binary_form); in _ssl__SSLContext_get_ca_certs()
/external/python/cpython3/Lib/
Dssl.py899 def getpeercert(self, binary_form=False): argument
906 return self._sslobj.getpeercert(binary_form)
1121 def getpeercert(self, binary_form=False): argument
1124 return self._sslobj.getpeercert(binary_form)
/external/python/cpython2/Lib/
Dssl.py679 def getpeercert(self, binary_form=False): argument
687 return self._sslobj.peer_certificate(binary_form)
/external/python/cpython2/Doc/library/
Dssl.rst905 .. method:: SSLSocket.getpeercert(binary_form=False)
911 If the ``binary_form`` parameter is :const:`False`, and a certificate was
949 If the ``binary_form`` parameter is :const:`True`, and a certificate was
1147 .. method:: SSLContext.get_ca_certs(binary_form=False)
1150 ``binary_form`` parameter is :const:`False` each list
/external/python/cpython3/Doc/library/
Dssl.rst1192 .. method:: SSLSocket.getpeercert(binary_form=False)
1198 If the ``binary_form`` parameter is :const:`False`, and a certificate was
1236 If the ``binary_form`` parameter is :const:`True`, and a certificate was
1557 .. method:: SSLContext.get_ca_certs(binary_form=False)
1560 ``binary_form`` parameter is :const:`False` each list
/external/python/cpython3/Modules/
D_ssl.c4710 _ssl__SSLContext_get_ca_certs_impl(PySSLContext *self, int binary_form) in _ssl__SSLContext_get_ca_certs_impl() argument
4738 if (binary_form) { in _ssl__SSLContext_get_ca_certs_impl()