summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/evp/c_alld.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/evp/c_alld.c')
-rw-r--r--src/lib/libcrypto/evp/c_alld.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/lib/libcrypto/evp/c_alld.c b/src/lib/libcrypto/evp/c_alld.c
index 8f59100caa..99da8acdae 100644
--- a/src/lib/libcrypto/evp/c_alld.c
+++ b/src/lib/libcrypto/evp/c_alld.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: c_alld.c,v 1.11 2014/07/11 08:44:48 jsing Exp $ */ 1/* $OpenBSD: c_alld.c,v 1.12 2014/11/09 19:17:13 miod 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 *
@@ -95,6 +95,12 @@ OpenSSL_add_all_digests(void)
95 EVP_add_digest(EVP_ecdsa()); 95 EVP_add_digest(EVP_ecdsa());
96#endif 96#endif
97#endif 97#endif
98#ifndef OPENSSL_NO_GOST
99 EVP_add_digest(EVP_gostr341194());
100 EVP_add_digest(EVP_gost2814789imit());
101 EVP_add_digest(EVP_streebog256());
102 EVP_add_digest(EVP_streebog512());
103#endif
98#if !defined(OPENSSL_NO_MDC2) && !defined(OPENSSL_NO_DES) 104#if !defined(OPENSSL_NO_MDC2) && !defined(OPENSSL_NO_DES)
99 EVP_add_digest(EVP_mdc2()); 105 EVP_add_digest(EVP_mdc2());
100#endif 106#endif