Blame SOURCES/openssl-1.0.2a-compat-symbols.patch

450916
diff -up openssl-1.0.2a/crypto/dsa/dsa_key.c.compat openssl-1.0.2a/crypto/dsa/dsa_key.c
450916
--- openssl-1.0.2a/crypto/dsa/dsa_key.c.compat	2015-04-09 18:21:11.687977858 +0200
450916
+++ openssl-1.0.2a/crypto/dsa/dsa_key.c	2015-04-09 18:21:07.869889659 +0200
450916
@@ -68,6 +68,11 @@
450916
 #  include <openssl/fips.h>
450916
 #  include <openssl/evp.h>
450916
 
450916
+/* just a compatibility symbol - no-op */
450916
+void FIPS_corrupt_dsa_keygen(void)
450916
+{
450916
+}
450916
+
450916
 static int fips_check_dsa(DSA *dsa)
450916
 {
450916
     EVP_PKEY *pk;
450916
diff -up openssl-1.0.2a/crypto/engine/eng_all.c.compat openssl-1.0.2a/crypto/engine/eng_all.c
450916
--- openssl-1.0.2a/crypto/engine/eng_all.c.compat	2015-04-09 18:21:11.688977881 +0200
450916
+++ openssl-1.0.2a/crypto/engine/eng_all.c	2015-04-09 18:21:09.159919459 +0200
450916
@@ -63,6 +63,11 @@
450916
 # include <openssl/fips.h>
450916
 #endif
450916
 
450916
+/* just backwards compatibility symbol - no-op */
450916
+void ENGINE_load_aesni(void)
450916
+{
450916
+}
450916
+
450916
 void ENGINE_load_builtin_engines(void)
450916
 {
450916
     /* Some ENGINEs need this */
450916
diff -up openssl-1.0.2a/crypto/fips/fips.c.compat openssl-1.0.2a/crypto/fips/fips.c
450916
--- openssl-1.0.2a/crypto/fips/fips.c.compat	2015-04-09 18:21:11.689977904 +0200
450916
+++ openssl-1.0.2a/crypto/fips/fips.c	2015-04-09 18:21:09.925937154 +0200
450916
@@ -113,6 +113,12 @@ int FIPS_module_mode(void)
450916
     return ret;
450916
 }
450916
 
450916
+/* just a compat symbol - return NULL */
450916
+const void *FIPS_rand_check(void)
450916
+{
450916
+    return NULL;
450916
+}
450916
+
450916
 int FIPS_selftest_failed(void)
450916
 {
450916
     int ret = 0;