From: Matt Caswell Date: Fri, 8 Jun 2018 10:20:34 +0000 (+0100) Subject: Fix no-ec X-Git-Tag: OpenSSL_1_1_1-pre8~53 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=896dcb80651bd92546b73f4eac62bc211fca5a7d Fix no-ec Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/6437) --- diff --git a/test/evp_extra_test.c b/test/evp_extra_test.c index fd461c9fa8..640da7c765 100644 --- a/test/evp_extra_test.c +++ b/test/evp_extra_test.c @@ -488,7 +488,9 @@ static struct keys_st { EVP_PKEY_POLY1305, "01234567890123456789012345678901", NULL }, { EVP_PKEY_SIPHASH, "0123456789012345", NULL - }, { + }, +#ifndef OPENSSL_NO_EC + { EVP_PKEY_X25519, "01234567890123456789012345678901", "abcdefghijklmnopqrstuvwxyzabcdef" }, { @@ -503,6 +505,7 @@ static struct keys_st { "012345678901234567890123456789012345678901234567890123456", "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcde" } +#endif }; static int test_set_get_raw_keys_int(int tst, int pub)