Lines Matching refs:group_list
768 const uint16_t *group_list;
2239 * In future, invocations can be changed to ssl->conf->group_list
2242 * ssl->handshake->group_list is either a translation of curve_list to IANA TLS group
2244 * ssl->conf->group_list when mbedtls_ssl_conf_groups() has been more recently invoked.
2250 return ssl->MBEDTLS_PRIVATE(conf)->MBEDTLS_PRIVATE(group_list);
2252 if ((ssl->MBEDTLS_PRIVATE(handshake) != NULL) && (ssl->MBEDTLS_PRIVATE(handshake)->group_list != NULL)) {
2253 return ssl->MBEDTLS_PRIVATE(handshake)->group_list;
2255 return ssl->MBEDTLS_PRIVATE(conf)->MBEDTLS_PRIVATE(group_list);
2302 const uint16_t *group_list = mbedtls_ssl_get_groups(ssl);
2304 if (group_list == NULL) {
2308 for (; *group_list != 0; group_list++) {
2309 if (*group_list == named_group) {