6 #ifndef BITCOIN_RANDOM_H
7 #define BITCOIN_RANDOM_H
80 T GetRand(T nMax=std::numeric_limits<T>::max()) noexcept {
81 static_assert(std::is_integral<T>(),
"T must be integral");
82 static_assert(std::numeric_limits<T>::max() <= std::numeric_limits<uint64_t>::max(),
"GetRand only supports up to uint64_t");
96 constexpr
auto GetRandMicros = GetRandomDuration<std::chrono::microseconds>;
97 constexpr
auto GetRandMillis = GetRandomDuration<std::chrono::milliseconds>;
108 std::chrono::microseconds
GetExponentialRand(std::chrono::microseconds now, std::chrono::seconds average_interval);
175 uint64_t rand64() noexcept
177 if (requires_seed) RandomSeed();
178 unsigned char buf[8];
188 }
else if (bits > 32) {
189 return rand64() >> (64 - bits);
191 if (bitbuf_size < bits) FillBitBuffer();
192 uint64_t
ret = bitbuf & (~uint64_t{0} >> (64 - bits));
208 uint64_t
ret = randbits(bits);
209 if (
ret <= range)
return ret;
214 std::vector<unsigned char> randbytes(
size_t len);
217 uint32_t
rand32() noexcept {
return randbits(32); }
223 bool randbool() noexcept {
return randbits(1); }
226 template <
typename Tp>
229 return time + rand_uniform_duration<Tp>(range);
233 template <
typename Chrono>
236 using Dur =
typename Chrono::duration;
237 return range.count() > 0 ? Dur{randrange(range.count())} :
238 range.count() < 0 ? -Dur{randrange(-range.count())} :
244 static constexpr uint64_t
min() {
return 0; }
245 static constexpr uint64_t
max() {
return std::numeric_limits<uint64_t>::max(); }
259 template <
typename I,
typename R>
262 while (first != last) {
263 size_t j = rng.randrange(last - first);
266 swap(*first, *(first + j));
Unrestricted ChaCha20 cipher.
void Keystream(unsigned char *c, size_t bytes)
outputs the keystream of size <bytes> into
Chrono::duration rand_uniform_duration(typename Chrono::duration range) noexcept
Generate a uniform random duration in the range from 0 (inclusive) to range (exclusive).
uint32_t rand32() noexcept
Generate a random 32-bit integer.
Tp rand_uniform_delay(const Tp &time, typename Tp::duration range)
Return the time point advanced by a uniform random duration.
static constexpr uint64_t max()
uint64_t randbits(int bits) noexcept
Generate a random (bits)-bit integer.
static constexpr uint64_t min()
uint64_t randrange(uint64_t range) noexcept
Generate a random integer in the range [0..range).
uint64_t operator()() noexcept
A Span is an object that can refer to a contiguous sequence of objects.
static uint64_t ReadLE64(const unsigned char *ptr)
static uint64_t CountBits(uint64_t x)
Return the smallest number n such that (x >> n) == 0 (or 64 if the highest bit in x is set.
#define T(expected, seed, data)
std::chrono::microseconds GetExponentialRand(std::chrono::microseconds now, std::chrono::seconds average_interval)
Return a timestamp in the future sampled from an exponential distribution (https://en....
D GetRandomDuration(typename std::common_type< D >::type max) noexcept
Generate a uniform random duration in the range [0..max).
constexpr auto GetRandMicros
void GetRandBytes(Span< unsigned char > bytes) noexcept
Overall design of the RNG and entropy sources.
void RandAddPeriodic() noexcept
Gather entropy from various expensive sources, and feed them to the PRNG state.
constexpr auto GetRandMillis
uint64_t GetRandInternal(uint64_t nMax) noexcept
Generate a uniform random integer in the range [0..range).
void Shuffle(I first, I last, R &&rng)
More efficient than using std::shuffle on a FastRandomContext.
void GetStrongRandBytes(Span< unsigned char > bytes) noexcept
Gather entropy from various sources, feed it into the internal PRNG, and generate random data using i...
bool Random_SanityCheck()
Check that OS randomness is available and returning the requested number of bytes.
uint256 GetRandHash() noexcept
static const int NUM_OS_RANDOM_BYTES
void RandomInit()
Initialize global RNG state and log any CPU features that are used.
void RandAddEvent(const uint32_t event_info) noexcept
Gathers entropy from the low bits of the time at which events occur.
void GetOSRand(unsigned char *ent32)
Get 32 bytes of system entropy.
T GetRand(T nMax=std::numeric_limits< T >::max()) noexcept
Generate a uniform random integer of type T in the range [0..nMax) nMax defaults to std::numeric_limi...