Don't use rdrand engine as default unless explicitly requested.
authorDr. Stephen Henson <steve@openssl.org>
Wed, 11 Dec 2013 14:45:12 +0000 (14:45 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Fri, 13 Dec 2013 15:39:55 +0000 (15:39 +0000)
(cherry picked from commit 16898401bd47a153fbf799127ff57fdcfcbd324f)

crypto/engine/eng_rdrand.c

index a9ba5ae6f9ffd8f90ec6ca43e5d249982156025e..4e9e91d54b13a7ea0ecca53c0b8d6ef373ff7c65 100644 (file)
@@ -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;