place a generated block in output
| 53 | |
| 54 | // place a generated block in output |
| 55 | void RandomNumberGenerator::GenerateBlock(byte* output, word32 sz) |
| 56 | { |
| 57 | memset(output, 0, sz); |
| 58 | cipher_.Process(output, output, sz); |
| 59 | } |
| 60 | |
| 61 | |
| 62 | byte RandomNumberGenerator::GenerateByte() |