FreeBSD has /dev/crypto as well.
[openssl.git] / crypto / engine / eng_all.c
index b3030fe5053b08a70d254f26816a7d7e32f7c414..7cc05bfe0be2294a8afd1892df2d7edbab850b24 100644 (file)
@@ -70,6 +70,7 @@ void ENGINE_load_builtin_engines(void)
        ENGINE_load_openssl();
 #endif
        ENGINE_load_dynamic();
+#ifndef OPENSSL_NO_STATIC_ENGINE
 #ifndef OPENSSL_NO_HW
 #ifndef OPENSSL_NO_HW_CSWIFT
        ENGINE_load_cswift();
@@ -95,8 +96,20 @@ void ENGINE_load_builtin_engines(void)
 #ifndef OPENSSL_NO_HW_4758_CCA
        ENGINE_load_4758cca();
 #endif
-#ifdef OPENSSL_OPENBSD_DEV_CRYPTO
-       ENGINE_load_openbsd_dev_crypto();
 #endif
+#if defined(__OpenBSD__) || defined(__FreeBSD__)
+       ENGINE_load_cryptodev();
 #endif
+#endif
+       }
+
+#if defined(__OpenBSD__) || defined(__FreeBSD__)
+void ENGINE_setup_bsd_cryptodev(void) {
+       static int bsd_cryptodev_default_loaded = 0;
+       if (!bsd_cryptodev_default_loaded) {
+               ENGINE_load_cryptodev();
+               ENGINE_register_all_complete();
        }
+       bsd_cryptodev_default_loaded=1;
+}
+#endif