Home | History | Annotate | Download | only in ssl

Lines Matching defs:cipher_suites

275 	CBS client_hello, session_id, cipher_suites, compression_methods, extensions;
302 /* Extract cipher_suites. */
303 if (!CBS_get_u16_length_prefixed(&client_hello, &cipher_suites) ||
304 CBS_len(&cipher_suites) < 2 ||
305 (CBS_len(&cipher_suites) & 1) != 0)
307 ctx->cipher_suites = CBS_data(&cipher_suites);
308 ctx->cipher_suites_len = CBS_len(&cipher_suites);