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

  /external/boringssl/src/ssl/
s3_both.c 595 !CBS_get_u16(&v2_client_hello, &version) ||
596 !CBS_get_u16(&v2_client_hello, &cipher_spec_length) ||
597 !CBS_get_u16(&v2_client_hello, &session_id_length) ||
598 !CBS_get_u16(&v2_client_hello, &challenge_length) ||
786 if (!CBS_get_u16(&copy, &type) ||
tls13_client.c 60 if (!CBS_get_u16(&cbs, &server_wire_version) ||
102 if (!CBS_get_u16(&key_share, &group_id) || CBS_len(&key_share) != 0) {
170 if (!CBS_get_u16(&cbs, &server_wire_version) ||
172 !CBS_get_u16(&cbs, &cipher_suite) ||
tls_record.c 215 !CBS_get_u16(&cbs, &version) ||
216 !CBS_get_u16(&cbs, &ciphertext_len)) {
t1_lib.c 159 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...]
dtls_record.c 190 !CBS_get_u16(&cbs, &version) ||
handshake_client.c 810 if (!CBS_get_u16(&hello_verify_request, &server_version) ||
866 if (!CBS_get_u16(&server_hello, &server_wire_version)) {
914 !CBS_get_u16(&server_hello, &cipher_suite) ||
    [all...]
handshake_server.c 526 if (!CBS_get_u16(&cipher_suites, &got_id)) {
568 if (!CBS_get_u16(&versions, &ext_version)) {
661 if (!CBS_get_u16(&cipher_suites, &cipher_suite)) {
    [all...]
d1_both.c 482 !CBS_get_u16(cbs, &out_hdr->seq) ||
ssl_asn1.c 594 !CBS_get_u16(&cipher, &cipher_value) ||
tls13_both.c 373 if (!CBS_get_u16(&cbs, &signature_algorithm) ||
tls13_server.c 109 if (!CBS_get_u16(&cipher_suites, &cipher_suite)) {
  /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 55 CBS_get_u16(&data, &u16) &&
81 CBS_get_u16(&prefixed, &u16) &&

Completed in 127 milliseconds