Home
last modified time | relevance | path

Searched refs:compression_methods (Results 1 – 3 of 3) sorted by relevance

/external/boringssl/src/ssl/
Dt1_lib.c250 CBS client_hello, session_id, cipher_suites, compression_methods, extensions; in ssl_early_callback_init() local
284 if (!CBS_get_u8_length_prefixed(&client_hello, &compression_methods) || in ssl_early_callback_init()
285 CBS_len(&compression_methods) < 1) { in ssl_early_callback_init()
288 ctx->compression_methods = CBS_data(&compression_methods); in ssl_early_callback_init()
289 ctx->compression_methods_len = CBS_len(&compression_methods); in ssl_early_callback_init()
Ds3_srvr.c776 CBS client_random, session_id, cipher_suites, compression_methods; in ssl3_get_client_hello() local
969 !CBS_get_u8_length_prefixed(&client_hello, &compression_methods) || in ssl3_get_client_hello()
970 CBS_len(&compression_methods) == 0) { in ssl3_get_client_hello()
1005 if (memchr(CBS_data(&compression_methods), 0, in ssl3_get_client_hello()
1006 CBS_len(&compression_methods)) == NULL) { in ssl3_get_client_hello()
/external/boringssl/src/include/openssl/
Dssl.h2720 const uint8_t *compression_methods; member