/external/rust/crates/grpcio-sys/grpc/src/core/tsi/ |
D | ssl_transport_security.h | 122 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()
|
D | ssl_transport_security.cc | 1884 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/ |
D | ssl_transport_security.h | 110 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
|
D | ssl_transport_security.cc | 1623 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/ |
D | s3_both.cc | 421 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()
|
D | handshake_server.cc | 176 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()
|
D | tls13_server.cc | 90 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()
|
D | t1_lib.cc | 236 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()
|
D | internal.h | 660 const SSL_CIPHER *ssl_choose_tls13_cipher(CBS cipher_suites, uint16_t version,
|
/external/boringssl/src/ssl/ |
D | s3_both.cc | 421 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()
|
D | handshake_server.cc | 176 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()
|
D | tls13_server.cc | 90 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()
|
D | t1_lib.cc | 241 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()
|
D | internal.h | 665 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/ |
D | ssl_utils.cc | 66 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/ |
D | ssl_security_connector.cc | 107 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/ |
D | tlsv1_server_i.h | 40 u16 cipher_suites[MAX_CIPHER_COUNT]; member
|
D | tlsv1_client_i.h | 46 u16 cipher_suites[MAX_CIPHER_COUNT]; member
|
D | tlsv1_server.c | 399 suites = conn->cipher_suites; in tlsv1_server_init() 694 suites = conn->cipher_suites; in tlsv1_server_set_cipher_list()
|
D | tlsv1_client.c | 461 suites = conn->cipher_suites; in tlsv1_client_init() 794 suites = conn->cipher_suites; in tlsv1_client_set_cipher_list()
|
D | tlsv1_server_read.c | 253 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()
|
D | tlsv1_client_write.c | 120 WPA_PUT_BE16(pos, conn->cipher_suites[i]); in tls_send_client_hello()
|
D | tlsv1_client_read.c | 175 if (cipher_suite == conn->cipher_suites[i]) in tls_process_server_hello()
|
/external/grpc-grpc/src/core/lib/security/security_connector/ |
D | security_connector.cc | 89 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/ |
D | ssl.h | 3811 const uint8_t *cipher_suites; member
|