Step 9 of move of engines: rename crypto/engine/hw_cryptodev.c to
[openssl.git] / crypto / engine / eng_all.c
index 7ebe25ca6c2cd6661c33eae03bf0c4d2bf1b2e4e..e4d48dae85445bf1f9e05982451f82dd828f33f0 100644 (file)
@@ -86,8 +86,28 @@ void ENGINE_load_builtin_engines(void)
 #ifndef OPENSSL_NO_HW_UBSEC
        ENGINE_load_ubsec();
 #endif
-#ifdef OPENSSL_OPENBSD_DEV_CRYPTO
-       ENGINE_load_openbsd_dev_crypto();
+#ifndef OPENSSL_NO_HW_AEP
+       ENGINE_load_aep();
+#endif
+#ifndef OPENSSL_NO_HW_SUREWARE
+       ENGINE_load_sureware();
+#endif
+#ifndef OPENSSL_NO_HW_4758_CCA
+       ENGINE_load_4758cca();
+#endif
+#ifdef __OpenBSD__
+       ENGINE_load_cryptodev();
 #endif
 #endif
        }
+
+#ifdef __OpenBSD__
+void ENGINE_setup_openbsd(void) {
+       static int openbsd_default_loaded = 0;
+       if (!openbsd_default_loaded) {
+               ENGINE_load_cryptodev();
+               ENGINE_register_all_complete();
+       }
+       openbsd_default_loaded=1;
+}
+#endif