Adds a chunk of data for which checksum needs to be computed. This can be called many times with new data as it is streamed.
Implementations may override this method which passes second param which makes Checksum object stateless.
Returns the digest of all of the data passed.
Resets the checksum to its initial value.
Implements CRC-64/NVME checksum algorithm.
This class provides CRC-64 checksum calculation using the NVMe polynomial (0x9a6c9329ac4bc9b5). It uses an 8-slice lookup table for efficient computation.
Example