diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2017-02-22 08:02:50 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2017-02-22 08:02:50 +0100 |
commit | 7cad84929907c4294f07377453aa77887911b486 (patch) | |
tree | a364b2912656b00dac9e397f767d6df1fd91e821 /src/random.h | |
parent | aa09ccbb74ea9febd83ce3362238ac5339069909 (diff) |
sanity: Move OS random to sanity check function
Move the OS random test to a sanity check function that is called every
time bitcoind is initialized.
Keep `src/test/random_tests.cpp` for the case that later random tests
are added, and keep a rudimentary test that just calls the sanity check.
Diffstat (limited to 'src/random.h')
-rw-r--r-- | src/random.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/random.h b/src/random.h index 29de587312..0464bdce14 100644 --- a/src/random.h +++ b/src/random.h @@ -58,4 +58,9 @@ static const ssize_t NUM_OS_RANDOM_BYTES = 32; */ void GetOSRand(unsigned char *ent32); +/** Check that OS randomness is available and returning the requested number + * of bytes. + */ +bool Random_SanityCheck(); + #endif // BITCOIN_RANDOM_H |