Vishwanath,
have you already tried to simply use the default RAND_METHOD and not to replace
it by your own? Except for the initial seeding(*), the thread local DRBGs
should operate for a long time without blocking and without interfering with
each other. Even if the thread local DRBGs reseed, t
, April 2, 2021 8:51 AM
To: openssl-users@openssl.org
Subject: Re: Regarding RAND_set_rand_method
There isn't an easy a way to do what you want in 1.1.1. RAND_set_rand_method
replaces the RNG for all of OpenSSL. In theory your RAND_METHOD could detect
which thread it is running in and do diff
There isn't an easy a way to do what you want in 1.1.1.
RAND_set_rand_method replaces the RNG for all of OpenSSL. In theory
your RAND_METHOD could detect which thread it is running in and do
different things for each. I'm not sure this is a good idea however.
Why aren't the random number fro
Hi,
I have some doubts/questions on how to use methods (for ex:
RAND_set_rand_method) in multi threaded application which use OpenSSL. In my
application (running on OpenSSL 1.1.1d) there are two threads which use
OpenSSL, both threads perform very different operations. The issue I am facing
is