/third_party/openssl/test/ |
H A D | sslcorrupttest.c | 134 * |cipher_list| is initialized with RSA ciphers' names. This 138 static const char **cipher_list = NULL; variable 153 * The |cipher_list| will be filled only with names of RSA ciphers, in setup_cipher_list() 157 cipher_list = OPENSSL_malloc(sk_SSL_CIPHER_num(sk_ciphers) * in setup_cipher_list() 158 sizeof(cipher_list[0])); in setup_cipher_list() 159 if (!TEST_ptr(cipher_list)) in setup_cipher_list() 166 cipher_list[j++] = SSL_CIPHER_get_name(cipher); in setup_cipher_list() 195 TEST_info("Starting #%d, %s", testidx, cipher_list[testidx]); in test_ssl_corrupt() 204 || !TEST_true(SSL_CTX_set_cipher_list(cctx, cipher_list[testidx])) in test_ssl_corrupt() 279 OPENSSL_free(cipher_list); in cleanup_tests() [all...] |
/third_party/libwebsockets/lib/tls/ |
H A D | tls-client.c | 113 const char *cipher_list = info->ssl_cipher_list; in lws_context_init_client_ssl() local 132 cipher_list = info->client_ssl_cipher_list; in lws_context_init_client_ssl() 158 if (lws_tls_client_create_vhost_context(vhost, info, cipher_list, in lws_context_init_client_ssl()
|
H A D | private-network.h | 183 const char *cipher_list,
|
/third_party/node/deps/openssl/openssl/ssl/ |
H A D | ssl_ciph.c | 1372 STACK_OF(SSL_CIPHER) **cipher_list, in update_cipher_list() 1377 STACK_OF(SSL_CIPHER) *tmp_cipher_list = sk_SSL_CIPHER_dup(*cipher_list); in update_cipher_list() 1409 sk_SSL_CIPHER_free(*cipher_list); in update_cipher_list() 1410 *cipher_list = tmp_cipher_list; in update_cipher_list() 1419 if (ret && ctx->cipher_list != NULL) in SSL_CTX_set_ciphersuites() 1420 return update_cipher_list(ctx, &ctx->cipher_list, &ctx->cipher_list_by_id, in SSL_CTX_set_ciphersuites() 1428 STACK_OF(SSL_CIPHER) *cipher_list; in SSL_set_ciphersuites() 1431 if (s->cipher_list == NULL) { in SSL_set_ciphersuites() 1432 if ((cipher_list = SSL_get_ciphers(s)) != NULL) in SSL_set_ciphersuites() 1433 s->cipher_list in SSL_set_ciphersuites() 1371 update_cipher_list(SSL_CTX *ctx, STACK_OF(SSL_CIPHER) **cipher_list, STACK_OF(SSL_CIPHER) **cipher_list_by_id, STACK_OF(SSL_CIPHER) *tls13_ciphersuites) update_cipher_list() argument [all...] |
H A D | ssl_lib.c | 725 &(ctx->cipher_list), in SSL_CTX_set_ssl_version() 1269 sk_SSL_CIPHER_free(s->cipher_list); in SSL_free() 2744 if (s->cipher_list != NULL) { in STACK_OF() 2745 return s->cipher_list; in STACK_OF() 2746 } else if ((s->ctx != NULL) && (s->ctx->cipher_list != NULL)) { in STACK_OF() 2747 return s->ctx->cipher_list; in STACK_OF() 2822 return ctx->cipher_list; in STACK_OF() 2852 &ctx->cipher_list, &ctx->cipher_list_by_id, str, in SSL_CTX_set_cipher_list() 2859 * ctx->cipher_list and ctx->cipher_list_by_id has been updated. in SSL_CTX_set_cipher_list() 2876 &s->cipher_list, in SSL_set_cipher_list() [all...] |
H A D | ssl_local.h | 854 STACK_OF(SSL_CIPHER) *cipher_list; member 1473 STACK_OF(SSL_CIPHER) *cipher_list; member 2454 STACK_OF(SSL_CIPHER) **cipher_list,
|
/third_party/openssl/ssl/ |
H A D | ssl_ciph.c | 1371 STACK_OF(SSL_CIPHER) **cipher_list, in update_cipher_list() 1376 STACK_OF(SSL_CIPHER) *tmp_cipher_list = sk_SSL_CIPHER_dup(*cipher_list); in update_cipher_list() 1408 sk_SSL_CIPHER_free(*cipher_list); in update_cipher_list() 1409 *cipher_list = tmp_cipher_list; in update_cipher_list() 1418 if (ret && ctx->cipher_list != NULL) in SSL_CTX_set_ciphersuites() 1419 return update_cipher_list(ctx, &ctx->cipher_list, &ctx->cipher_list_by_id, in SSL_CTX_set_ciphersuites() 1427 STACK_OF(SSL_CIPHER) *cipher_list; in SSL_set_ciphersuites() 1430 if (s->cipher_list == NULL) { in SSL_set_ciphersuites() 1431 if ((cipher_list = SSL_get_ciphers(s)) != NULL) in SSL_set_ciphersuites() 1432 s->cipher_list in SSL_set_ciphersuites() 1370 update_cipher_list(SSL_CTX *ctx, STACK_OF(SSL_CIPHER) **cipher_list, STACK_OF(SSL_CIPHER) **cipher_list_by_id, STACK_OF(SSL_CIPHER) *tls13_ciphersuites) update_cipher_list() argument [all...] |
H A D | ssl_lib.c | 665 &(ctx->cipher_list), in SSL_CTX_set_ssl_version() 1205 sk_SSL_CIPHER_free(s->cipher_list); in SSL_free() 2644 if (s->cipher_list != NULL) { in STACK_OF() 2645 return s->cipher_list; in STACK_OF() 2646 } else if ((s->ctx != NULL) && (s->ctx->cipher_list != NULL)) { in STACK_OF() 2647 return s->ctx->cipher_list; in STACK_OF() 2722 return ctx->cipher_list; in STACK_OF() 2752 &ctx->cipher_list, &ctx->cipher_list_by_id, str, in SSL_CTX_set_cipher_list() 2759 * ctx->cipher_list and ctx->cipher_list_by_id has been updated. in SSL_CTX_set_cipher_list() 2776 &s->cipher_list, in SSL_set_cipher_list() [all...] |
H A D | ssl_local.h | 845 STACK_OF(SSL_CIPHER) *cipher_list; member 1449 STACK_OF(SSL_CIPHER) *cipher_list; member 2398 STACK_OF(SSL_CIPHER) **cipher_list,
|
/third_party/rust/crates/rust-openssl/openssl/src/ssl/ |
H A D | mod.rs | 1063 pub fn set_cipher_list(&mut self, cipher_list: &str) -> Result<(), ErrorStack> { in set_cipher_list() 1064 let cipher_list = CString::new(cipher_list).unwrap(); in set_cipher_list() 1068 cipher_list.as_ptr() as *const _, in set_cipher_list() 1084 pub fn set_ciphersuites(&mut self, cipher_list: &str) -> Result<(), ErrorStack> { in set_ciphersuites() 1085 let cipher_list = CString::new(cipher_list).unwrap(); in set_ciphersuites() 1089 cipher_list.as_ptr() as *const _, in set_ciphersuites() 3333 pub fn set_ciphersuites(&mut self, cipher_list: &str) -> Result<(), ErrorStack> { in set_ciphersuites() 3334 let cipher_list in set_ciphersuites() [all...] |
/third_party/libwebsockets/lib/tls/openssl/ |
H A D | openssl-client.c | 715 const char *cipher_list, 797 if (cipher_list) 798 EVP_DigestUpdate(mdctx, cipher_list, strlen(cipher_list)); 978 if (cipher_list) 979 SSL_CTX_set_cipher_list(vh->tls.ssl_client_ctx, cipher_list); 713 lws_tls_client_create_vhost_context(struct lws_vhost *vh, const struct lws_context_creation_info *info, const char *cipher_list, const char *ca_filepath, const void *ca_mem, unsigned int ca_mem_len, const char *cert_filepath, const void *cert_mem, unsigned int cert_mem_len, const char *private_key_filepath, const void *key_mem, unsigned int key_mem_len ) global() argument
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
H A D | types.rs | 488 cipher_list: *mut stack_st_SSL_CIPHER, 547 cipher_list: *mut stack_st_SSL_CIPHER, 645 cipher_list: *mut stack_st_SSL_CIPHER, 782 cipher_list: *mut stack_st_SSL_CIPHER, 799 cipher_list: *mut c_void, 869 cipher_list: *mut c_void,
|
/third_party/curl/src/ |
H A D | tool_cfgable.h | 133 char *cipher_list; member
|
H A D | tool_cfgable.c | 115 Curl_safefree(config->cipher_list); in free_config_fields()
|
H A D | tool_operate.c | 1917 if(config->cipher_list) in single_transfer() 1918 my_setopt_str(curl, CURLOPT_SSL_CIPHER_LIST, config->cipher_list); in single_transfer()
|
/third_party/node/deps/openssl/openssl/engines/ |
H A D | e_devcrypto.c | 591 static void devcrypto_select_all_ciphers(int *cipher_list) in devcrypto_select_all_ciphers() argument 596 cipher_list[i] = 1; in devcrypto_select_all_ciphers() 601 int *cipher_list = (int *)usr; in cryptodev_select_cipher_cb() local 614 cipher_list[i] = 1; in cryptodev_select_cipher_cb()
|
/third_party/openssl/engines/ |
H A D | e_devcrypto.c | 591 static void devcrypto_select_all_ciphers(int *cipher_list) in devcrypto_select_all_ciphers() argument 596 cipher_list[i] = 1; in devcrypto_select_all_ciphers() 601 int *cipher_list = (int *)usr; in cryptodev_select_cipher_cb() local 614 cipher_list[i] = 1; in cryptodev_select_cipher_cb()
|
/third_party/curl/lib/vtls/ |
H A D | vtls.c | 198 strcasecompare(c1->cipher_list, c2->cipher_list) && in match_ssl_primary_config() 241 CLONE_STRING(cipher_list); in clone_ssl_primary_config() 260 Curl_safefree(sslc->cipher_list); in Curl_free_primary_ssl_config() 281 data->set.ssl.primary.cipher_list = in Curl_ssl_easy_config_complete() 304 data->set.proxy_ssl.primary.cipher_list = in Curl_ssl_easy_config_complete()
|
H A D | bearssl.c | 668 if(conn_config->cipher_list) { in bearssl_connect_step1() 673 conn_config->cipher_list); in bearssl_connect_step1()
|
H A D | wolfssl.c | 487 ciphers = conn_config->cipher_list; in wolfssl_connect_step1()
|
H A D | schannel.c | 769 if(!conn_config->cipher_list && in schannel_acquire_credential_handle() 982 char *ciphers = conn_config->cipher_list; in schannel_acquire_credential_handle()
|
H A D | openssl.c | 3658 ciphers = conn_config->cipher_list; in ossl_connect_step1() 3713 if(!conn_config->cipher_list) { in ossl_connect_step1()
|
/third_party/libwebsockets/lib/roles/http/server/ |
H A D | lejp-conf.c | 562 const char *cipher_list = in lejp_vhosts_cb() local 570 a->info->client_ssl_cipher_list = cipher_list; in lejp_vhosts_cb()
|
/third_party/libwebsockets/lib/tls/mbedtls/ |
H A D | mbedtls-client.c | 369 const char *cipher_list, in lws_tls_client_create_vhost_context() 367 lws_tls_client_create_vhost_context(struct lws_vhost *vh, const struct lws_context_creation_info *info, const char *cipher_list, const char *ca_filepath, const void *ca_mem, unsigned int ca_mem_len, const char *cert_filepath, const void *cert_mem, unsigned int cert_mem_len, const char *private_key_filepath, const void *key_mem, unsigned int key_mem_len ) lws_tls_client_create_vhost_context() argument
|
/third_party/curl/lib/ |
H A D | urldata.h | 281 char *cipher_list; /* list of ciphers to use */ member
|