leantls only supports secp256r1.

This commit is contained in:
Anthony Hu
2021-09-02 17:38:04 -04:00
parent 428fe29537
commit 26c7592d4b

View File

@ -43366,7 +43366,7 @@ static int test_tls13_apis(void)
int outSz; int outSz;
#endif #endif
#if defined(HAVE_ECC) && defined(HAVE_SUPPORTED_CURVES) #if defined(HAVE_ECC) && defined(HAVE_SUPPORTED_CURVES)
int groups[2] = { WOLFSSL_ECC_SECP256R1, WOLFSSL_ECC_SECP384R1 }; int groups[2] = { WOLFSSL_ECC_SECP256R1, WOLFSSL_ECC_SECP256R1 };
int bad_groups[2] = { 0xDEAD, 0xBEEF }; int bad_groups[2] = { 0xDEAD, 0xBEEF };
int numGroups = 2; int numGroups = 2;
#endif #endif