| 143 | void RandomSeed(); |
| 144 | |
| 145 | void FillByteBuffer() |
| 146 | { |
| 147 | if (requires_seed) { |
| 148 | RandomSeed(); |
| 149 | } |
| 150 | rng.Keystream(bytebuf, sizeof(bytebuf)); |
| 151 | bytebuf_size = sizeof(bytebuf); |
| 152 | } |
| 153 | |
| 154 | void FillBitBuffer() |
| 155 | { |
nothing calls this directly
no test coverage detected