Searched refs:cipher_list (Results 1 – 17 of 17) sorted by relevance
/external/boringssl/src/ssl/ |
D | ssl_lib.c | 259 ssl_create_cipher_list(ret->method, &ret->cipher_list, in SSL_CTX_new() 261 if (ret->cipher_list == NULL || in SSL_CTX_new() 262 sk_SSL_CIPHER_num(ret->cipher_list->ciphers) <= 0) { in SSL_CTX_new() 325 ssl_cipher_preference_list_free(ctx->cipher_list); in SSL_CTX_free() 483 ssl_cipher_preference_list_free(ssl->cipher_list); in SSL_free() 964 struct ssl_cipher_preference_list_st *cipher_list) { in ssl_cipher_preference_list_free() argument 965 if (cipher_list == NULL) { in ssl_cipher_preference_list_free() 968 sk_SSL_CIPHER_free(cipher_list->ciphers); in ssl_cipher_preference_list_free() 969 OPENSSL_free(cipher_list->in_group_flags); in ssl_cipher_preference_list_free() 970 OPENSSL_free(cipher_list); in ssl_cipher_preference_list_free() [all …]
|
D | ssl_test.cc | 326 for (i = 0; i < sk_SSL_CIPHER_num(ctx->cipher_list->ciphers); i++) { in TestCipherRule() 328 sk_SSL_CIPHER_value(ctx->cipher_list->ciphers, i); in TestCipherRule() 330 t->expected[i].in_group_flag != ctx->cipher_list->in_group_flags[i]) { in TestCipherRule() 332 PrintCipherPreferenceList(ctx->cipher_list); in TestCipherRule() 339 PrintCipherPreferenceList(ctx->cipher_list); in TestCipherRule() 355 for (size_t i = 0; i < sk_SSL_CIPHER_num(ctx->cipher_list->ciphers); i++) { in TestRuleDoesNotIncludeNull() 356 if (SSL_CIPHER_is_NULL(sk_SSL_CIPHER_value(ctx->cipher_list->ciphers, i))) { in TestRuleDoesNotIncludeNull()
|
D | s3_lib.c | 451 if (ssl->cipher_list != NULL) { in ssl_get_cipher_preferences() 452 return ssl->cipher_list; in ssl_get_cipher_preferences() 465 if (ssl->ctx != NULL && ssl->ctx->cipher_list != NULL) { in ssl_get_cipher_preferences() 466 return ssl->ctx->cipher_list; in ssl_get_cipher_preferences()
|
D | internal.h | 1000 struct ssl_cipher_preference_list_st *cipher_list);
|
/external/curl/lib/vtls/ |
D | vtls.c | 105 safe_strequal(data->cipher_list, needle->cipher_list)) in Curl_ssl_config_matches() 136 if(source->cipher_list) { in Curl_clone_ssl_config() 137 dest->cipher_list = strdup(source->cipher_list); in Curl_clone_ssl_config() 138 if(!dest->cipher_list) in Curl_clone_ssl_config() 142 dest->cipher_list = NULL; in Curl_clone_ssl_config() 176 Curl_safefree(sslc->cipher_list); in Curl_free_ssl_config()
|
D | nss.c | 207 char *cipher_list) in set_ciphers() argument 233 cipher = cipher_list; in set_ciphers() 235 while(cipher_list && (cipher_list[0])) { in set_ciphers() 239 if((cipher_list = strchr(cipher, ','))) { in set_ciphers() 240 *cipher_list++ = '\0'; in set_ciphers() 258 if(cipher_list) { in set_ciphers() 259 cipher = cipher_list; in set_ciphers() 1634 if(data->set.ssl.cipher_list) { in nss_setup_connect() 1635 if(set_ciphers(data, model, data->set.ssl.cipher_list) != SECSuccess) { in nss_setup_connect()
|
D | gtls.c | 548 if(data->set.ssl.cipher_list != NULL) { in gtls_connect_step1()
|
/external/openssh/ |
D | cipher.c | 241 char *cipher_list, *cp; in ciphers_valid() local 246 if ((cipher_list = cp = strdup(names)) == NULL) in ciphers_valid() 252 free(cipher_list); in ciphers_valid() 256 free(cipher_list); in ciphers_valid()
|
/external/boringssl/src/tool/ |
D | ciphers.cc | 43 const struct ssl_cipher_preference_list_st *pref_list = ctx->cipher_list; in Ciphers()
|
/external/curl/src/ |
D | tool_cfgable.h | 108 char *cipher_list; member
|
D | tool_cfgable.c | 100 Curl_safefree(config->cipher_list); in free_config_fields()
|
D | tool_operate.c | 1156 if(config->cipher_list) in operate_do() 1157 my_setopt_str(curl, CURLOPT_SSL_CIPHER_LIST, config->cipher_list); in operate_do()
|
D | tool_getparam.c | 506 GetStr(&config->cipher_list, nextarg); in getparameter()
|
/external/boringssl/src/ssl/test/ |
D | bssl_shim.cc | 714 std::string cipher_list = "ALL"; in SetupCtx() local 716 cipher_list = config->cipher; in SetupCtx() 719 if (!SSL_CTX_set_cipher_list(ssl_ctx.get(), cipher_list.c_str())) { in SetupCtx()
|
/external/curl/lib/ |
D | urldata.h | 357 char *cipher_list; /* list of ciphers to use */ member
|
D | url.c | 6125 data->set.ssl.cipher_list = data->set.str[STRING_SSL_CIPHER_LIST]; in create_conn()
|
/external/boringssl/src/include/openssl/ |
D | ssl.h | 3480 struct ssl_cipher_preference_list_st *cipher_list; member 3775 struct ssl_cipher_preference_list_st *cipher_list; member
|