diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2014-06-24 14:27:32 +0200 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2014-07-09 09:42:18 +0200 |
commit | 001a53d7427dcbcceef3c6754d9cca19df6dafa1 (patch) | |
tree | c599b2ecf2358276c8b86524348954b06c5757c4 /src/util.h | |
parent | 2ee918d1214d0027285bb7558c237888d6ee175b (diff) |
add GetRandBytes() as wrapper for RAND_bytes()
- add a small wrapper in util around RAND_bytes() and replace with
GetRandBytes() in the code to log errors from calling RAND_bytes()
- remove OpenSSL header rand.h where no longer needed
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h index 60db71bfd0..d0108ee77f 100644 --- a/src/util.h +++ b/src/util.h @@ -103,6 +103,7 @@ extern bool fLogTimestamps; extern bool fLogIPs; extern volatile bool fReopenDebugLog; +bool GetRandBytes(unsigned char *buf, int num); void RandAddSeed(); void RandAddSeedPerfmon(); void SetupEnvironment(); |