Skip to content

LZMA.CRC32

Andrew Lambert edited this page Nov 26, 2022 · 3 revisions

LZMA.CRC32

Method Signature

 Protected Function CRC32(Data As MemoryBlock, LastCRC As UInt32 = 0, DataSize As UInt32 = 0) As UInt32

Remarks

Calculate the CRC32 checksum for the Data. Pass back the returned value to continue processing.

  Dim crc As UInt32
  Do
    crc = CRC32(NextData, crc)
  Loop

If Data.Size is not known (-1) then specify the size as DataSize.

Clone this wiki locally