diff options
author | Achin Gupta <achin.gupta@arm.com> | 2015-07-01 16:09:27 +0100 |
---|---|---|
committer | Achin Gupta <achin.gupta@arm.com> | 2015-07-01 16:09:27 +0100 |
commit | 1ea5233f34fab1fca85dd60e180b7468ecbcbadf (patch) | |
tree | cbaf334d5b7fe0776fcbf669fb19edb6f38ada4f /tools/cert_create/include | |
parent | 84f95bed549eab4ca40fbd0505e0e3720384880c (diff) | |
parent | ed2a76eab4842652408e483e5779a9d657e8d786 (diff) |
Merge pull request #326 from jcastillo-arm/jc/tbb_ecdsa
TBB: build 'cert_create' with ECDSA only if OpenSSL supports it
Diffstat (limited to 'tools/cert_create/include')
-rw-r--r-- | tools/cert_create/include/key.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/cert_create/include/key.h b/tools/cert_create/include/key.h index dfb31508..165ffa1c 100644 --- a/tools/cert_create/include/key.h +++ b/tools/cert_create/include/key.h @@ -47,7 +47,10 @@ enum { /* Supported key algorithms */ enum { KEY_ALG_RSA, - KEY_ALG_ECDSA +#ifndef OPENSSL_NO_EC + KEY_ALG_ECDSA, +#endif /* OPENSSL_NO_EC */ + KEY_ALG_MAX_NUM }; /* |