Searched refs:v2_client_hello (Results 1 – 1 of 1) sorted by relevance
/external/boringssl/src/ssl/ |
D | s3_both.cc | 371 CBS v2_client_hello = CBS(ssl->s3->read_buffer.span().subspan(2, msg_length)); in read_v2_client_hello() local 375 if (!ssl->s3->hs->transcript.Update(v2_client_hello)) { in read_v2_client_hello() 380 v2_client_hello); in read_v2_client_hello() 385 if (!CBS_get_u8(&v2_client_hello, &msg_type) || in read_v2_client_hello() 386 !CBS_get_u16(&v2_client_hello, &version) || in read_v2_client_hello() 387 !CBS_get_u16(&v2_client_hello, &cipher_spec_length) || in read_v2_client_hello() 388 !CBS_get_u16(&v2_client_hello, &session_id_length) || in read_v2_client_hello() 389 !CBS_get_u16(&v2_client_hello, &challenge_length) || in read_v2_client_hello() 390 !CBS_get_bytes(&v2_client_hello, &cipher_specs, cipher_spec_length) || in read_v2_client_hello() 391 !CBS_get_bytes(&v2_client_hello, &session_id, session_id_length) || in read_v2_client_hello() [all …]
|