OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CBS_get_bytes
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/boringssl/src/crypto/bytestring/
cbs.c
132
int
CBS_get_bytes
(CBS *cbs, CBS *out, size_t len) {
146
return
CBS_get_bytes
(cbs, out, len);
200
return
CBS_get_bytes
(cbs, out, 2);
228
return
CBS_get_bytes
(cbs, out, len);
/external/chromium_org/third_party/boringssl/src/ssl/
s23_srvr.c
438
!
CBS_get_bytes
(&v2_client_hello, &cipher_specs, cipher_spec_length) ||
439
!
CBS_get_bytes
(&v2_client_hello, &session_id, session_id_length) ||
440
!
CBS_get_bytes
(&v2_client_hello, &challenge, challenge_length) ||
s3_clnt.c
816
!
CBS_get_bytes
(&server_hello, &server_random, SSL3_RANDOM_SIZE) ||
[
all
...]
s3_srvr.c
807
!
CBS_get_bytes
(&client_hello, &client_random, SSL3_RANDOM_SIZE) ||
[
all
...]
/external/chromium_org/third_party/boringssl/src/include/openssl/
bytestring.h
98
/*
CBS_get_bytes
sets |*out| to the next |len| bytes from |cbs| and advances
100
OPENSSL_EXPORT int
CBS_get_bytes
(CBS *cbs, CBS *out, size_t len);
Completed in 30 milliseconds