aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2017-04-26 17:08:22 +0100
committerDr. Stephen Henson <steve@openssl.org>2017-04-26 17:12:23 +0100
commitaa24cd1bfbf4fb51bc51d8b3b5c68563616a28ab (patch)
treeeebb67a6fa9f560fc8154dc089bcc22dd0219bd3
parent8e1634ec36c9a125f3aa1c48b743ff864c6fcbd3 (diff)
downloadopenssl-aa24cd1bfbf4fb51bc51d8b3b5c68563616a28ab.tar.gz
Fix no-ec
Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3321)
-rw-r--r--test/evp_extra_test.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/evp_extra_test.c b/test/evp_extra_test.c
index 80737f96cd..d780161e34 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)