summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2015-09-20 01:42:14 +0200
committerRichard Levitte <levitte@openssl.org>2015-09-20 01:57:57 +0200
commit56c1ef05014239f4bfa377946a30fe38c95d25fd (patch)
tree48ced17784a2bfd546c44ea4b47d3228d1c545fc /apps
parent2df84dd3299ff25fa078ca7ffbdeaac65b361feb (diff)
Add more features that may be disabled
Have a look at the directories in crypto/, I found reason to add checks on CMAC and HMAC. This might be completely irrelevant, but I prefered covering too much than not enough. Reviewed-by: Stephen Henson <steve@openssl.org>
Diffstat (limited to 'apps')
-rw-r--r--apps/openssl.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/openssl.c b/apps/openssl.c
index 90f2223c70..ca1eac0606 100644
--- a/apps/openssl.c
+++ b/apps/openssl.c
@@ -735,6 +735,9 @@ static void list_disabled(void)
#ifdef OPENSSL_NO_CAST
BIO_puts(bio_out, "CAST\n");
#endif
+#ifdef OPENSSL_NO_CMAC
+ BIO_puts(bio_out, "CMAC\n");
+#endif
#ifdef OPENSSL_NO_CMS
BIO_puts(bio_out, "CMS\n");
#endif
@@ -768,6 +771,9 @@ static void list_disabled(void)
#ifdef OPENSSL_NO_GOST
BIO_puts(bio_out, "GOST\n");
#endif
+#ifdef OPENSSL_NO_HMAC
+ BIO_puts(bio_out, "HMAC\n");
+#endif
#ifdef OPENSSL_NO_IDEA
BIO_puts(bio_out, "IDEA\n");
#endif