Lines Matching refs:group_list
226 const uint16_t *group_list = mbedtls_ssl_get_groups(ssl); in ssl_write_supported_groups_ext() local
242 if (group_list == NULL) { in ssl_write_supported_groups_ext()
246 for (; *group_list != 0; group_list++) { in ssl_write_supported_groups_ext()
249 MBEDTLS_SSL_DEBUG_MSG(3, ("got supported group(%04x)", *group_list)); in ssl_write_supported_groups_ext()
254 if (mbedtls_ssl_tls13_named_group_is_ecdhe(*group_list) && in ssl_write_supported_groups_ext()
255 (mbedtls_ssl_get_ecp_group_id_from_tls_id(*group_list) != in ssl_write_supported_groups_ext()
261 if (mbedtls_ssl_tls13_named_group_is_ffdh(*group_list)) { in ssl_write_supported_groups_ext()
270 mbedtls_ssl_tls12_named_group_is_ecdhe(*group_list) && in ssl_write_supported_groups_ext()
271 (mbedtls_ssl_get_ecp_group_id_from_tls_id(*group_list) != in ssl_write_supported_groups_ext()
279 MBEDTLS_PUT_UINT16_BE(*group_list, p, 0); in ssl_write_supported_groups_ext()
282 mbedtls_ssl_named_group_to_str(*group_list), in ssl_write_supported_groups_ext()
283 *group_list)); in ssl_write_supported_groups_ext()