提交 14e06391 编写于 作者: P Pauli

Disabled list doesn't contain SM3 and SM4.

The Chinese cryptographic operations should appear in the disabled list if they
are disabled.
Reviewed-by: NRichard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4678)
上级 67e247fa
...@@ -750,6 +750,12 @@ static void list_disabled(void) ...@@ -750,6 +750,12 @@ static void list_disabled(void)
#ifdef OPENSSL_NO_SEED #ifdef OPENSSL_NO_SEED
BIO_puts(bio_out, "SEED\n"); BIO_puts(bio_out, "SEED\n");
#endif #endif
#ifdef OPENSSL_NO_SM3
BIO_puts(bio_out, "SM3\n");
#endif
#ifdef OPENSSL_NO_SM4
BIO_puts(bio_out, "SM4\n");
#endif
#ifdef OPENSSL_NO_SOCK #ifdef OPENSSL_NO_SOCK
BIO_puts(bio_out, "SOCK\n"); BIO_puts(bio_out, "SOCK\n");
#endif #endif
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册