Lines Matching defs:group
221 /* Pick first available ECDHE group compatible with TLS 1.3 */
256 * NamedGroup group;
307 /* Pointer to group */
308 unsigned char *group = p;
313 * - group (2 bytes)
325 /* Write group */
326 MBEDTLS_PUT_UINT16_BE(group_id, group, 0);
328 MBEDTLS_PUT_UINT16_BE(key_exchange_len, group, 2);
399 * group which was provided in the "supported_groups" extension in the
426 * correspond to a group which was provided in the "key_share"
460 * NamedGroup group;
471 uint16_t group, offered_group;
474 * NamedGroup group; (2 bytes)
478 group = MBEDTLS_GET_UINT16_BE(p, 0);
481 /* Check that the chosen group matches the one we offered. */
483 if (offered_group != group) {
485 1, ("Invalid server key share, our group %u, their group %u",
486 (unsigned) offered_group, (unsigned) group));
493 if (mbedtls_ssl_tls13_named_group_is_ecdhe(group) ||
494 mbedtls_ssl_tls13_named_group_is_ffdh(group)) {
496 ("DHE group name: %s", mbedtls_ssl_named_group_to_str(group)));
1965 * We are going to re-generate a shared secret corresponding to the group
1966 * selected by the server, which is different from the group for which we