Home
last modified time | relevance | path

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

/external/chromium_org/third_party/boringssl/src/ssl/
Ds23_srvr.c401 CBB client_hello, hello_body, cipher_suites; in ssl23_get_v2_client_hello() local
457 if (!CBB_init_fixed(&client_hello, (uint8_t *)s->init_buf->data, s->init_buf->max)) in ssl23_get_v2_client_hello()
462 if (!CBB_add_u8(&client_hello, SSL3_MT_CLIENT_HELLO) || in ssl23_get_v2_client_hello()
463 !CBB_add_u24_length_prefixed(&client_hello, &hello_body) || in ssl23_get_v2_client_hello()
470 CBB_cleanup(&client_hello); in ssl23_get_v2_client_hello()
481 CBB_cleanup(&client_hello); in ssl23_get_v2_client_hello()
491 CBB_cleanup(&client_hello); in ssl23_get_v2_client_hello()
500 !CBB_finish(&client_hello, NULL, &len)) in ssl23_get_v2_client_hello()
502 CBB_cleanup(&client_hello); in ssl23_get_v2_client_hello()
Ds3_srvr.c714 CBS client_hello; in ssl3_get_client_hello() local
748 CBS_init(&client_hello, s->init_msg, n); in ssl3_get_client_hello()
749 if (!CBS_skip(&client_hello, 2 + SSL3_RANDOM_SIZE) || in ssl3_get_client_hello()
750 !CBS_get_u8_length_prefixed(&client_hello, &session_id) || in ssl3_get_client_hello()
751 !CBS_get_u8(&client_hello, &cookie_length)) in ssl3_get_client_hello()
772 early_ctx.client_hello = s->init_msg; in ssl3_get_client_hello()
805 CBS_init(&client_hello, s->init_msg, n); in ssl3_get_client_hello()
806 if (!CBS_get_u16(&client_hello, &client_version) || in ssl3_get_client_hello()
807 !CBS_get_bytes(&client_hello, &client_random, SSL3_RANDOM_SIZE) || in ssl3_get_client_hello()
808 !CBS_get_u8_length_prefixed(&client_hello, &session_id) || in ssl3_get_client_hello()
[all …]
Dt1_lib.c275 CBS client_hello, session_id, cipher_suites, compression_methods, extensions; in ssl_early_callback_init() local
277 CBS_init(&client_hello, ctx->client_hello, ctx->client_hello_len); in ssl_early_callback_init()
280 if (!CBS_skip(&client_hello, 2)) in ssl_early_callback_init()
284 if (!CBS_skip(&client_hello, 32)) in ssl_early_callback_init()
288 if (!CBS_get_u8_length_prefixed(&client_hello, &session_id)) in ssl_early_callback_init()
298 if (!CBS_get_u8_length_prefixed(&client_hello, &cookie)) in ssl_early_callback_init()
303 if (!CBS_get_u16_length_prefixed(&client_hello, &cipher_suites) || in ssl_early_callback_init()
311 if (!CBS_get_u8_length_prefixed(&client_hello, &compression_methods) || in ssl_early_callback_init()
319 if (CBS_len(&client_hello) == 0) in ssl_early_callback_init()
327 if (!CBS_get_u16_length_prefixed(&client_hello, &extensions) || in ssl_early_callback_init()
[all …]
/external/chromium_org/net/quic/crypto/
Dquic_crypto_server_config.cc96 : client_hello(in_client_hello), in Result()
101 CryptoHandshakeMessage client_hello; member
215 RunImpl(result->client_hello, *result); in Run()
485 const CryptoHandshakeMessage& client_hello, in ValidateClientHello() argument
493 client_hello, client_ip, now); in ValidateClientHello()
496 client_hello.GetStringPiece(kSCID, &requested_scid); in ValidateClientHello()
540 const CryptoHandshakeMessage& client_hello = in ProcessClientHello() local
541 validate_chlo_result.client_hello; in ProcessClientHello()
549 if (client_hello.GetUint32(kVER, &client_version_tag) != QUIC_NO_ERROR) { in ProcessClientHello()
567 client_hello.GetStringPiece(kSCID, &requested_scid); in ProcessClientHello()
[all …]
Dquic_crypto_server_config.h68 virtual void RunImpl(const CryptoHandshakeMessage& client_hello,
173 const CryptoHandshakeMessage& client_hello,
387 const CryptoHandshakeMessage& client_hello,
Dcrypto_server_test.cc112 CryptoHandshakeMessage client_hello = CryptoTestUtils::Message( in SetUp() local
121 ShouldSucceed(client_hello); in SetUp()
158 virtual void RunImpl(const CryptoHandshakeMessage& client_hello, in RunImpl() argument
171 client_hello, result, should_succeed_, error_substr_); in RunImpl()
/external/chromium_org/net/quic/
Dquic_crypto_server_stream.cc248 const CryptoHandshakeMessage& client_hello, in RunImpl() argument
251 parent_->FinishProcessingHandshakeMessage(client_hello, result); in RunImpl()
Dquic_crypto_server_stream.h105 virtual void RunImpl(const CryptoHandshakeMessage& client_hello,
/external/chromium_org/third_party/tlslite/tlslite/
Dtlsrecordlayer.py734 if subType == HandshakeType.client_hello:
769 if subType != HandshakeType.client_hello:
774 if HandshakeType.client_hello not in secondaryType:
778 subType = HandshakeType.client_hello
792 if subType == HandshakeType.client_hello:
Dconstants.py28 client_hello = 1 variable in HandshakeType
Dmessages.py103 HandshakeMsg.__init__(self, HandshakeType.client_hello)
Dtlsconnection.py1398 HandshakeType.client_hello):
/external/chromium_org/net/third_party/nss/ssl/
Dssl3prot.h121 client_hello = 1, enumerator
Dssl3con.c584 case client_hello: rv = "client_hello (1)"; break; in ssl3_DecodeHandshakeType()
5302 rv = ssl3_AppendHandshakeHeader(ss, client_hello, length); in ssl3_SendClientHello()
11386 if (ss->ssl3.hs.msg_type == client_hello) { in ssl3_HandleHandshakeMessage()
11457 case client_hello: in ssl3_HandleHandshakeMessage()
/external/openssl/ssl/
Ds2_clnt.c124 static int client_hello(SSL *s);
208 ret=client_hello(s); in IMPLEMENT_ssl2_meth_func()
545 static int client_hello(SSL *s) in client_hello() function
/external/chromium_org/net/third_party/nss/patches/
Dnssrwlock.patch33 rv = ssl3_AppendHandshakeHeader(ss, client_hello, length);
/external/chromium_org/third_party/boringssl/src/include/openssl/
Dssl.h720 const unsigned char *client_hello; size_t client_hello_len; member