| 617 | void RandAddEvent(const uint32_t event_info) noexcept { GetRNGState().AddEvent(event_info); } |
| 618 | |
| 619 | void FastRandomContext::RandomSeed() noexcept |
| 620 | { |
| 621 | uint256 seed = GetRandHash(); |
| 622 | rng.SetKey(MakeByteSpan(seed)); |
| 623 | requires_seed = false; |
| 624 | } |
| 625 | |
| 626 | void FastRandomContext::fillrand(std::span<std::byte> output) noexcept |
| 627 | { |
nothing calls this directly
no test coverage detected