Searched defs:client_hello (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/net/quic/
H A Dquic_crypto_server_stream.cc248 const CryptoHandshakeMessage& client_hello,
251 parent_->FinishProcessingHandshakeMessage(client_hello, result);
247 RunImpl( const CryptoHandshakeMessage& client_hello, const Result& result) argument
/external/chromium_org/third_party/boringssl/src/ssl/
H A Ds23_srvr.c356 * client_hello to negotiate the version. However, this
401 CBB client_hello, hello_body, cipher_suites; local
457 if (!CBB_init_fixed(&client_hello, (uint8_t *)s->init_buf->data, s->init_buf->max))
462 if (!CBB_add_u8(&client_hello, SSL3_MT_CLIENT_HELLO) ||
463 !CBB_add_u24_length_prefixed(&client_hello, &hello_body) ||
470 CBB_cleanup(&client_hello);
481 CBB_cleanup(&client_hello);
491 CBB_cleanup(&client_hello);
500 !CBB_finish(&client_hello, NULL, &len))
502 CBB_cleanup(&client_hello);
[all...]
H A Ds3_srvr.c714 CBS client_hello; local
748 CBS_init(&client_hello, s->init_msg, n);
749 if (!CBS_skip(&client_hello, 2 + SSL3_RANDOM_SIZE) ||
750 !CBS_get_u8_length_prefixed(&client_hello, &session_id) ||
751 !CBS_get_u8(&client_hello, &cookie_length))
772 early_ctx.client_hello = s->init_msg;
805 CBS_init(&client_hello, s->init_msg, n);
806 if (!CBS_get_u16(&client_hello, &client_version) ||
807 !CBS_get_bytes(&client_hello, &client_random, SSL3_RANDOM_SIZE) ||
808 !CBS_get_u8_length_prefixed(&client_hello,
[all...]
H A Dt1_lib.c275 CBS client_hello, session_id, cipher_suites, compression_methods, extensions; local
277 CBS_init(&client_hello, ctx->client_hello, ctx->client_hello_len);
280 if (!CBS_skip(&client_hello, 2))
284 if (!CBS_skip(&client_hello, 32))
288 if (!CBS_get_u8_length_prefixed(&client_hello, &session_id))
298 if (!CBS_get_u8_length_prefixed(&client_hello, &cookie))
303 if (!CBS_get_u16_length_prefixed(&client_hello, &cipher_suites) ||
311 if (!CBS_get_u8_length_prefixed(&client_hello, &compression_methods) ||
319 if (CBS_len(&client_hello)
[all...]
/external/openssl/ssl/
H A Ds2_clnt.c124 static int client_hello(SSL *s);
208 ret=client_hello(s);
545 static int client_hello(SSL *s) function
/external/chromium_org/net/quic/crypto/
H A Dcrypto_server_test.cc112 CryptoHandshakeMessage client_hello = CryptoTestUtils::Message( local
121 ShouldSucceed(client_hello);
158 virtual void RunImpl(const CryptoHandshakeMessage& client_hello,
171 client_hello, result, should_succeed_, error_substr_);
H A Dquic_crypto_server_config.cc96 : client_hello(in_client_hello),
101 CryptoHandshakeMessage client_hello; member in struct:net::ValidateClientHelloResultCallback::Result
215 RunImpl(result->client_hello, *result);
485 const CryptoHandshakeMessage& client_hello,
493 client_hello, client_ip, now);
496 client_hello.GetStringPiece(kSCID, &requested_scid);
540 const CryptoHandshakeMessage& client_hello = local
541 validate_chlo_result.client_hello;
549 if (client_hello.GetUint32(kVER, &client_version_tag) != QUIC_NO_ERROR) {
567 client_hello
484 ValidateClientHello( const CryptoHandshakeMessage& client_hello, IPEndPoint client_ip, const QuicClock* clock, ValidateClientHelloResultCallback* done_cb) const argument
915 const CryptoHandshakeMessage& client_hello = local
1079 BuildRejection( const Config& config, const CryptoHandshakeMessage& client_hello, const ClientHelloInfo& info, QuicRandom* rand, QuicCryptoNegotiatedParameters *params, CryptoHandshakeMessage* out) const argument
[all...]
/external/chromium_org/third_party/tlslite/tlslite/
H A Dconstants.py28 client_hello = 1 variable in class:HandshakeType
/external/chromium_org/net/third_party/nss/ssl/
H A Dssl3prot.h121 client_hello = 1, enumerator in enum:__anon9666
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dssl.h720 const unsigned char *client_hello; size_t client_hello_len; member in struct:ssl_early_callback_ctx

Completed in 721 milliseconds