@override void updateByte(int inp) { _buffer[_bufferPos++] = inp & 0xFF; _totalLength++; if (_bufferPos == _blockSize) { _processBlock(_buffer); _bufferPos = 0; } }