B4X
B4X
Example: Crypt2.CrcFile method
Demonstrates how to call the CrcFile method.Chilkat B4X Downloads
Dim crypt As ChilkatCrypt2
crypt.Initialize("crypt")
Dim filePath As String = "c:/temp/someFile.dat"
Dim crc32 As Long = crypt.CrcFile("crc-32", filePath)
Log(crc32)
Dim crc8 As Long = crypt.CrcFile("crc8", filePath)
Log(crc8)