summaryrefslogtreecommitdiffstats
path: root/test/ectest.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2018-02-27 13:02:00 +0000
committerMatt Caswell <matt@openssl.org>2018-03-05 11:39:44 +0000
commitfe93b010e78ab60bc222cf4cbbf3cdfcbecffd91 (patch)
treeba828cb7b1a742f2b320d84343ee96f319a3884a /test/ectest.c
parent0e1d6ecf37ea33ad963249cdb5efebeb04299033 (diff)
Update tests for TLS Ed448
Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Kurt Roeckx <kurt@roeckx.be> (Merged from https://github.com/openssl/openssl/pull/5470)
Diffstat (limited to 'test/ectest.c')
-rw-r--r--test/ectest.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/ectest.c b/test/ectest.c
index 9341752897..e49920cec7 100644
--- a/test/ectest.c
+++ b/test/ectest.c
@@ -1152,12 +1152,6 @@ static int internal_curve_test_method(int n)
int r, nid = curves[n].nid;
EC_GROUP *group;
- /*
- * Skip for X25519 because low level operations such as EC_POINT_mul()
- * are not supported for this curve
- */
- if (nid == NID_X25519)
- return 1;
if (!TEST_ptr(group = EC_GROUP_new_by_curve_name(nid))) {
TEST_info("Curve %s failed\n", OBJ_nid2sn(nid));
return 0;