]> git.ipfire.org Git - thirdparty/openssl.git/commit
Fix egd and devrandom source configs
authorBernd Edlinger <bernd.edlinger@hotmail.de>
Sun, 17 May 2020 00:08:56 +0000 (02:08 +0200)
committerBernd Edlinger <bernd.edlinger@hotmail.de>
Wed, 20 May 2020 12:48:16 +0000 (14:48 +0200)
commitddec332f329a432a45c0131d83f3bfb46114532b
treec9aab70fd8bc1895c6116b856cbd3afd57bf8ac1
parenta7ad40c502d3484e0a574e121cfba70631f224bf
Fix egd and devrandom source configs

./config --with-rand-seed=egd

need to defines OPENSSL_RAND_SEED_EGD and OPENSSL_NO_EGD
so get rid of OPENSSL_NO_EGD (compiles but I did not really test EGD)

./config --with-rand-seed=devrandom

does not work since wait_random_seeded works under the assumption
that OPENSSL_RAND_SEED_GETRANDOM is supposed to be enabled as well,
that is usually the case, but not when only devrandom is enabled.
Skip the wait code in this special case.

Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/11848)
Configure
crypto/rand/rand_unix.c