summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib/libcrypto/evp/c_all.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/libcrypto/evp/c_all.c b/src/lib/libcrypto/evp/c_all.c
index 87657eded3..85322d90e8 100644
--- a/src/lib/libcrypto/evp/c_all.c
+++ b/src/lib/libcrypto/evp/c_all.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: c_all.c,v 1.22 2018/03/17 16:20:01 beck Exp $ */ 1/* $OpenBSD: c_all.c,v 1.23 2018/11/11 07:07:44 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -286,6 +286,9 @@ OpenSSL_add_all_digests_internal(void)
286 EVP_add_digest(EVP_sha384()); 286 EVP_add_digest(EVP_sha384());
287 EVP_add_digest(EVP_sha512()); 287 EVP_add_digest(EVP_sha512());
288#endif 288#endif
289#ifndef OPENSSL_NO_SM3
290 EVP_add_digest(EVP_sm3());
291#endif
289#ifndef OPENSSL_NO_WHIRLPOOL 292#ifndef OPENSSL_NO_WHIRLPOOL
290 EVP_add_digest(EVP_whirlpool()); 293 EVP_add_digest(EVP_whirlpool());
291#endif 294#endif