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