summaryrefslogtreecommitdiffstats
path: root/crypto/rand
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-06-21 17:08:25 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-06-21 17:08:25 +0000
commitc24367ebb90ab206e6ca8665a7580958dbced272 (patch)
tree488fc854a7cf865336e515eda99e42c0ede604d2 /crypto/rand
parent7397b35379e158b4e3303701c2c5b068344a0c96 (diff)
Don't set FIPS rand method at same time as RAND method as this can cause
the FIPS library to fail. Applications that want to set the FIPS rand method can do so explicitly and presumably they know what they are doing...
Diffstat (limited to 'crypto/rand')
-rw-r--r--crypto/rand/rand_lib.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/crypto/rand/rand_lib.c b/crypto/rand/rand_lib.c
index 9f26683b38..653896b4b7 100644
--- a/crypto/rand/rand_lib.c
+++ b/crypto/rand/rand_lib.c
@@ -78,10 +78,6 @@ static const RAND_METHOD *default_RAND_meth = NULL;
int RAND_set_rand_method(const RAND_METHOD *meth)
{
-#ifdef OPENSSL_FIPS
- if (!FIPS_rand_set_method(meth))
- return 0;
-#endif
#ifndef OPENSSL_NO_ENGINE
if(funct_ref)
{