Home
last modified time | relevance | path

Searched refs:PySSLContext (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Modules/clinic/
D_ssl.c.h395 _ssl__SSLContext_set_ciphers_impl(PySSLContext *self, const char *cipherlist);
398 _ssl__SSLContext_set_ciphers(PySSLContext *self, PyObject *arg) in _ssl__SSLContext_set_ciphers()
423 _ssl__SSLContext_get_ciphers_impl(PySSLContext *self);
426 _ssl__SSLContext_get_ciphers(PySSLContext *self, PyObject *Py_UNUSED(ignored)) in _ssl__SSLContext_get_ciphers()
442 _ssl__SSLContext__set_npn_protocols_impl(PySSLContext *self,
446 _ssl__SSLContext__set_npn_protocols(PySSLContext *self, PyObject *arg) in _ssl__SSLContext__set_npn_protocols()
474 _ssl__SSLContext__set_alpn_protocols_impl(PySSLContext *self,
478 _ssl__SSLContext__set_alpn_protocols(PySSLContext *self, PyObject *arg) in _ssl__SSLContext__set_alpn_protocols()
506 _ssl__SSLContext_load_cert_chain_impl(PySSLContext *self, PyObject *certfile,
510 _ssl__SSLContext_load_cert_chain(PySSLContext *self, PyObject *const *args, Py_ssize_t nargs, PyObj… in _ssl__SSLContext_load_cert_chain()
[all …]
/external/python/cpython3/Modules/
D_ssl.c427 } PySSLContext; typedef
441 PySSLContext *ctx; /* weakref to SSL context */
458 PySSLContext *ctx;
885 newPySSLSocket(PySSLContext *sslctx, PySocketSockObject *sock, in newPySSLSocket()
2074 static PySSLContext *PySSL_get_context(PySSLSocket *self, void *closure) { in PySSL_get_context()
2089 Py_SETREF(self->ctx, (PySSLContext *)value); in PySSL_set_context()
2911 _set_verify_mode(PySSLContext *self, enum py_ssl_cert_requirements n) in _set_verify_mode()
2952 PySSLContext *self; in _ssl__SSLContext_impl()
2999 self = (PySSLContext *) type->tp_alloc(type, 0); in _ssl__SSLContext_impl()
3127 context_traverse(PySSLContext *self, visitproc visit, void *arg) in context_traverse()
[all …]
/external/python/cpython2/Modules/
D_ssl.c326 } PySSLContext; typedef
333 PySSLContext *ctx; /* weakref to SSL context */
572 newPySSLSocket(PySSLContext *sslctx, PySocketSockObject *sock, in newPySSLSocket()
1636 static PySSLContext *PySSL_get_context(PySSLSocket *self, void *closure) { in PySSL_get_context()
1651 Py_SETREF(self->ctx, (PySSLContext *)value); in PySSL_set_context()
2177 PySSLContext *self; in context_new()
2221 self = (PySSLContext *) type->tp_alloc(type, 0); in context_new()
2281 context_traverse(PySSLContext *self, visitproc visit, void *arg) in context_traverse()
2290 context_clear(PySSLContext *self) in context_clear()
2299 context_dealloc(PySSLContext *self) in context_dealloc()
[all …]