Home
last modified time | relevance | path

Searched refs:cipher_list (Results 1 – 17 of 17) sorted by relevance

/external/boringssl/src/ssl/
Ds3_lib.cc219 if (ssl->cipher_list != NULL) { in ssl_get_cipher_preferences()
220 return ssl->cipher_list; in ssl_get_cipher_preferences()
223 return ssl->ctx->cipher_list; in ssl_get_cipher_preferences()
Dssl_lib.cc276 struct ssl_cipher_preference_list_st *cipher_list) { in ssl_cipher_preference_list_free() argument
277 if (cipher_list == NULL) { in ssl_cipher_preference_list_free()
280 sk_SSL_CIPHER_free(cipher_list->ciphers); in ssl_cipher_preference_list_free()
281 OPENSSL_free(cipher_list->in_group_flags); in ssl_cipher_preference_list_free()
282 OPENSSL_free(cipher_list); in ssl_cipher_preference_list_free()
626 ssl_cipher_preference_list_free(ctx->cipher_list); in SSL_CTX_free()
769 ssl_cipher_preference_list_free(ssl->cipher_list); in SSL_free()
1821 return ctx->cipher_list->ciphers; in STACK_OF()
1825 if (i >= sk_SSL_CIPHER_num(ctx->cipher_list->ciphers)) { in SSL_CTX_cipher_in_group()
1828 return ctx->cipher_list->in_group_flags[i]; in SSL_CTX_cipher_in_group()
[all …]
Dinternal.h1932 struct ssl_cipher_preference_list_st *cipher_list;
2542 struct ssl_cipher_preference_list_st *cipher_list;
2778 struct ssl_cipher_preference_list_st *cipher_list);
Dssl_test.cc2009 const char *cipher_list = "CHACHA20:ALL"; in TEST() local
2013 ASSERT_TRUE(SSL_CTX_set_strict_cipher_list(ctx.get(), cipher_list)); in TEST()
/external/curl/lib/vtls/
Dnss.c245 char *cipher_list) in set_ciphers() argument
271 cipher = cipher_list; in set_ciphers()
273 while(cipher_list && (cipher_list[0])) { in set_ciphers()
277 cipher_list = strchr(cipher, ','); in set_ciphers()
278 if(cipher_list) { in set_ciphers()
279 *cipher_list++ = '\0'; in set_ciphers()
297 if(cipher_list) { in set_ciphers()
298 cipher = cipher_list; in set_ciphers()
1845 if(SSL_CONN_CONFIG(cipher_list)) { in nss_setup_connect()
1846 if(set_ciphers(data, model, SSL_CONN_CONFIG(cipher_list)) != SECSuccess) { in nss_setup_connect()
Dvtls.c99 Curl_safe_strcasecompare(data->cipher_list, needle->cipher_list)) in Curl_ssl_config_matches()
121 CLONE_STRING(cipher_list); in Curl_clone_primary_ssl_config()
133 Curl_safefree(sslc->cipher_list); in Curl_free_primary_ssl_config()
Dcyassl.c256 ciphers = SSL_CONN_CONFIG(cipher_list); in cyassl_connect_step1()
Dopenssl.c2304 ciphers = SSL_CONN_CONFIG(cipher_list); in ossl_connect_step1()
2329 if(!SSL_CONN_CONFIG(cipher_list)) { in ossl_connect_step1()
Dgskit.c306 const char *cipherlist = SSL_CONN_CONFIG(cipher_list); in set_ciphers()
Dgtls.c672 if(SSL_CONN_CONFIG(cipher_list) != NULL) { in gtls_connect_step1()
/external/curl/src/
Dtool_cfgable.h118 char *cipher_list; member
Dtool_cfgable.c104 Curl_safefree(config->cipher_list); in free_config_fields()
Dtool_operate.c1274 if(config->cipher_list) in operate_do()
1275 my_setopt_str(curl, CURLOPT_SSL_CIPHER_LIST, config->cipher_list); in operate_do()
Dtool_getparam.c607 GetStr(&config->cipher_list, nextarg); in getparameter()
/external/boringssl/src/ssl/test/
Dbssl_shim.cc1206 std::string cipher_list = "ALL"; in SetupCtx() local
1208 cipher_list = config->cipher; in SetupCtx()
1211 if (!SSL_CTX_set_strict_cipher_list(ssl_ctx.get(), cipher_list.c_str())) { in SetupCtx()
/external/curl/lib/
Durldata.h214 char *cipher_list; /* list of ciphers to use */ member
Durl.c4340 data->set.ssl.primary.cipher_list = in create_conn()
4342 data->set.proxy_ssl.primary.cipher_list = in create_conn()