From: Dr. Stephen Henson Date: Wed, 26 Apr 2017 16:08:22 +0000 (+0100) Subject: Fix no-ec X-Git-Tag: OpenSSL_1_1_1-pre1~1651 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aa24cd1bfbf4fb51bc51d8b3b5c68563616a28ab;p=thirdparty%2Fopenssl.git Fix no-ec Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/3321) --- diff --git a/test/evp_extra_test.c b/test/evp_extra_test.c index 80737f96cdb..d780161e344 100644 --- a/test/evp_extra_test.c +++ b/test/evp_extra_test.c @@ -196,7 +196,9 @@ typedef struct APK_DATA_st { static APK_DATA keydata[] = { {kExampleRSAKeyDER, sizeof(kExampleRSAKeyDER), EVP_PKEY_RSA}, {kExampleRSAKeyPKCS8, sizeof(kExampleRSAKeyPKCS8), EVP_PKEY_RSA}, +#ifndef OPENSSL_NO_EC {kExampleECKeyDER, sizeof(kExampleECKeyDER), EVP_PKEY_EC} +#endif }; static EVP_PKEY *load_example_rsa_key(void)