mirror of
https://github.com/openssl/openssl.git
synced 2025-01-30 14:01:55 +08:00
drbg_bytes: remove check for DRBG_UNINITIALIZED state
This check not only prevented the automatic reinstantiation of the DRBG, which is implemented in RAND_DRBG_generate(), but also prevented an error message from being generated in the case of failure. Reviewed-by: Kurt Roeckx <kurt@roeckx.be> (Merged from https://github.com/openssl/openssl/pull/5251)
This commit is contained in:
parent
1c4b154586
commit
58351fbd02
@ -772,9 +772,6 @@ static int drbg_bytes(unsigned char *out, int count)
|
||||
return 0;
|
||||
|
||||
CRYPTO_THREAD_write_lock(drbg->lock);
|
||||
if (drbg->state == DRBG_UNINITIALISED)
|
||||
goto err;
|
||||
|
||||
for ( ; count > 0; count -= chunk, out += chunk) {
|
||||
chunk = count;
|
||||
if (chunk > drbg->max_request)
|
||||
|
Loading…
Reference in New Issue
Block a user