Sample code for 30+ languages & platforms
B4X

Example: Crypt2.CrcFile method

Demonstrates how to call the CrcFile method.

Chilkat B4X Downloads

B4X
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)