021091d55f
- resume reading from /dev/urandom when interrupted by a signal (bsc#995075) * add openssl-randfile_fread_interrupt.patch - add FIPS changes from SP2: - fix problems with locking in FIPS mode (bsc#992120) * duplicates: bsc#991877, bsc#991193, bsc#990392, bsc#990428 and bsc#990207 * bring back openssl-fipslocking.patch - drop openssl-fips_RSA_compute_d_with_lcm.patch (upstream) (bsc#984323) - don't check for /etc/system-fips (bsc#982268) * add openssl-fips-dont_run_FIPS_module_installed.patch - refresh openssl-fips-rsagen-d-bits.patch (forwarded request 431508 from vitezslav_cizek) OBS-URL: https://build.opensuse.org/request/show/433063 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/openssl?expand=0&rev=134
17 lines
547 B
Diff
17 lines
547 B
Diff
Index: openssl-1.0.2h/crypto/o_init.c
|
|
===================================================================
|
|
--- openssl-1.0.2h.orig/crypto/o_init.c 2016-06-01 15:26:25.026937000 +0200
|
|
+++ openssl-1.0.2h/crypto/o_init.c 2016-06-01 16:23:24.980858697 +0200
|
|
@@ -111,9 +111,9 @@ void __attribute__ ((constructor)) OPENS
|
|
return;
|
|
done = 1;
|
|
#ifdef OPENSSL_FIPS
|
|
- if (!FIPS_module_installed()) {
|
|
+ /*if (!FIPS_module_installed()) {
|
|
return;
|
|
- }
|
|
+ }*/
|
|
RAND_init_fips();
|
|
init_fips_mode();
|
|
if (!FIPS_mode()) {
|