-
-
Notifications
You must be signed in to change notification settings - Fork 0
LZMA.CRC32
Andrew Lambert edited this page Nov 26, 2022
·
3 revisions
LZMA.CRC32
Protected Function CRC32(Data As MemoryBlock, LastCRC As UInt32 = 0, DataSize As UInt32 = 0) As UInt32
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
.
Wiki home | Project page | Bugs | Become a sponsor
Text and code examples are Copyright ©2020-24 Andrew Lambert, offered under the CC BY-SA 3.0 License.