Searched refs:compression_methods (Results 1 – 3 of 3) sorted by relevance
/external/boringssl/src/ssl/ |
D | t1_lib.c | 250 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()
|
D | s3_srvr.c | 817 CBS client_random, session_id, cipher_suites, compression_methods; in ssl3_get_client_hello() local 993 !CBS_get_u8_length_prefixed(&client_hello, &compression_methods) || in ssl3_get_client_hello() 994 CBS_len(&compression_methods) == 0) { in ssl3_get_client_hello() 1030 if (memchr(CBS_data(&compression_methods), 0, in ssl3_get_client_hello() 1031 CBS_len(&compression_methods)) == NULL) { in ssl3_get_client_hello()
|
/external/boringssl/src/include/openssl/ |
D | ssl.h | 802 const uint8_t *compression_methods; member
|