:py:mod:`dissect.util.crc32c` ============================= .. py:module:: dissect.util.crc32c Module Contents --------------- Functions ~~~~~~~~~ .. autoapisummary:: :nosignatures: dissect.util.crc32c.update dissect.util.crc32c.crc32c .. py:function:: update(crc: int, data: bytes) -> int Update CRC32C checksum with data. :param crc: The initial value of the checksum. :param data: The data to update the checksum with. .. py:function:: crc32c(data: bytes, value: int = 0) -> int Calculate CRC32C checksum of some data, with an optional initial value. :param data: The data to calculate the checksum of. :param value: The initial value of the checksum. Default is 0.