Temporary workaround for ectest.c for [extended tests]
authorNicola Tuveri <nic.tuv@gmail.com>
Sun, 28 Jul 2019 13:13:30 +0000 (16:13 +0300)
committerNicola Tuveri <nic.tuv@gmail.com>
Wed, 31 Jul 2019 11:41:44 +0000 (14:41 +0300)
[extended tests]

This is a temporary workaround for issue #9251, which contains a full
discussion of the real problem.

As a temporary workaround, we test `EC_GROUP_new_from_ecparameters()`
against a curve that does not currently have alternative
implementations.

The proper fix is dependant on resolution of issue #8615

Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/9474)

test/ectest.c

index 50f8c63f0a16e06fa592ab347cde3475ee55f860..43ac905a64951df647781d956489c3bccff24461 100644 (file)
@@ -1820,7 +1820,7 @@ static int parameter_test(void)
     unsigned char *buf = NULL;
     int r = 0, len;
 
-    if (!TEST_ptr(group = EC_GROUP_new_by_curve_name(NID_secp224r1))
+    if (!TEST_ptr(group = EC_GROUP_new_by_curve_name(NID_secp384r1))
         || !TEST_ptr(ecparameters = EC_GROUP_get_ecparameters(group, NULL))
         || !TEST_ptr(group2 = EC_GROUP_new_from_ecparameters(ecparameters))
         || !TEST_int_eq(EC_GROUP_cmp(group, group2, NULL), 0))