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.h731 _ssl__SSLContext_get_ca_certs_impl(PySSLContext *self, int binary_form);
739 int binary_form = 0; in _ssl__SSLContext_get_ca_certs() local
742 &binary_form)) { in _ssl__SSLContext_get_ca_certs()
745 return_value = _ssl__SSLContext_get_ca_certs_impl(self, binary_form); in _ssl__SSLContext_get_ca_certs()
/external/python/cpython3/Lib/
Dssl.py718 def getpeercert(self, binary_form=False): argument
725 return self._sslobj.getpeercert(binary_form)
932 def getpeercert(self, binary_form=False): argument
940 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.rst1183 .. method:: SSLSocket.getpeercert(binary_form=False)
1189 If the ``binary_form`` parameter is :const:`False`, and a certificate was
1227 If the ``binary_form`` parameter is :const:`True`, and a certificate was
1545 .. method:: SSLContext.get_ca_certs(binary_form=False)
1548 ``binary_form`` parameter is :const:`False` each list
/external/python/cpython3/Modules/
D_ssl.c4498 _ssl__SSLContext_get_ca_certs_impl(PySSLContext *self, int binary_form) in _ssl__SSLContext_get_ca_certs_impl() argument
4526 if (binary_form) { in _ssl__SSLContext_get_ca_certs_impl()