crypto/bn/build.info: define OPENSL_IA32_SSE2 globally when needed
[openssl.git] / crypto / provider_predefined.c
index be21565e9ff3e3b0398f8c2d358027e7c192ff41..d1423b1c6ce6d0908ca5f8f43fe9380d9e820118 100644 (file)
 #include <openssl/core.h>
 #include "provider_local.h"
 
-#if 0                            /* Until it exists for real */
 OSSL_provider_init_fn ossl_default_provider_init;
-#endif
+OSSL_provider_init_fn fips_intern_provider_init;
 
 const struct predefined_providers_st predefined_providers[] = {
-#if 0                            /* Until it exists for real */
+#ifdef FIPS_MODE
+    { "fips", fips_intern_provider_init, 1 },
+#else
     { "default", ossl_default_provider_init, 1 },
 #endif
     { NULL, NULL, 0 }