Searched refs:cipher_suites (Results 1 – 4 of 4) sorted by relevance
/openbsd/lib/libssl/ |
H A D | tls13_server.c | 147 CBS cipher_suites, client_random, compression_methods, session_id; in tls13_client_hello_process() local 161 if (!CBS_get_u16_length_prefixed(cbs, &cipher_suites)) in tls13_client_hello_process() 204 if (!tls13_clienthello_hash_update(ctx, &cipher_suites)) { in tls13_client_hello_process() 265 if ((ciphers = ssl_bytes_to_cipher_list(s, &cipher_suites)) == NULL) { in tls13_client_hello_process()
|
H A D | tls13_client.c | 90 CBB cipher_suites, compression_methods, session_id; in tls13_client_hello_build() local 109 if (!CBB_add_u16_length_prefixed(cbb, &cipher_suites)) in tls13_client_hello_build() 111 if (!ssl_cipher_list_to_bytes(s, SSL_get_ciphers(s), &cipher_suites)) { in tls13_client_hello_build()
|
H A D | ssl_srvr.c | 778 CBS cbs, client_random, session_id, cookie, cipher_suites; in ssl3_get_client_hello() local 829 if (!CBS_get_u16_length_prefixed(&cbs, &cipher_suites)) in ssl3_get_client_hello() 963 if (CBS_len(&cipher_suites) == 0 && CBS_len(&session_id) != 0) { in ssl3_get_client_hello() 970 if (CBS_len(&cipher_suites) > 0) { in ssl3_get_client_hello() 972 &cipher_suites)) == NULL) in ssl3_get_client_hello() 978 if (s->hit && CBS_len(&cipher_suites) > 0) { in ssl3_get_client_hello()
|
H A D | ssl_clnt.c | 644 CBB cbb, client_hello, session_id, cookie, cipher_suites; in ssl3_send_client_hello() local 717 if (!CBB_add_u16_length_prefixed(&client_hello, &cipher_suites)) in ssl3_send_client_hello() 720 &cipher_suites)) { in ssl3_send_client_hello()
|