mirror of
https://github.com/monero-project/monero.git
synced 2025-08-23 08:25:09 -04:00
crypto: make clear generate_random_bytes is not thread safe
And add a thread safe version to encourage proper use
This commit is contained in:
parent
8b0d22a2aa
commit
d539be3359
4 changed files with 11 additions and 4 deletions
|
@ -113,7 +113,7 @@ INITIALIZER(init_random) {
|
|||
#endif
|
||||
}
|
||||
|
||||
void generate_random_bytes(size_t n, void *result) {
|
||||
void generate_random_bytes_not_thread_safe(size_t n, void *result) {
|
||||
#if !defined(NDEBUG)
|
||||
assert(curstate == 1);
|
||||
curstate = 2;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue