Home
last modified time | relevance | path

Searched refs:set_ciphers (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython2/Lib/
Dssl.py349 self.set_ciphers(_DEFAULT_CIPHERS)
447 context.set_ciphers(_RESTRICTED_SERVER_CIPHERS)
558 self._context.set_ciphers(ciphers)
/external/python/cpython3/Lib/test/
Dtest_ssl.py158 context.set_ciphers(ciphers)
876 ctx.set_ciphers("ALL")
877 ctx.set_ciphers("DEFAULT")
879 ctx.set_ciphers("^$:,;?*'dorothyx")
884 ctx.set_ciphers('AESGCM')
2009 self.context.set_ciphers(ciphers)
2259 client_context.set_ciphers("ALL")
3079 context.set_ciphers("DES")
3116 context.set_ciphers("ECCdraft:ECDH")
3206 context.set_ciphers("kEDH")
[all …]
Dssl_servers.py204 context.set_ciphers(args.ciphers)
/external/python/cpython3/Lib/
Dssl.py387 self.set_ciphers(_DEFAULT_CIPHERS)
503 context.set_ciphers(_RESTRICTED_SERVER_CIPHERS)
745 self._context.set_ciphers(ciphers)
/external/python/cpython2/Lib/test/
Dssl_servers.py204 context.set_ciphers(args.ciphers)
Dtest_ssl.py761 ctx.set_ciphers("ALL")
762 ctx.set_ciphers("DEFAULT")
764 ctx.set_ciphers("^$:,;?*'dorothyx")
1809 self.context.set_ciphers(ciphers)
2053 client_context.set_ciphers("ALL")
2786 context.set_ciphers("DES")
2823 context.set_ciphers("ECCdraft:ECDH")
2913 context.set_ciphers("kEDH")
/external/curl/lib/vtls/
Dgskit.c302 static CURLcode set_ciphers(struct connectdata *conn, in set_ciphers() function
932 result = set_ciphers(conn, BACKEND->handle, &protoflags); in gskit_connect_step1()
Dnss.c244 static SECStatus set_ciphers(struct Curl_easy *data, PRFileDesc * model, in set_ciphers() function
1846 if(set_ciphers(data, model, SSL_CONN_CONFIG(cipher_list)) != SECSuccess) { in nss_setup_connect()
/external/python/cpython3/Doc/library/
Dssl.rst1358 See :meth:`SSLContext.set_ciphers`.
1363 >>> ctx.set_ciphers('ECDHE+AESGCM:!ECDSA')
1420 .. method:: SSLContext.set_ciphers(ciphers)
2278 :meth:`SSLContext.set_ciphers` method. Starting from Python 3.2.3, the
/external/python/cpython2/Modules/
D_ssl.c2235 set_ciphers(PySSLContext *self, PyObject *args) in set_ciphers() function
3386 {"set_ciphers", (PyCFunction) set_ciphers,
/external/python/cpython2/Doc/library/
Dssl.rst1136 .. method:: SSLContext.set_ciphers(ciphers)
1771 :meth:`SSLContext.set_ciphers` method. Starting from Python 2.7.9, the
/external/scapy/doc/notebooks/
DHTTP_2_Tuto.ipynb82 "ssl_ctx.set_ciphers(':'.join([ # List from ANSSI TLS guide v.1.1 p.51\n",