• Home
  • Raw
  • Download

Lines Matching refs:client_hello

215   out->client_hello = CBS_data(&msg.body);  in ssl_client_hello_init()
218 CBS client_hello, random, session_id; in ssl_client_hello_init() local
219 CBS_init(&client_hello, out->client_hello, out->client_hello_len); in ssl_client_hello_init()
220 if (!CBS_get_u16(&client_hello, &out->version) || in ssl_client_hello_init()
221 !CBS_get_bytes(&client_hello, &random, SSL3_RANDOM_SIZE) || in ssl_client_hello_init()
222 !CBS_get_u8_length_prefixed(&client_hello, &session_id) || in ssl_client_hello_init()
235 if (!CBS_get_u8_length_prefixed(&client_hello, &cookie) || in ssl_client_hello_init()
242 if (!CBS_get_u16_length_prefixed(&client_hello, &cipher_suites) || in ssl_client_hello_init()
244 !CBS_get_u8_length_prefixed(&client_hello, &compression_methods) || in ssl_client_hello_init()
256 if (CBS_len(&client_hello) == 0) { in ssl_client_hello_init()
264 if (!CBS_get_u16_length_prefixed(&client_hello, &extensions) || in ssl_client_hello_init()
266 CBS_len(&client_hello) != 0) { in ssl_client_hello_init()
276 bool ssl_client_hello_get_extension(const SSL_CLIENT_HELLO *client_hello, in ssl_client_hello_get_extension() argument
279 CBS_init(&extensions, client_hello->extensions, client_hello->extensions_len); in ssl_client_hello_get_extension()
1531 const SSL_CLIENT_HELLO *client_hello) { in ssl_negotiate_alpn() argument
1536 client_hello, &contents, in ssl_negotiate_alpn()
2000 const SSL_CLIENT_HELLO *client_hello, CBS *contents) { in ssl_ext_pre_shared_key_parse_clienthello() argument
2004 client_hello->extensions + client_hello->extensions_len) { in ssl_ext_pre_shared_key_parse_clienthello()
3186 const SSL_CLIENT_HELLO *client_hello) { in ssl_negotiate_alps() argument
3198 ssl_client_hello_get_extension(client_hello, &alps_contents, in ssl_negotiate_alps()
3641 const SSL_CLIENT_HELLO *client_hello, in ssl_scan_clienthello_tlsext() argument
3651 CBS_init(&extensions, client_hello->extensions, client_hello->extensions_len); in ssl_scan_clienthello_tlsext()
3688 ssl_client_cipher_list_contains_cipher(client_hello, in ssl_scan_clienthello_tlsext()
3713 const SSL_CLIENT_HELLO *client_hello) { in ssl_parse_clienthello_tlsext() argument
3716 if (!ssl_scan_clienthello_tlsext(hs, client_hello, &alert)) { in ssl_parse_clienthello_tlsext()
4386 int SSL_early_callback_ctx_extension_get(const SSL_CLIENT_HELLO *client_hello, in SSL_early_callback_ctx_extension_get() argument
4391 if (!ssl_client_hello_get_extension(client_hello, &cbs, extension_type)) { in SSL_early_callback_ctx_extension_get()