@override Uint8List generateInternal() { final b = Uint8List(16); for (var i = 0; i < 16; i++) { b[i] = _secureRandom.nextInt(256); } return b; }