From: Richard Levitte Date: Sat, 19 Sep 2015 23:42:14 +0000 (+0200) Subject: Add more features that may be disabled X-Git-Tag: OpenSSL_1_1_0-pre1~586 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=56c1ef05014239f4bfa377946a30fe38c95d25fd 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 --- 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