projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7397b35
)
Don't set FIPS rand method at same time as RAND method as this can cause
author
Dr. Stephen Henson
<steve@openssl.org>
Tue, 21 Jun 2011 17:08:25 +0000
(17:08 +0000)
committer
Dr. Stephen Henson
<steve@openssl.org>
Tue, 21 Jun 2011 17:08:25 +0000
(17:08 +0000)
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...
crypto/rand/rand_lib.c
patch
|
blob
|
history
diff --git
a/crypto/rand/rand_lib.c
b/crypto/rand/rand_lib.c
index 9f26683b389531ebdbe6f004af4f65f1ee35178f..653896b4b70ef6704eb55062e3cee68a58671ac9 100644
(file)
--- 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)
{