| 56 | void RandomSeed(); |
| 57 | |
| 58 | void FillByteBuffer() |
| 59 | { |
| 60 | if (requires_seed) { |
| 61 | RandomSeed(); |
| 62 | } |
| 63 | rng.Output(bytebuf, sizeof(bytebuf)); |
| 64 | bytebuf_size = sizeof(bytebuf); |
| 65 | } |
| 66 | |
| 67 | void FillBitBuffer() |
| 68 | { |
nothing calls this directly
no test coverage detected