Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/clinic/
D_ssl.c.h433 _ssl__SSLContext_set_ciphers_impl(PySSLContext *self, const char *cipherlist);
436 _ssl__SSLContext_set_ciphers(PySSLContext *self, PyObject *arg) in _ssl__SSLContext_set_ciphers()
471 _ssl__SSLContext_get_ciphers_impl(PySSLContext *self);
474 _ssl__SSLContext_get_ciphers(PySSLContext *self, PyObject *Py_UNUSED(ignored)) in _ssl__SSLContext_get_ciphers()
490 _ssl__SSLContext__set_npn_protocols_impl(PySSLContext *self,
494 _ssl__SSLContext__set_npn_protocols(PySSLContext *self, PyObject *arg) in _ssl__SSLContext__set_npn_protocols()
526 _ssl__SSLContext__set_alpn_protocols_impl(PySSLContext *self,
530 _ssl__SSLContext__set_alpn_protocols(PySSLContext *self, PyObject *arg) in _ssl__SSLContext__set_alpn_protocols()
562 _ssl__SSLContext_load_cert_chain_impl(PySSLContext *self, PyObject *certfile,
566 _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/_ssl/
Ddebughelpers.c87 _PySSLContext_get_msg_callback(PySSLContext *self, void *c) { in _PySSLContext_get_msg_callback()
97 _PySSLContext_set_msg_callback(PySSLContext *self, PyObject *arg, void *c) { in _PySSLContext_set_msg_callback()
168 _PySSLContext_get_keylog_filename(PySSLContext *self, void *c) { in _PySSLContext_get_keylog_filename()
178 _PySSLContext_set_keylog_filename(PySSLContext *self, PyObject *arg, void *c) { in _PySSLContext_set_keylog_filename()
/external/python/cpython3/Modules/
D_ssl.c449 } PySSLContext; typedef
463 PySSLContext *ctx; /* weakref to SSL context */
487 PySSLContext *ctx;
930 newPySSLSocket(PySSLContext *sslctx, PySocketSockObject *sock, in newPySSLSocket()
2189 static PySSLContext *PySSL_get_context(PySSLSocket *self, void *closure) { in PySSL_get_context()
2204 Py_SETREF(self->ctx, (PySSLContext *)value); in PySSL_set_context()
3051 _set_verify_mode(PySSLContext *self, enum py_ssl_cert_requirements n) in _set_verify_mode()
3092 PySSLContext *self; in _ssl__SSLContext_impl()
3155 self = (PySSLContext *) type->tp_alloc(type, 0); in _ssl__SSLContext_impl()
3288 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 …]