summaryrefslogtreecommitdiffstats
path: root/crypto/evp/c_all.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-10-02 00:19:33 +0000
committerRichard Levitte <levitte@openssl.org>2002-10-02 00:19:33 +0000
commit293d5082c75b72ae56cfac02deb5dd6357130c2d (patch)
tree3b97597a0e51dcd037edccae964fa10201590585 /crypto/evp/c_all.c
parent929f11673384d9f518b47bd4dc7f1878e80cdf28 (diff)
The OpenBSD project has replaced the first implementation of the /dev/crypto
engine with something they claim is better. I have nothing to compare to, and I assume they know what they're talking about. The interesting part with this one is that it's loaded by default on OpenBSD systems. This change was originally introduced in OpenBSD's tracking of OpenSSL.
Diffstat (limited to 'crypto/evp/c_all.c')
-rw-r--r--crypto/evp/c_all.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/crypto/evp/c_all.c b/crypto/evp/c_all.c
index 2d3e57c4fa..1bd54d791e 100644
--- a/crypto/evp/c_all.c
+++ b/crypto/evp/c_all.c
@@ -73,4 +73,7 @@ void OPENSSL_add_all_algorithms_noconf(void)
{
OpenSSL_add_all_ciphers();
OpenSSL_add_all_digests();
+#ifdef __OpenBSD__
+ ENGINE_setup_openbsd();
+#endif
}