From b3c155b83c984116ef1828664bbe77c66f53df6b Mon Sep 17 00:00:00 2001 From: Tomas Mraz Date: Fri, 26 Feb 2021 13:05:39 +0100 Subject: [PATCH] evp_extra_test: Remove TODO comment as setting the curve is mandatory Even with the SM2 algorithm the curve is needed for the paramgen. Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/14367) --- test/evp_extra_test.c | 1 - 1 file changed, 1 deletion(-) diff --git a/test/evp_extra_test.c b/test/evp_extra_test.c index 33a8af717b..62840d0d19 100644 --- a/test/evp_extra_test.c +++ b/test/evp_extra_test.c @@ -1319,7 +1319,6 @@ static int test_EVP_SM2(void) if (!TEST_true(EVP_PKEY_paramgen_init(pctx) == 1)) goto done; - /* TODO is this even needed? */ if (!TEST_true(EVP_PKEY_CTX_set_ec_paramgen_curve_nid(pctx, NID_sm2))) goto done;