summaryrefslogtreecommitdiffstats
path: root/crypto/engine
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2013-12-11 14:45:12 +0000
committerDr. Stephen Henson <steve@openssl.org>2013-12-13 15:29:26 +0000
commit8f68678989a198ead3ab59a698302ecb0f1c8fb1 (patch)
tree833db4c5e27b42ba7112ebd22e68a0ba2e6e7348 /crypto/engine
parent57c4e42d7545b51cbc00015defc81db7236dc15f (diff)
Don't use rdrand engine as default unless explicitly requested.
Diffstat (limited to 'crypto/engine')
-rw-r--r--crypto/engine/eng_rdrand.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/engine/eng_rdrand.c b/crypto/engine/eng_rdrand.c
index a9ba5ae6f9..4e9e91d54b 100644
--- a/crypto/engine/eng_rdrand.c
+++ b/crypto/engine/eng_rdrand.c
@@ -104,6 +104,7 @@ static int bind_helper(ENGINE *e)
{
if (!ENGINE_set_id(e, engine_e_rdrand_id) ||
!ENGINE_set_name(e, engine_e_rdrand_name) ||
+ !ENGINE_set_flags(e, ENGINE_FLAGS_NO_REGISTER_ALL) ||
!ENGINE_set_init_function(e, rdrand_init) ||
!ENGINE_set_RAND(e, &rdrand_meth) )
return 0;