crypto/mem.c: on Windows, use rand() instead of random()
Windows doesn't provide random(). In this particular case, our requirements on the quality of randomness isn't high, so we don't need to care how good randomness rand() does or doesn't provide. Fixes #3778 Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3779)
This commit is contained in:
parent
eed3ec9047
commit
afe9bba749
1 changed files with 8 additions and 0 deletions
|
@ -111,6 +111,14 @@ static void parseit(void)
|
|||
md_failstring = semi;
|
||||
}
|
||||
|
||||
/*
|
||||
* Windows doesn't have random(), but it has rand()
|
||||
* Some rand() implementations aren't good, but we're not
|
||||
* dealing with secure randomness here.
|
||||
*/
|
||||
#ifdef _WIN32
|
||||
# define random() rand()
|
||||
#endif
|
||||
/*
|
||||
* See if the current malloc should fail.
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue