Searched refs:CBS_get_u16 (Results 1 – 19 of 19) sorted by relevance
/external/boringssl/src/ssl/ |
D | s3_both.cc | 320 !CBS_get_u16(&v2_client_hello, &version) || in read_v2_client_hello() 321 !CBS_get_u16(&v2_client_hello, &cipher_spec_length) || in read_v2_client_hello() 322 !CBS_get_u16(&v2_client_hello, &session_id_length) || in read_v2_client_hello() 323 !CBS_get_u16(&v2_client_hello, &challenge_length) || in read_v2_client_hello()
|
D | t1_lib.cc | 160 if (!CBS_get_u16(&extensions, &type) || in tls1_check_duplicate_extensions() 182 if (!CBS_get_u16(&extensions, &extension_types[i]) || in tls1_check_duplicate_extensions() 211 if (!CBS_get_u16(&client_hello, &out->version) || in ssl_client_hello_init() 275 if (!CBS_get_u16(&extensions, &type) || in ssl_client_hello_get_extension() 1620 !CBS_get_u16(&profile_ids, &profile_id) || in ext_srtp_parse_serverhello() 1678 if (!CBS_get_u16(&profile_ids_tmp, &profile_id)) { in ext_srtp_parse_clienthello() 1856 if (!CBS_get_u16(contents, &psk_id) || in ssl_ext_pre_shared_key_parse_serverhello() 2153 if (!CBS_get_u16(contents, &group_id) || in ssl_ext_key_share_parse_serverhello() 2200 if (!CBS_get_u16(&key_shares, &id) || in ssl_ext_key_share_parse_clienthello() 2405 if (!CBS_get_u16(©, &ret[i])) { in parse_u16_array() [all …]
|
D | tls13_client.cc | 76 if (!CBS_get_u16(&body, &server_version) || in do_read_hello_retry_request() 80 !CBS_get_u16(&body, &cipher_suite) || in do_read_hello_retry_request() 153 if (!CBS_get_u16(&key_share, &group_id) || CBS_len(&key_share) != 0) { in do_read_hello_retry_request() 226 if (!CBS_get_u16(&body, &server_version) || in do_read_server_hello() 230 !CBS_get_u16(&body, &cipher_suite) || in do_read_server_hello()
|
D | handshake_client.cc | 353 if (!CBS_get_u16(&server_hello, out)) { in parse_server_version() 404 (!CBS_get_u16(&supported_versions, out) || in parse_server_version() 536 if (!CBS_get_u16(&hello_verify_request, &server_version) || in do_read_hello_verify_request() 623 !CBS_get_u16(&server_hello, &cipher_suite) || in do_read_server_hello() 992 !CBS_get_u16(&server_key_exchange, &group_id) || in do_read_server_key_exchange() 1030 if (!CBS_get_u16(&server_key_exchange, &signature_algorithm)) { in do_read_server_key_exchange()
|
D | tls_record.cc | 226 !CBS_get_u16(&cbs, &version) || in tls_open_record() 227 !CBS_get_u16(&cbs, &ciphertext_len)) { in tls_open_record()
|
D | dtls_record.cc | 198 !CBS_get_u16(&cbs, &version) || in dtls_open_record()
|
D | ssl_versions.cc | 341 if (!CBS_get_u16(©, &version)) { in ssl_negotiate_version()
|
D | handshake_server.cc | 207 if (!CBS_get_u16(&cipher_suites, &got_id)) { in ssl_client_cipher_list_contains_cipher() 308 if (!CBS_get_u16(&cipher_suites, &cipher_suite)) { in ssl_parse_client_cipher_list() 1294 if (!CBS_get_u16(&certificate_verify, &signature_algorithm)) { in do_read_client_certificate_verify()
|
D | handshake.cc | 237 if (!CBS_get_u16(©, &type) || in ssl_parse_extensions()
|
D | tls13_both.cc | 285 if (!CBS_get_u16(&body, &signature_algorithm) || in tls13_process_certificate_verify()
|
D | d1_both.cc | 465 !CBS_get_u16(cbs, &out_hdr->seq) || in dtls1_parse_fragment()
|
D | ssl_asn1.cc | 556 !CBS_get_u16(&cipher, &cipher_value) || in SSL_SESSION_parse()
|
D | tls13_server.cc | 121 if (!CBS_get_u16(&cipher_suites, &cipher_suite)) { in choose_tls13_cipher()
|
D | ssl_test.cc | 2964 ASSERT_TRUE(CBS_get_u16(&cbs, &record_version)); in TEST_P() 2968 ASSERT_TRUE(CBS_get_u16(&cbs, &epoch)); in TEST_P() 2972 ASSERT_TRUE(CBS_get_u16(&cbs, &length)); in TEST_P()
|
/external/boringssl/src/include/openssl/ |
D | bytestring.h | 103 OPENSSL_EXPORT int CBS_get_u16(CBS *cbs, uint16_t *out);
|
/external/boringssl/src/ssl/test/ |
D | fuzzer.h | 402 if (!CBS_get_u16(cbs, &tag)) { in SetupTest()
|
/external/boringssl/src/crypto/bytestring/ |
D | cbs.c | 119 int CBS_get_u16(CBS *cbs, uint16_t *out) { in CBS_get_u16() function
|
D | bytestring_test.cc | 58 ASSERT_TRUE(CBS_get_u16(&data, &u16)); in TEST() 86 ASSERT_TRUE(CBS_get_u16(&prefixed, &u16)); in TEST()
|
/external/boringssl/src/ |
D | STYLE.md | 163 OPENSSL_EXPORT int CBS_get_u16(CBS *cbs, uint16_t *out);
|