Closed omerlh closed 7 years ago
No need to do that, libCrypto
seeds itself in RAND_poll
. See this SO question and the OpenSSL wiki for further reading on this topic.
However, for safety purposes, this library checks RAND_status
to see if seed is prepared before doing anything, so you should be safe. See MIHInternal.h for more details on the safety check.
ok, thank you!
Hey, After a quick google search, I find this SO. So I looked in the manual and seems like the guy is correct and OpenSSL should be seeded before generating keys. My question is - did I understand it correctly? Becuase I looked up and it seems there is no call to RAND_add in this library... Thanks, Omer