Home
last modified time | relevance | path

Searched refs:supported_group_list (Results 1 – 4 of 4) sorted by relevance

/external/boringssl/src/ssl/
Dssl_lib.cc636 OPENSSL_free(ctx->supported_group_list); in SSL_CTX_free()
699 if (ctx->supported_group_list) { in SSL_new()
700 ssl->supported_group_list = (uint16_t *)BUF_memdup( in SSL_new()
701 ctx->supported_group_list, ctx->supported_group_list_len * 2); in SSL_new()
702 if (!ssl->supported_group_list) { in SSL_new()
777 OPENSSL_free(ssl->supported_group_list); in SSL_free()
1780 return tls1_set_curves(&ctx->supported_group_list, in SSL_CTX_set1_curves()
1786 return tls1_set_curves(&ssl->supported_group_list, in SSL_set1_curves()
1792 return tls1_set_curves_list(&ctx->supported_group_list, in SSL_CTX_set1_curves_list()
1797 return tls1_set_curves_list(&ssl->supported_group_list, in SSL_set1_curves_list()
Dt1_lib.cc296 if (ssl->supported_group_list != nullptr) { in tls1_get_grouplist()
297 return MakeConstSpan(ssl->supported_group_list, in tls1_get_grouplist()
2423 CBS supported_group_list; in ext_supported_groups_parse_clienthello() local
2424 if (!CBS_get_u16_length_prefixed(contents, &supported_group_list) || in ext_supported_groups_parse_clienthello()
2425 CBS_len(&supported_group_list) == 0 || in ext_supported_groups_parse_clienthello()
2427 !parse_u16_array(&supported_group_list, &hs->peer_supported_group_list)) { in ext_supported_groups_parse_clienthello()
Dinternal.h2116 uint16_t *supported_group_list;
2599 uint16_t *supported_group_list; // our list
Dssl_test.cc499 EXPECT_EQ(t.expected[i], ctx->supported_group_list[i]); in TEST()