mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-12-07 19:22:17 +01:00
Use secure allocator for RNG state
This commit is contained in:
@@ -19,6 +19,8 @@
|
|||||||
#include <chrono>
|
#include <chrono>
|
||||||
#include <thread>
|
#include <thread>
|
||||||
|
|
||||||
|
#include <support/allocators/secure.h>
|
||||||
|
|
||||||
#ifndef WIN32
|
#ifndef WIN32
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
@@ -351,8 +353,8 @@ RNGState& GetRNGState() noexcept
|
|||||||
{
|
{
|
||||||
// This C++11 idiom relies on the guarantee that static variable are initialized
|
// This C++11 idiom relies on the guarantee that static variable are initialized
|
||||||
// on first call, even when multiple parallel calls are permitted.
|
// on first call, even when multiple parallel calls are permitted.
|
||||||
static std::unique_ptr<RNGState> g_rng{new RNGState()};
|
static std::vector<RNGState, secure_allocator<RNGState>> g_rng(1);
|
||||||
return *g_rng;
|
return g_rng[0];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user