Home
last modified time | relevance | path

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

12

/external/rust/crates/grpcio-sys/grpc/src/core/tsi/
Dssl_transport_security.h122 const char* pem_root_certs, const char* cipher_suites,
144 const char* cipher_suites; member
167 cipher_suites(nullptr), in tsi_ssl_client_handshaker_options()
237 int force_client_auth, const char* cipher_suites,
252 const char* cipher_suites, const char** alpn_protocols,
275 const char* cipher_suites; member
298 cipher_suites(nullptr), in tsi_ssl_server_handshaker_options()
Dssl_transport_security.cc1884 const char* pem_root_certs, const char* cipher_suites, in tsi_create_ssl_client_handshaker_factory() argument
1890 options.cipher_suites = cipher_suites; in tsi_create_ssl_client_handshaker_factory()
1943 options->cipher_suites); in tsi_create_ssl_client_handshaker_factory_with_options()
2007 int force_client_auth, const char* cipher_suites, in tsi_create_ssl_server_handshaker_factory() argument
2014 cipher_suites, alpn_protocols, num_alpn_protocols, factory); in tsi_create_ssl_server_handshaker_factory()
2021 const char* cipher_suites, const char** alpn_protocols, in tsi_create_ssl_server_handshaker_factory_ex() argument
2028 options.cipher_suites = cipher_suites; in tsi_create_ssl_server_handshaker_factory_ex()
2095 options->cipher_suites); in tsi_create_ssl_server_handshaker_factory_with_options()
/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/rust/crates/quiche/deps/boringssl/src/ssl/
Ds3_both.cc421 CBB hello_body, cipher_suites; in read_v2_client_hello() local
435 !CBB_add_u16_length_prefixed(&hello_body, &cipher_suites)) { in read_v2_client_hello()
452 if (!CBB_add_u16(&cipher_suites, cipher_spec)) { in read_v2_client_hello()
688 const SSL_CIPHER *ssl_choose_tls13_cipher(CBS cipher_suites, uint16_t version, in ssl_choose_tls13_cipher() argument
690 if (CBS_len(&cipher_suites) % 2 != 0) { in ssl_choose_tls13_cipher()
698 while (CBS_len(&cipher_suites) > 0) { in ssl_choose_tls13_cipher()
700 if (!CBS_get_u16(&cipher_suites, &cipher_suite)) { in ssl_choose_tls13_cipher()
Dhandshake_server.cc176 CBS cipher_suites; in ssl_client_cipher_list_contains_cipher() local
177 CBS_init(&cipher_suites, client_hello->cipher_suites, in ssl_client_cipher_list_contains_cipher()
180 while (CBS_len(&cipher_suites) > 0) { in ssl_client_cipher_list_contains_cipher()
182 if (!CBS_get_u16(&cipher_suites, &got_id)) { in ssl_client_cipher_list_contains_cipher()
267 CBS cipher_suites; in ssl_parse_client_cipher_list() local
268 CBS_init(&cipher_suites, client_hello->cipher_suites, in ssl_parse_client_cipher_list()
277 while (CBS_len(&cipher_suites) > 0) { in ssl_parse_client_cipher_list()
280 if (!CBS_get_u16(&cipher_suites, &cipher_suite)) { in ssl_parse_client_cipher_list()
Dtls13_server.cc90 CBS cipher_suites; in choose_tls13_cipher() local
91 CBS_init(&cipher_suites, client_hello->cipher_suites, in choose_tls13_cipher()
96 return ssl_choose_tls13_cipher(cipher_suites, version, group_id); in choose_tls13_cipher()
Dt1_lib.cc236 CBS cipher_suites, compression_methods; in ssl_client_hello_init() local
237 if (!CBS_get_u16_length_prefixed(&client_hello, &cipher_suites) || in ssl_client_hello_init()
238 CBS_len(&cipher_suites) < 2 || (CBS_len(&cipher_suites) & 1) != 0 || in ssl_client_hello_init()
244 out->cipher_suites = CBS_data(&cipher_suites); in ssl_client_hello_init()
245 out->cipher_suites_len = CBS_len(&cipher_suites); in ssl_client_hello_init()
Dinternal.h660 const SSL_CIPHER *ssl_choose_tls13_cipher(CBS cipher_suites, uint16_t version,
/external/boringssl/src/ssl/
Ds3_both.cc421 CBB hello_body, cipher_suites; in read_v2_client_hello() local
435 !CBB_add_u16_length_prefixed(&hello_body, &cipher_suites)) { in read_v2_client_hello()
452 if (!CBB_add_u16(&cipher_suites, cipher_spec)) { in read_v2_client_hello()
688 const SSL_CIPHER *ssl_choose_tls13_cipher(CBS cipher_suites, uint16_t version, in ssl_choose_tls13_cipher() argument
690 if (CBS_len(&cipher_suites) % 2 != 0) { in ssl_choose_tls13_cipher()
698 while (CBS_len(&cipher_suites) > 0) { in ssl_choose_tls13_cipher()
700 if (!CBS_get_u16(&cipher_suites, &cipher_suite)) { in ssl_choose_tls13_cipher()
Dhandshake_server.cc176 CBS cipher_suites; in ssl_client_cipher_list_contains_cipher() local
177 CBS_init(&cipher_suites, client_hello->cipher_suites, in ssl_client_cipher_list_contains_cipher()
180 while (CBS_len(&cipher_suites) > 0) { in ssl_client_cipher_list_contains_cipher()
182 if (!CBS_get_u16(&cipher_suites, &got_id)) { in ssl_client_cipher_list_contains_cipher()
267 CBS cipher_suites; in ssl_parse_client_cipher_list() local
268 CBS_init(&cipher_suites, client_hello->cipher_suites, in ssl_parse_client_cipher_list()
277 while (CBS_len(&cipher_suites) > 0) { in ssl_parse_client_cipher_list()
280 if (!CBS_get_u16(&cipher_suites, &cipher_suite)) { in ssl_parse_client_cipher_list()
Dtls13_server.cc90 CBS cipher_suites; in choose_tls13_cipher() local
91 CBS_init(&cipher_suites, client_hello->cipher_suites, in choose_tls13_cipher()
96 return ssl_choose_tls13_cipher(cipher_suites, version, group_id); in choose_tls13_cipher()
Dt1_lib.cc241 CBS cipher_suites, compression_methods; in ssl_client_hello_init() local
242 if (!CBS_get_u16_length_prefixed(&client_hello, &cipher_suites) || in ssl_client_hello_init()
243 CBS_len(&cipher_suites) < 2 || (CBS_len(&cipher_suites) & 1) != 0 || in ssl_client_hello_init()
249 out->cipher_suites = CBS_data(&cipher_suites); in ssl_client_hello_init()
250 out->cipher_suites_len = CBS_len(&cipher_suites); in ssl_client_hello_init()
Dinternal.h665 const SSL_CIPHER *ssl_choose_tls13_cipher(CBS cipher_suites, uint16_t version,
/external/rust/crates/grpcio-sys/grpc/src/core/lib/security/security_connector/
Dssl_utils.cc66 static const char* cipher_suites = nullptr; variable
83 cipher_suites = value.release(); in init_cipher_suites()
90 return cipher_suites; in grpc_get_ssl_cipher_suites()
421 options.cipher_suites = grpc_get_ssl_cipher_suites(); in grpc_ssl_tsi_client_handshaker_factory_init()
454 options.cipher_suites = grpc_get_ssl_cipher_suites(); in grpc_ssl_tsi_server_handshaker_factory_init()
/external/rust/crates/grpcio-sys/grpc/src/core/lib/security/security_connector/ssl/
Dssl_security_connector.cc107 options.cipher_suites = grpc_get_ssl_cipher_suites(); in InitializeHandshakerFactory()
251 options.cipher_suites = grpc_get_ssl_cipher_suites(); in InitializeHandshakerFactory()
363 options.cipher_suites = grpc_get_ssl_cipher_suites(); in try_replace_server_handshaker_factory()
/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/rust/crates/quiche/deps/boringssl/src/include/openssl/
Dssl.h3811 const uint8_t *cipher_suites; member

12