Searched refs:CBS_get_bytes (Results 1 – 8 of 8) sorted by relevance
/external/boringssl/src/crypto/bytestring/ |
D | cbs.c | 140 int CBS_get_bytes(CBS *cbs, CBS *out, size_t len) { in CBS_get_bytes() function 163 return CBS_get_bytes(cbs, out, len); in cbs_get_length_prefixed() 229 return CBS_get_bytes(cbs, out, 2); in cbs_get_any_asn1_element() 263 return CBS_get_bytes(cbs, out, len); in cbs_get_any_asn1_element()
|
/external/boringssl/src/ssl/ |
D | s3_both.cc | 611 !CBS_get_bytes(&v2_client_hello, &cipher_specs, cipher_spec_length) || in read_v2_client_hello() 612 !CBS_get_bytes(&v2_client_hello, &session_id, session_id_length) || in read_v2_client_hello() 613 !CBS_get_bytes(&v2_client_hello, &challenge, challenge_length) || in read_v2_client_hello()
|
D | tls_record.cc | 253 if (!CBS_get_bytes(&cbs, &body, ciphertext_len)) { in tls_open_record()
|
D | d1_both.cc | 485 !CBS_get_bytes(cbs, out_body, out_hdr->frag_len)) { in dtls1_parse_fragment()
|
D | tls13_client.cc | 175 !CBS_get_bytes(&cbs, &server_random, SSL3_RANDOM_SIZE) || in do_process_server_hello()
|
D | handshake_client.cc | 944 !CBS_get_bytes(&server_hello, &server_random, SSL3_RANDOM_SIZE) || in ssl3_get_server_hello()
|
D | t1_lib.cc | 215 !CBS_get_bytes(&client_hello, &random, SSL3_RANDOM_SIZE) || in ssl_client_hello_init()
|
/external/boringssl/src/include/openssl/ |
D | bytestring.h | 104 OPENSSL_EXPORT int CBS_get_bytes(CBS *cbs, CBS *out, size_t len);
|