nextUint8 method
Get one byte long random int.
Implementation
@override
int nextUint8() {
if (_used == _output.length) {
cipher.processBlock(_input, 0, _output, 0);
_used = 0;
_incrementInput();
}
return clip8(_output[_used++]);
}