Home
last modified time | relevance | path

Searched refs:client_hello (Results 1 – 3 of 3) sorted by relevance

/external/boringssl/src/ssl/
Ds3_srvr.c647 CBB client_hello, hello_body, cipher_suites; in ssl3_get_v2_client_hello() local
712 CBB_zero(&client_hello); in ssl3_get_v2_client_hello()
713 if (!CBB_init_fixed(&client_hello, (uint8_t *)ssl->init_buf->data, in ssl3_get_v2_client_hello()
715 !CBB_add_u8(&client_hello, SSL3_MT_CLIENT_HELLO) || in ssl3_get_v2_client_hello()
716 !CBB_add_u24_length_prefixed(&client_hello, &hello_body) || in ssl3_get_v2_client_hello()
722 CBB_cleanup(&client_hello); in ssl3_get_v2_client_hello()
731 CBB_cleanup(&client_hello); in ssl3_get_v2_client_hello()
741 CBB_cleanup(&client_hello); in ssl3_get_v2_client_hello()
749 !CBB_finish(&client_hello, NULL, &len)) { in ssl3_get_v2_client_hello()
750 CBB_cleanup(&client_hello); in ssl3_get_v2_client_hello()
[all …]
Dt1_lib.c250 CBS client_hello, session_id, cipher_suites, compression_methods, extensions; in ssl_early_callback_init() local
252 CBS_init(&client_hello, ctx->client_hello, ctx->client_hello_len); in ssl_early_callback_init()
255 !CBS_skip(&client_hello, 2) || in ssl_early_callback_init()
257 !CBS_skip(&client_hello, 32) || in ssl_early_callback_init()
259 !CBS_get_u8_length_prefixed(&client_hello, &session_id)) { in ssl_early_callback_init()
270 if (!CBS_get_u8_length_prefixed(&client_hello, &cookie)) { in ssl_early_callback_init()
276 if (!CBS_get_u16_length_prefixed(&client_hello, &cipher_suites) || in ssl_early_callback_init()
284 if (!CBS_get_u8_length_prefixed(&client_hello, &compression_methods) || in ssl_early_callback_init()
293 if (CBS_len(&client_hello) == 0) { in ssl_early_callback_init()
300 if (!CBS_get_u16_length_prefixed(&client_hello, &extensions) || in ssl_early_callback_init()
[all …]
/external/boringssl/src/include/openssl/
Dssl.h2714 const uint8_t *client_hello; member