summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/evp/c_all.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/evp/c_all.c')
-rw-r--r--src/lib/libcrypto/evp/c_all.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/lib/libcrypto/evp/c_all.c b/src/lib/libcrypto/evp/c_all.c
index 1e185830a3..3d390dfbf1 100644
--- a/src/lib/libcrypto/evp/c_all.c
+++ b/src/lib/libcrypto/evp/c_all.c
@@ -60,8 +60,16 @@
60#include "cryptlib.h" 60#include "cryptlib.h"
61#include <openssl/evp.h> 61#include <openssl/evp.h>
62 62
63#undef OpenSSL_add_all_algorithms
64
63void OpenSSL_add_all_algorithms(void) 65void OpenSSL_add_all_algorithms(void)
64{ 66 {
67 OPENSSL_add_all_algorithms_noconf();
68 }
69
70void OPENSSL_add_all_algorithms_noconf(void)
71 {
65 OpenSSL_add_all_ciphers(); 72 OpenSSL_add_all_ciphers();
66 OpenSSL_add_all_digests(); 73 OpenSSL_add_all_digests();
67} 74 ENGINE_setup_openbsd();
75 }