Home
last modified time | relevance | path

Searched refs:SSL_CTX_set_cipher_list (Results 1 – 14 of 14) sorted by relevance

/external/libmicrohttpd/src/microspdy/
Dio_openssl.c115 if (1 != SSL_CTX_set_cipher_list(daemon->io_context, "HIGH")) in SPDYF_openssl_init()
/external/curl/lib/
Dsetup-vms.h276 #define SSL_CTX_set_cipher_list SSL_CTX_SET_CIPHER_LIST macro
/external/curl/docs/examples/
Dcurlx.c251 SSL_CTX_set_cipher_list(ctx, "RC4-MD5"); in sslctxfun()
/external/curl/m4/
Dcurl-openssl.m4214 AC_LANG_FUNC_LINK_TRY([SSL_CTX_set_cipher_list])
/external/libbrillo/brillo/streams/
Dtls_stream.cc350 int res = SSL_CTX_set_cipher_list(ctx_.get(), in Init()
/external/webrtc/webrtc/base/
Dopenssladapter.cc959 SSL_CTX_set_cipher_list(ctx, "ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH"); in SetupSSLContext()
Dopensslstreamadapter.cc1012 SSL_CTX_set_cipher_list(ctx, in SetupSSLContext()
/external/boringssl/src/ssl/
Dssl_test.cc396 ASSERT_TRUE(SSL_CTX_set_cipher_list(ctx.get(), t.rule)); in TEST()
417 EXPECT_FALSE(SSL_CTX_set_cipher_list(ctx.get(), rule)); in TEST()
3297 EXPECT_FALSE(SSL_CTX_set_cipher_list(ctx.get(), "")); in TEST()
Dssl_lib.cc1502 int SSL_CTX_set_cipher_list(SSL_CTX *ctx, const char *str) { in SSL_CTX_set_cipher_list() function
/external/curl/lib/vtls/
Dopenssl.c2016 if(!SSL_CTX_set_cipher_list(connssl->ctx, ciphers)) { in ossl_connect_step1()
2039 if(!SSL_CTX_set_cipher_list(connssl->ctx, "SRP")) { in ossl_connect_step1()
/external/libmicrohttpd/src/microhttpd/
Ddaemon.c693 ret = SSL_CTX_set_cipher_list (daemon->tls_context, in MHD_TLS_init()
706 ret = SSL_CTX_set_cipher_list (daemon->tls_context, in MHD_TLS_init()
/external/wpa_supplicant_8/src/crypto/
Dtls_openssl.c1029 if (SSL_CTX_set_cipher_list(ssl, ciphers) != 1) { in tls_init()
4130 SSL_CTX_set_cipher_list(ssl_ctx, params->openssl_ciphers) != 1) { in tls_global_set_params()
/external/boringssl/src/include/openssl/
Dssl.h1386 OPENSSL_EXPORT int SSL_CTX_set_cipher_list(SSL_CTX *ctx, const char *str);
/external/python/cpython2/Modules/
D_ssl.c2242 ret = SSL_CTX_set_cipher_list(self->ctx, cipherlist); in set_ciphers()