$process method
Processes a chunk of input data
Implementation
@override
void $process(List<int> chunk, int start, int end) {
for (; start < end; start++, pos++, messageLength++) {
if (pos == blockLength) {
$update();
pos = 0;
}
buffer[pos] = chunk[start];
}
}