提交 56c1ef05 编写于 作者: R Richard Levitte

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: NStephen Henson <steve@openssl.org>
上级 2df84dd3
...@@ -735,6 +735,9 @@ static void list_disabled(void) ...@@ -735,6 +735,9 @@ static void list_disabled(void)
#ifdef OPENSSL_NO_CAST #ifdef OPENSSL_NO_CAST
BIO_puts(bio_out, "CAST\n"); BIO_puts(bio_out, "CAST\n");
#endif #endif
#ifdef OPENSSL_NO_CMAC
BIO_puts(bio_out, "CMAC\n");
#endif
#ifdef OPENSSL_NO_CMS #ifdef OPENSSL_NO_CMS
BIO_puts(bio_out, "CMS\n"); BIO_puts(bio_out, "CMS\n");
#endif #endif
...@@ -768,6 +771,9 @@ static void list_disabled(void) ...@@ -768,6 +771,9 @@ static void list_disabled(void)
#ifdef OPENSSL_NO_GOST #ifdef OPENSSL_NO_GOST
BIO_puts(bio_out, "GOST\n"); BIO_puts(bio_out, "GOST\n");
#endif #endif
#ifdef OPENSSL_NO_HMAC
BIO_puts(bio_out, "HMAC\n");
#endif
#ifdef OPENSSL_NO_IDEA #ifdef OPENSSL_NO_IDEA
BIO_puts(bio_out, "IDEA\n"); BIO_puts(bio_out, "IDEA\n");
#endif #endif
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册