| 603 | } |
| 604 | |
| 605 | void FastRandomContext::RandomSeed() |
| 606 | { |
| 607 | uint256 seed = GetRandHash(); |
| 608 | rng.SetKey(seed.begin(), 32); |
| 609 | requires_seed = false; |
| 610 | } |
| 611 | |
| 612 | uint256 FastRandomContext::rand256() noexcept |
| 613 | { |
nothing calls this directly
no test coverage detected