From: Richard Levitte Date: Mon, 8 Jan 2001 21:27:53 +0000 (+0000) Subject: Because /dev/urandom has a better chance of giving us a good and X-Git-Tag: OpenSSL_0_9_6a-beta1~81^2~68 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e02cc10ea4fa7ded67203bfa89628d8fc49c8fab;p=oweals%2Fopenssl.git Because /dev/urandom has a better chance of giving us a good and quick answer, take that one first. --- diff --git a/e_os.h b/e_os.h index ba53b18b9c..d658191987 100644 --- a/e_os.h +++ b/e_os.h @@ -79,7 +79,7 @@ extern "C" { #ifndef DEVRANDOM /* set this to a comma-separated list of 'random' device files to try out. * My default, we will try to read at least one of these files */ -#define DEVRANDOM "/dev/random","/dev/srandom","/dev/urandom" +#define DEVRANDOM "/dev/urandom","/dev/random","/dev/srandom" #endif #if defined(__MWERKS__) && defined(macintosh)