| 605 | } |
| 606 | |
| 607 | void GetStrongRandBytes(std::span<unsigned char> bytes) noexcept |
| 608 | { |
| 609 | ProcRand(bytes.data(), bytes.size(), RNGLevel::SLOW, /*always_use_real_rng=*/true); |
| 610 | } |
| 611 | |
| 612 | void RandAddPeriodic() noexcept |
| 613 | { |
no test coverage detected