summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/evp/c_allc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/evp/c_allc.c')
-rw-r--r--src/lib/libcrypto/evp/c_allc.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/lib/libcrypto/evp/c_allc.c b/src/lib/libcrypto/evp/c_allc.c
index 657e14f86f..26a5cc6179 100644
--- a/src/lib/libcrypto/evp/c_allc.c
+++ b/src/lib/libcrypto/evp/c_allc.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: c_allc.c,v 1.13 2014/07/11 08:44:48 jsing Exp $ */ 1/* $OpenBSD: c_allc.c,v 1.14 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 *
@@ -225,4 +225,10 @@ OpenSSL_add_all_ciphers(void)
225#ifndef OPENSSL_NO_CHACHA 225#ifndef OPENSSL_NO_CHACHA
226 EVP_add_cipher(EVP_chacha20()); 226 EVP_add_cipher(EVP_chacha20());
227#endif 227#endif
228
229#ifndef OPENSSL_NO_GOST
230 EVP_add_cipher(EVP_gost2814789_ecb());
231 EVP_add_cipher(EVP_gost2814789_cfb64());
232 EVP_add_cipher(EVP_gost2814789_cnt());
233#endif
228} 234}