Home | History | Annotate | Download | only in ssl

Lines Matching defs:supported_group_list

314   *out_group_ids = ssl->supported_group_list;
2445 CBS supported_group_list;
2446 if (!CBS_get_u16_length_prefixed(contents, &supported_group_list) ||
2447 CBS_len(&supported_group_list) == 0 ||
2448 (CBS_len(&supported_group_list) & 1) != 0 ||
2454 (uint16_t *)OPENSSL_malloc(CBS_len(&supported_group_list));
2460 const size_t num_groups = CBS_len(&supported_group_list) / 2;
2462 if (!CBS_get_u16(&supported_group_list,
2468 assert(CBS_len(&supported_group_list) == 0);