diff options
author | Matt Caswell <matt@openssl.org> | 2018-02-27 14:02:00 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2018-03-05 12:39:44 +0100 |
commit | fe93b010e78ab60bc222cf4cbbf3cdfcbecffd91 (patch) | |
tree | ba828cb7b1a742f2b320d84343ee96f319a3884a /test/ecdsatest.c | |
parent | Add X448/Ed448 support to libssl (diff) | |
download | openssl-fe93b010e78ab60bc222cf4cbbf3cdfcbecffd91.tar.xz openssl-fe93b010e78ab60bc222cf4cbbf3cdfcbecffd91.zip |
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/ecdsatest.c')
-rw-r--r-- | test/ecdsatest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ecdsatest.c b/test/ecdsatest.c index e53afdf33b..6a15b3af27 100644 --- a/test/ecdsatest.c +++ b/test/ecdsatest.c @@ -239,7 +239,7 @@ static int test_builtin(void) unsigned char dirt, offset; nid = curves[n].nid; - if (nid == NID_ipsec4 || nid == NID_X25519) + if (nid == NID_ipsec4) continue; /* create new ecdsa key (== EC_KEY) */ if (!TEST_ptr(eckey = EC_KEY_new()) |