Home
last modified time | relevance | path

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

/external/boringssl/src/ssl/
Dhandshake_server.cc201 CBS cipher_suites; in ssl_client_cipher_list_contains_cipher() local
202 CBS_init(&cipher_suites, client_hello->cipher_suites, in ssl_client_cipher_list_contains_cipher()
205 while (CBS_len(&cipher_suites) > 0) { in ssl_client_cipher_list_contains_cipher()
207 if (!CBS_get_u16(&cipher_suites, &got_id)) { in ssl_client_cipher_list_contains_cipher()
295 CBS cipher_suites; in ssl_parse_client_cipher_list() local
296 CBS_init(&cipher_suites, client_hello->cipher_suites, in ssl_parse_client_cipher_list()
305 while (CBS_len(&cipher_suites) > 0) { in ssl_parse_client_cipher_list()
308 if (!CBS_get_u16(&cipher_suites, &cipher_suite)) { in ssl_parse_client_cipher_list()
Ds3_both.cc353 CBB hello_body, cipher_suites; in read_v2_client_hello() local
363 !CBB_add_u16_length_prefixed(&hello_body, &cipher_suites)) { in read_v2_client_hello()
380 if (!CBB_add_u16(&cipher_suites, cipher_spec)) { in read_v2_client_hello()
Dtls13_server.cc111 CBS cipher_suites; in choose_tls13_cipher() local
112 CBS_init(&cipher_suites, client_hello->cipher_suites, in choose_tls13_cipher()
119 while (CBS_len(&cipher_suites) > 0) { in choose_tls13_cipher()
121 if (!CBS_get_u16(&cipher_suites, &cipher_suite)) { in choose_tls13_cipher()
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.h38 u16 cipher_suites[MAX_CIPHER_COUNT]; member
Dtlsv1_client_i.h46 u16 cipher_suites[MAX_CIPHER_COUNT]; member
Dtlsv1_server.c396 suites = conn->cipher_suites; in tlsv1_server_init()
667 suites = conn->cipher_suites; in tlsv1_server_set_cipher_list()
Dtlsv1_client.c461 suites = conn->cipher_suites; in tlsv1_client_init()
770 suites = conn->cipher_suites; in tlsv1_client_set_cipher_list()
Dtlsv1_server_read.c231 if (testing_cipher_suite_filter(conn, conn->cipher_suites[i])) in tls_process_client_hello()
237 if (!cipher_suite && tmp == conn->cipher_suites[i]) { in tls_process_client_hello()
Dtlsv1_client_write.c117 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/syslinux/gpxe/src/net/
Dtls.c623 uint16_t cipher_suites[2]; in tls_send_client_hello() member
634 hello.cipher_suite_len = htons ( sizeof ( hello.cipher_suites ) ); in tls_send_client_hello()
635 hello.cipher_suites[0] = htons ( TLS_RSA_WITH_AES_128_CBC_SHA ); in tls_send_client_hello()
636 hello.cipher_suites[1] = htons ( TLS_RSA_WITH_AES_256_CBC_SHA ); in tls_send_client_hello()
/external/boringssl/src/include/openssl/
Dssl.h3371 const uint8_t *cipher_suites; member