Home
last modified time | relevance | path

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

/openbsd/lib/libssl/
H A Dssl_packet.c73 CBB cbb, handshake, client_hello, cipher_suites, compression, session_id; in ssl_convert_sslv2_client_hello() local
195 if (!CBB_add_u16_length_prefixed(&client_hello, &cipher_suites)) in ssl_convert_sslv2_client_hello()
202 if (!CBB_add_u16(&cipher_suites, cipher_spec & 0xffff)) in ssl_convert_sslv2_client_hello()
H A Dtls13_server.c147 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 Dssl_srvr.c777 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 Dtls13_client.c90 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 Dssl_clnt.c644 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()