Searched refs:set_ciphers (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython2/Lib/ |
D | ssl.py | 355 self.set_ciphers(_DEFAULT_CIPHERS) 453 context.set_ciphers(_RESTRICTED_SERVER_CIPHERS) 564 self._context.set_ciphers(ciphers)
|
/external/python/cpython3/Lib/test/ |
D | test_ssl.py | 301 context.set_ciphers(ciphers) 1108 ctx.set_ciphers("ALL") 1109 ctx.set_ciphers("DEFAULT") 1111 ctx.set_ciphers("^$:,;?*'dorothyx") 1129 ctx.set_ciphers('AESGCM') 2510 self.context.set_ciphers(ciphers) 2778 client_context.set_ciphers("ALL") 2972 client_context.set_ciphers('ECDHE:ECDSA:!NULL:!aRSA') 2997 client_context.set_ciphers('ECDHE:ECDSA:!NULL:!aRSA') 3749 client_context.set_ciphers("AES128") [all …]
|
D | ssl_servers.py | 204 context.set_ciphers(args.ciphers)
|
/external/python/cpython2/Lib/test/ |
D | ssl_servers.py | 204 context.set_ciphers(args.ciphers)
|
D | test_ssl.py | 768 ctx.set_ciphers("ALL") 769 ctx.set_ciphers("DEFAULT") 771 ctx.set_ciphers("^$:,;?*'dorothyx") 1800 self.context.set_ciphers(ciphers) 2046 client_context.set_ciphers("ALL") 2779 context.set_ciphers("DES") 2834 context.set_ciphers("ECCdraft:ECDH") 2924 context.set_ciphers("kEDH")
|
/external/curl/lib/vtls/ |
D | gskit.c | 304 static CURLcode set_ciphers(struct connectdata *conn, in set_ciphers() function 835 result = set_ciphers(conn, BACKEND->handle, &protoflags); in gskit_connect_step1()
|
D | nss.c | 282 static SECStatus set_ciphers(struct Curl_easy *data, PRFileDesc * model, in set_ciphers() function 1925 if(set_ciphers(data, model, SSL_CONN_CONFIG(cipher_list)) != SECSuccess) { in nss_setup_connect()
|
/external/python/cpython3/Doc/library/ |
D | ssl.rst | 529 :meth:`SSLContext.set_ciphers`. 1575 See :meth:`SSLContext.set_ciphers`. 1580 >>> ctx.set_ciphers('ECDHE+AESGCM:!ECDSA') 1638 .. method:: SSLContext.set_ciphers(ciphers) 1652 cannot be disabled with :meth:`~SSLContext.set_ciphers`. 2679 :meth:`SSLContext.set_ciphers` method. Starting from Python 3.2.3, the 2712 :meth:`SSLContext.set_ciphers` cannot enable or disable any TLS 1.3
|
/external/python/cpython3/Lib/ |
D | ssl.py | 1404 context.set_ciphers(ciphers)
|
/external/python/cpython2/Modules/ |
D | _ssl.c | 2315 set_ciphers(PySSLContext *self, PyObject *args) in set_ciphers() function 3481 {"set_ciphers", (PyCFunction) set_ciphers,
|
/external/python/cpython2/Doc/library/ |
D | ssl.rst | 1169 .. method:: SSLContext.set_ciphers(ciphers) 1795 :meth:`SSLContext.set_ciphers` method. Starting from Python 2.7.9, the
|