mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
rand: allow seed-src to be missing
Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/13640)
This commit is contained in:
parent
a678506e2f
commit
1d180bbe8e
@ -561,8 +561,11 @@ EVP_RAND_CTX *RAND_get0_primary(OSSL_LIB_CTX *ctx)
|
||||
if (!CRYPTO_THREAD_write_lock(dgbl->lock))
|
||||
return NULL;
|
||||
#ifndef FIPS_MODULE
|
||||
if (dgbl->seed == NULL)
|
||||
if (dgbl->seed == NULL) {
|
||||
ERR_set_mark();
|
||||
dgbl->seed = rand_new_seed(ctx);
|
||||
ERR_pop_to_mark();
|
||||
}
|
||||
#endif
|
||||
if (dgbl->primary == NULL)
|
||||
dgbl->primary = rand_new_drbg(ctx, dgbl->seed,
|
||||
|
Loading…
x
Reference in New Issue
Block a user