HomeSort by relevance Sort by last modified time
    Searched refs:CBS_get_u16 (Results 1 - 17 of 17) sorted by null

  /external/boringssl/src/ssl/
s3_both.cc 607 !CBS_get_u16(&v2_client_hello, &version) ||
608 !CBS_get_u16(&v2_client_hello, &cipher_spec_length) ||
609 !CBS_get_u16(&v2_client_hello, &session_id_length) ||
610 !CBS_get_u16(&v2_client_hello, &challenge_length) ||
796 if (!CBS_get_u16(&copy, &type) ||
tls13_client.cc 61 if (!CBS_get_u16(&cbs, &server_version) ||
103 if (!CBS_get_u16(&key_share, &group_id) || CBS_len(&key_share) != 0) {
174 if (!CBS_get_u16(&cbs, &server_version) ||
178 !CBS_get_u16(&cbs, &cipher_suite) ||
t1_lib.cc 158 if (!CBS_get_u16(&extensions, &type) ||
182 if (!CBS_get_u16(&extensions, &extension_types[i]) ||
214 if (!CBS_get_u16(&client_hello, &out->version) ||
278 if (!CBS_get_u16(&extensions, &type) ||
    [all...]
tls_record.cc 219 !CBS_get_u16(&cbs, &version) ||
220 !CBS_get_u16(&cbs, &ciphertext_len)) {
dtls_record.cc 190 !CBS_get_u16(&cbs, &version) ||
ssl_versions.cc 357 if (!CBS_get_u16(&copy, &version)) {
handshake_client.cc 792 if (!CBS_get_u16(&hello_verify_request, &server_version) ||
819 if (!CBS_get_u16(&server_hello, out)) {
871 (!CBS_get_u16(&supported_versions, out) ||
947 !CBS_get_u16(&server_hello, &cipher_suite) ||
    [all...]
handshake_server.cc 458 if (!CBS_get_u16(&cipher_suites, &got_id)) {
558 if (!CBS_get_u16(&cipher_suites, &cipher_suite)) {
    [all...]
d1_both.cc 482 !CBS_get_u16(cbs, &out_hdr->seq) ||
ssl_asn1.cc 605 !CBS_get_u16(&cipher, &cipher_value) ||
tls13_both.cc 384 if (!CBS_get_u16(&cbs, &signature_algorithm) ||
tls13_server.cc 124 if (!CBS_get_u16(&cipher_suites, &cipher_suite)) {
ssl_test.cc     [all...]
  /external/boringssl/src/include/openssl/
bytestring.h 86 /* CBS_get_u16 sets |*out| to the next, big-endian uint16_t from |cbs| and
88 OPENSSL_EXPORT int CBS_get_u16(CBS *cbs, uint16_t *out);
  /external/boringssl/src/crypto/bytestring/
cbs.c 114 int CBS_get_u16(CBS *cbs, uint16_t *out) {
bytestring_test.cc 58 ASSERT_TRUE(CBS_get_u16(&data, &u16));
86 ASSERT_TRUE(CBS_get_u16(&prefixed, &u16));
  /external/boringssl/src/ssl/test/
fuzzer.h 64 if (!CBS_get_u16(cbs, &tag)) {

Completed in 242 milliseconds