• Home
  • Raw
  • Download

Lines Matching refs:PySSLContext

326 } 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()
2315 set_ciphers(PySSLContext *self, PyObject *args) in set_ciphers()
2368 PySSLContext *ssl_ctx = (PySSLContext *) args; in _advertiseNPN_cb()
2387 PySSLContext *ctx = (PySSLContext *)args; in _selectNPN_cb()
2394 _set_npn_protocols(PySSLContext *self, PyObject *args) in _set_npn_protocols()
2439 PySSLContext *ctx = (PySSLContext *)args; in _selectALPN_cb()
2447 _set_alpn_protocols(PySSLContext *self, PyObject *args) in _set_alpn_protocols()
2477 get_verify_mode(PySSLContext *self, void *c) in get_verify_mode()
2493 set_verify_mode(PySSLContext *self, PyObject *arg, void *c) in set_verify_mode()
2521 get_verify_flags(PySSLContext *self, void *c) in get_verify_flags()
2534 set_verify_flags(PySSLContext *self, PyObject *arg, void *c) in set_verify_flags()
2564 get_options(PySSLContext *self, void *c) in get_options()
2570 set_options(PySSLContext *self, PyObject *arg, void *c) in set_options()
2593 get_check_hostname(PySSLContext *self, void *c) in get_check_hostname()
2599 set_check_hostname(PySSLContext *self, PyObject *arg, void *c) in set_check_hostname()
2724 load_cert_chain(PySSLContext *self, PyObject *args, PyObject *kwds) in load_cert_chain()
2830 _add_ca_certs(PySSLContext *self, void *data, Py_ssize_t len, in _add_ca_certs()
2914 load_verify_locations(PySSLContext *self, PyObject *args, PyObject *kwds) in load_verify_locations()
3049 load_dh_params(PySSLContext *self, PyObject *filepath) in load_dh_params()
3099 context_wrap_socket(PySSLContext *self, PyObject *args, PyObject *kwds) in context_wrap_socket()
3130 session_stats(PySSLContext *self, PyObject *unused) in session_stats()
3169 set_default_verify_paths(PySSLContext *self, PyObject *unused) in set_default_verify_paths()
3180 set_ecdh_curve(PySSLContext *self, PyObject *name) in set_ecdh_curve()
3216 PySSLContext *ssl_ctx = (PySSLContext *) args; in _servername_callback()
3319 set_servername_callback(PySSLContext *self, PyObject *args) in set_servername_callback()
3363 cert_store_stats(PySSLContext *self) in cert_store_stats()
3404 get_ca_certs(PySSLContext *self, PyObject *args, PyObject *kwds) in get_ca_certs()
3513 sizeof(PySSLContext), /*tp_basicsize*/