OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cbs_get_bytes
(Results
1 - 8
of
8
) sorted by null
/external/boringssl/src/crypto/bytestring/
cbs.c
140
int
CBS_get_bytes
(CBS *cbs, CBS *out, size_t len) {
163
return
CBS_get_bytes
(cbs, out, len);
229
return
CBS_get_bytes
(cbs, out, 2);
263
return
CBS_get_bytes
(cbs, out, len);
/external/boringssl/src/ssl/
s3_both.c
599
!
CBS_get_bytes
(&v2_client_hello, &cipher_specs, cipher_spec_length) ||
600
!
CBS_get_bytes
(&v2_client_hello, &session_id, session_id_length) ||
601
!
CBS_get_bytes
(&v2_client_hello, &challenge, challenge_length) ||
tls13_client.c
171
!
CBS_get_bytes
(&cbs, &server_random, SSL3_RANDOM_SIZE) ||
tls_record.c
249
if (!
CBS_get_bytes
(&cbs, &body, ciphertext_len)) {
d1_both.c
485
!
CBS_get_bytes
(cbs, out_body, out_hdr->frag_len)) {
handshake_client.c
911
if (!
CBS_get_bytes
(&server_hello, &server_random, SSL3_RANDOM_SIZE) ||
[
all
...]
t1_lib.c
215
!
CBS_get_bytes
(&client_hello, &random, SSL3_RANDOM_SIZE) ||
[
all
...]
/external/boringssl/src/include/openssl/
bytestring.h
102
/*
CBS_get_bytes
sets |*out| to the next |len| bytes from |cbs| and advances
104
OPENSSL_EXPORT int
CBS_get_bytes
(CBS *cbs, CBS *out, size_t len);
Completed in 479 milliseconds