/third_party/openssl/doc/man3/ |
D | SSL_CTX_set_cipher_list.pod | 6 SSL_set_cipher_list, 18 int SSL_set_cipher_list(SSL *ssl, const char *str); 34 SSL_set_cipher_list() sets the list of ciphers (TLSv1.2 and below) only for 68 The control string B<str> for SSL_CTX_set_cipher_list(), SSL_set_cipher_list(), 103 SSL_CTX_set_cipher_list() and SSL_set_cipher_list() return 1 if any cipher
|
/third_party/openssl/test/ |
D | dtls_mtu_test.c | 68 if (!TEST_true(SSL_set_cipher_list(srvr_ssl, cs)) in mtu_test() 69 || !TEST_true(SSL_set_cipher_list(clnt_ssl, cs)) in mtu_test()
|
D | cipherlist_test.c | 233 if (!TEST_int_eq(SSL_set_cipher_list(s, "no-such"), 0)) in test_default_cipherlist_clear()
|
D | sslapitest.c | 865 || !TEST_true(SSL_set_cipher_list(clientssl, "AES128-GCM-SHA256")) in test_ccs_change_cipher() 880 || !TEST_true(SSL_set_cipher_list(clientssl, "AES256-GCM-SHA384:AES128-GCM-SHA256")) in test_ccs_change_cipher() 899 || !TEST_true(SSL_set_cipher_list(clientssl, "AES128-GCM-SHA256")) in test_ccs_change_cipher() 903 || !TEST_true(SSL_set_cipher_list(clientssl, "AES256-GCM-SHA384")) in test_ccs_change_cipher() 4399 if (!TEST_true(SSL_set_cipher_list(clientssl, "AES256-GCM-SHA384"))) in test_set_ciphersuite() 5049 if (!TEST_true(SSL_set_cipher_list(serverssl, t12_cipher)) in test_tls13_ciphersuite() 5050 || !TEST_true(SSL_set_cipher_list(clientssl, in test_tls13_ciphersuite() 9316 || !TEST_true(SSL_set_cipher_list(serverssl, "DHE-RSA-AES128-SHA"))) in test_set_tmp_dh() 9416 || !TEST_true(SSL_set_cipher_list(serverssl, ciphersuite)) in test_dh_auto() 9417 || !TEST_true(SSL_set_cipher_list(clientssl, ciphersuite))) in test_dh_auto()
|
/third_party/openssl/fuzz/ |
D | client.c | 75 OPENSSL_assert(SSL_set_cipher_list(client, "ALL:eNULL:@SECLEVEL=0") == 1); in FuzzerTestOneInput()
|
/third_party/libwebsockets/lib/tls/mbedtls/wrapper/include/openssl/ |
D | ssl.h | 785 int SSL_set_cipher_list(SSL *ssl, const char *str);
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
D | tls_openssl.c | 2993 if (SSL_set_cipher_list(ssl, ciphers) != 1) { in tls_set_conn_flags() 3010 if (SSL_set_cipher_list(ssl, ciphers) != 1) { in tls_set_conn_flags() 3082 openssl_ciphers && SSL_set_cipher_list(ssl, openssl_ciphers) != 1) { in tls_set_conn_flags() 3090 if (openssl_ciphers && SSL_set_cipher_list(ssl, openssl_ciphers) != 1) { in tls_set_conn_flags() 3125 if (SSL_set_cipher_list(conn->ssl, cs) != 1) { in tls_set_conn_flags() 4528 if (SSL_set_cipher_list(conn->ssl, buf + 1) != 1) { in tls_connection_set_cipher_list() 5038 if (ciphers && SSL_set_cipher_list(conn->ssl, ciphers) != 1) { in tls_connection_set_params()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
D | tls_openssl.c | 3066 if (SSL_set_cipher_list(ssl, ciphers) != 1) { in tls_set_conn_flags() 3083 if (SSL_set_cipher_list(ssl, ciphers) != 1) { in tls_set_conn_flags() 3155 openssl_ciphers && SSL_set_cipher_list(ssl, openssl_ciphers) != 1) { in tls_set_conn_flags() 3163 if (openssl_ciphers && SSL_set_cipher_list(ssl, openssl_ciphers) != 1) { in tls_set_conn_flags() 3198 if (SSL_set_cipher_list(conn->ssl, cs) != 1) { in tls_set_conn_flags() 4767 if (SSL_set_cipher_list(conn->ssl, buf + 1) != 1) { in tls_connection_set_cipher_list() 5324 if (ciphers && SSL_set_cipher_list(conn->ssl, ciphers) != 1) { in tls_connection_set_params()
|
/third_party/rust/crates/rust-openssl/openssl-sys/ |
D | CHANGELOG.md | 25 * Added `SSL_set_cipher_list`, `SSL_set_ssl_method`, `SSL_use_PrivateKey_file`, `SSL_use_PrivateKey…
|
/third_party/openssl/ssl/ |
D | ssl_conf.c | 262 rv = SSL_set_cipher_list(cctx->ssl, value); in cmd_CipherString()
|
D | ssl_lib.c | 2767 int SSL_set_cipher_list(SSL *s, const char *str) in SSL_set_cipher_list() function
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
D | ssl.rs | 495 pub fn SSL_set_cipher_list(ssl: *mut SSL, s: *const c_char) -> c_int; in SSL_set_cipher_list() function
|
/third_party/openssl/util/ |
D | libssl.num | 348 SSL_set_cipher_list 349 3_0_0 EXIST::FUNCTION:
|
/third_party/openssl/test/helpers/ |
D | handshake.c | 919 if (!SSL_set_cipher_list(peer->ssl, in do_reneg_setup_step()
|
/third_party/rust/crates/rust-openssl/openssl/src/ssl/ |
D | mod.rs | 3288 #[corresponds(SSL_set_cipher_list)] 3292 cvt(ffi::SSL_set_cipher_list( in set_cipher_list()
|
/third_party/libcoap/src/ |
D | coap_openssl.c | 2032 SSL_set_cipher_list (ssl, COAP_OPENSSL_PSK_CIPHERS); in tls_secret_call_back() 2821 SSL_set_cipher_list(ssl, COAP_OPENSSL_PSK_CIPHERS); in setup_client_ssl_session()
|
/third_party/openssl/ohos_lite/include/openssl/ |
D | ssl.h | 1548 __owur int SSL_set_cipher_list(SSL *s, const char *str);
|
/third_party/openssl/include/openssl/ |
D | ssl.h.in | 1578 __owur int SSL_set_cipher_list(SSL *s, const char *str);
|
/third_party/chromium/patch/ |
D | 0004-ohos-3.2-Beta5.patch | 33404 + LOG(ERROR) << "SSL_set_cipher_list('" << command << "') failed"; 33412 LOG(ERROR) << "SSL_set_cipher_list('" << command << "') failed";
|