Update CRC Value

Updating with string data

v = crc.crc8_update(v, txt)
v = crc.crc16_update(v, txt)
v = crc.crc32_update(v, txt)
v = crc.crcxmodem_update(v, txt)

Update the CRC v with txt.

Updating with integer values

v = crc.crc8_update(v, v1, v2, ...)
v = crc.crc16_update(v, v1, v2, ...)
v = crc.crc32_update(v, v1, v2, ...)
v = crc.crcxmodem_update(v, v1, v2, ...)

Update the CRC v with values v1, v2, etc. (from 1 to n values)

Allows CRC calculations on chunks of data.