aboutsummaryrefslogtreecommitdiff
path: root/src/random.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2017-02-22 07:38:42 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2017-02-22 07:38:42 +0100
commitaa09ccbb74ea9febd83ce3362238ac5339069909 (patch)
tree4a8ea8517910e15a3a89d12dce57e1663eb190d6 /src/random.h
parent224e6eb089a0f4977d22f3803fc27e44b5e7eea5 (diff)
downloadbitcoin-aa09ccbb74ea9febd83ce3362238ac5339069909.tar.xz
squashme: comment that NUM_OS_RANDOM_BYTES should not be changed lightly
Diffstat (limited to 'src/random.h')
-rw-r--r--src/random.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/random.h b/src/random.h
index 0e8bb27176..29de587312 100644
--- a/src/random.h
+++ b/src/random.h
@@ -46,7 +46,11 @@ public:
uint32_t Rw;
};
-/* Number of random bytes returned by GetOSRand */
+/* Number of random bytes returned by GetOSRand.
+ * When changing this constant make sure to change all call sites, and make
+ * sure that the underlying OS APIs for all platforms support the number.
+ * (many cap out at 256 bytes).
+ */
static const ssize_t NUM_OS_RANDOM_BYTES = 32;
/** Get 32 bytes of system entropy. Do not use this in application code: use