Searched refs:CBS_get_bytes (Results 1 – 8 of 8) sorted by relevance
/external/boringssl/src/crypto/bytestring/ |
D | cbs.c | 145 int CBS_get_bytes(CBS *cbs, CBS *out, size_t len) { in CBS_get_bytes() function 168 return CBS_get_bytes(cbs, out, len); in cbs_get_length_prefixed() 288 return CBS_get_bytes(cbs, out, header_len); in cbs_get_any_asn1_element() 321 return CBS_get_bytes(cbs, out, len); in cbs_get_any_asn1_element()
|
/external/boringssl/src/ssl/ |
D | s3_both.cc | 324 !CBS_get_bytes(&v2_client_hello, &cipher_specs, cipher_spec_length) || in read_v2_client_hello() 325 !CBS_get_bytes(&v2_client_hello, &session_id, session_id_length) || in read_v2_client_hello() 326 !CBS_get_bytes(&v2_client_hello, &challenge, challenge_length) || in read_v2_client_hello() 416 if (!CBS_get_bytes(&cbs, &out->body, len)) { in parse_message()
|
D | tls13_client.cc | 77 !CBS_get_bytes(&body, &server_random, SSL3_RANDOM_SIZE) || in do_read_hello_retry_request() 227 !CBS_get_bytes(&body, &server_random, SSL3_RANDOM_SIZE) || in do_read_server_hello()
|
D | tls_record.cc | 256 if (!CBS_get_bytes(&cbs, &body, ciphertext_len)) { in tls_open_record()
|
D | d1_both.cc | 468 !CBS_get_bytes(cbs, out_body, out_hdr->frag_len)) { in dtls1_parse_fragment()
|
D | handshake_client.cc | 620 !CBS_get_bytes(&server_hello, &server_random, SSL3_RANDOM_SIZE) || in do_read_server_hello()
|
D | t1_lib.cc | 212 !CBS_get_bytes(&client_hello, &random, SSL3_RANDOM_SIZE) || in ssl_client_hello_init()
|
/external/boringssl/src/include/openssl/ |
D | bytestring.h | 119 OPENSSL_EXPORT int CBS_get_bytes(CBS *cbs, CBS *out, size_t len);
|