Home
last modified time | relevance | path

Searched refs:cipher_suites (Results 1 – 15 of 15) sorted by relevance

/external/grpc-grpc/src/core/tsi/
Dssl_transport_security.h110 const char* pem_root_certs, const char* cipher_suites,
132 const char* cipher_suites; member
206 int force_client_auth, const char* cipher_suites,
221 const char* cipher_suites, const char** alpn_protocols,
244 const char* cipher_suites; member
Dssl_transport_security.cc1623 const char* pem_root_certs, const char* cipher_suites, in tsi_create_ssl_client_handshaker_factory() argument
1630 options.cipher_suites = cipher_suites; in tsi_create_ssl_client_handshaker_factory()
1676 options->cipher_suites); in tsi_create_ssl_client_handshaker_factory_with_options()
1736 int force_client_auth, const char* cipher_suites, in tsi_create_ssl_server_handshaker_factory() argument
1743 cipher_suites, alpn_protocols, num_alpn_protocols, factory); in tsi_create_ssl_server_handshaker_factory()
1750 const char* cipher_suites, const char** alpn_protocols, in tsi_create_ssl_server_handshaker_factory_ex() argument
1758 options.cipher_suites = cipher_suites; in tsi_create_ssl_server_handshaker_factory_ex()
1817 options->cipher_suites); in tsi_create_ssl_server_handshaker_factory_with_options()
/external/boringssl/src/ssl/
Dhandshake_server.cc177 CBS cipher_suites; in ssl_client_cipher_list_contains_cipher() local
178 CBS_init(&cipher_suites, client_hello->cipher_suites, in ssl_client_cipher_list_contains_cipher()
181 while (CBS_len(&cipher_suites) > 0) { in ssl_client_cipher_list_contains_cipher()
183 if (!CBS_get_u16(&cipher_suites, &got_id)) { in ssl_client_cipher_list_contains_cipher()
268 CBS cipher_suites; in ssl_parse_client_cipher_list() local
269 CBS_init(&cipher_suites, client_hello->cipher_suites, in ssl_parse_client_cipher_list()
278 while (CBS_len(&cipher_suites) > 0) { in ssl_parse_client_cipher_list()
281 if (!CBS_get_u16(&cipher_suites, &cipher_suite)) { in ssl_parse_client_cipher_list()
Dtls13_server.cc137 CBS cipher_suites; in choose_tls13_cipher() local
138 CBS_init(&cipher_suites, client_hello->cipher_suites, in choose_tls13_cipher()
147 while (CBS_len(&cipher_suites) > 0) { in choose_tls13_cipher()
149 if (!CBS_get_u16(&cipher_suites, &cipher_suite)) { in choose_tls13_cipher()
Ds3_both.cc419 CBB hello_body, cipher_suites; in read_v2_client_hello() local
433 !CBB_add_u16_length_prefixed(&hello_body, &cipher_suites)) { in read_v2_client_hello()
450 if (!CBB_add_u16(&cipher_suites, cipher_spec)) { in read_v2_client_hello()
Dt1_lib.cc232 CBS cipher_suites, compression_methods; in ssl_client_hello_init() local
233 if (!CBS_get_u16_length_prefixed(&client_hello, &cipher_suites) || in ssl_client_hello_init()
234 CBS_len(&cipher_suites) < 2 || (CBS_len(&cipher_suites) & 1) != 0 || in ssl_client_hello_init()
240 out->cipher_suites = CBS_data(&cipher_suites); in ssl_client_hello_init()
241 out->cipher_suites_len = CBS_len(&cipher_suites); in ssl_client_hello_init()
/external/wpa_supplicant_8/src/tls/
Dtlsv1_server_i.h40 u16 cipher_suites[MAX_CIPHER_COUNT]; member
Dtlsv1_client_i.h46 u16 cipher_suites[MAX_CIPHER_COUNT]; member
Dtlsv1_server.c399 suites = conn->cipher_suites; in tlsv1_server_init()
694 suites = conn->cipher_suites; in tlsv1_server_set_cipher_list()
Dtlsv1_client.c461 suites = conn->cipher_suites; in tlsv1_client_init()
794 suites = conn->cipher_suites; in tlsv1_client_set_cipher_list()
Dtlsv1_server_read.c253 if (testing_cipher_suite_filter(conn, conn->cipher_suites[i])) in tls_process_client_hello()
259 if (!cipher_suite && tmp == conn->cipher_suites[i]) { in tls_process_client_hello()
Dtlsv1_client_write.c120 WPA_PUT_BE16(pos, conn->cipher_suites[i]); in tls_send_client_hello()
Dtlsv1_client_read.c175 if (cipher_suite == conn->cipher_suites[i]) in tls_process_server_hello()
/external/grpc-grpc/src/core/lib/security/security_connector/
Dsecurity_connector.cc89 static const char* cipher_suites = nullptr; variable
93 cipher_suites = overridden != nullptr ? overridden : GRPC_SSL_CIPHER_SUITES; in init_cipher_suites()
98 return cipher_suites; in ssl_cipher_suites()
1093 options.cipher_suites = ssl_cipher_suites();
/external/boringssl/src/include/openssl/
Dssl.h3607 const uint8_t *cipher_suites; member