Searched refs:CBS_get_u8_length_prefixed (Results 1 – 9 of 9) sorted by relevance
/external/boringssl/src/ssl/ |
D | t1_lib.cc | 213 !CBS_get_u8_length_prefixed(&client_hello, &session_id) || in ssl_client_hello_init() 226 if (!CBS_get_u8_length_prefixed(&client_hello, &cookie) || in ssl_client_hello_init() 235 !CBS_get_u8_length_prefixed(&client_hello, &compression_methods) || in ssl_client_hello_init() 728 if (!CBS_get_u8_length_prefixed(contents, &renegotiated_connection) || in ext_ri_parse_serverhello() 786 if (!CBS_get_u8_length_prefixed(contents, &renegotiated_connection) || in ext_ri_parse_clienthello() 1158 if (!CBS_get_u8_length_prefixed(contents, &proto) || in ext_npn_parse_serverhello() 1369 !CBS_get_u8_length_prefixed(&protocol_name_list, &protocol_name) || in ext_alpn_parse_serverhello() 1405 if (!CBS_get_u8_length_prefixed(&client_protocol_name_list, in ssl_is_alpn_protocol_allowed() 1447 if (!CBS_get_u8_length_prefixed(&protocol_name_list_copy, &protocol_name) || in ssl_negotiate_alpn() 1622 !CBS_get_u8_length_prefixed(contents, &srtp_mki) || in ext_srtp_parse_serverhello() [all …]
|
D | tls13_client.cc | 78 !CBS_get_u8_length_prefixed(&body, &session_id) || in do_read_hello_retry_request() 228 !CBS_get_u8_length_prefixed(&body, &session_id) || in do_read_server_hello() 486 if (!CBS_get_u8_length_prefixed(&body, &context) || in do_read_certificate_request() 834 !CBS_get_u8_length_prefixed(&body, &ticket_nonce) || in tls13_process_new_session_ticket()
|
D | handshake_server.cc | 226 if (!CBS_get_u8_length_prefixed(&supported_versions, &versions) || in negotiate_version() 1182 if (!CBS_get_u8_length_prefixed(&client_key_exchange, &peer_key) || in do_read_client_key_exchange() 1398 if (!CBS_get_u8_length_prefixed(&next_protocol, &selected_protocol) || in do_read_next_proto() 1399 !CBS_get_u8_length_prefixed(&next_protocol, &padding) || in do_read_next_proto()
|
D | handshake_client.cc | 537 !CBS_get_u8_length_prefixed(&hello_verify_request, &cookie) || in do_read_hello_verify_request() 621 !CBS_get_u8_length_prefixed(&server_hello, &session_id) || in do_read_server_hello() 993 !CBS_get_u8_length_prefixed(&server_key_exchange, &point)) { in do_read_server_key_exchange() 1129 if (!CBS_get_u8_length_prefixed(&body, &certificate_types)) { in do_read_certificate_request()
|
D | tls13_both.cc | 109 if (!CBS_get_u8_length_prefixed(&body, &context) || in tls13_process_certificate()
|
D | tls13_enc.cc | 474 !CBS_get_u8_length_prefixed(binders, &binder)) { in tls13_verify_psk_binder()
|
/external/boringssl/src/include/openssl/ |
D | bytestring.h | 128 OPENSSL_EXPORT int CBS_get_u8_length_prefixed(CBS *cbs, CBS *out);
|
/external/boringssl/src/crypto/bytestring/ |
D | cbs.c | 171 int CBS_get_u8_length_prefixed(CBS *cbs, CBS *out) { in CBS_get_u8_length_prefixed() function
|
D | bytestring_test.cc | 80 ASSERT_TRUE(CBS_get_u8_length_prefixed(&data, &prefixed)); in TEST() 101 EXPECT_FALSE(CBS_get_u8_length_prefixed(&data, &prefixed)); in TEST()
|