Sample code for 30+ languages & platforms
Xojo Plugin

Example: Crypt2.CrcFile method

Demonstrates how to call the CrcFile method.

Chilkat Xojo Plugin Downloads

Xojo Plugin
Dim crypt As New Chilkat.Crypt2

Dim filePath As String
filePath = "c:/temp/someFile.dat"

Dim crc32 As UInt32
crc32 = crypt.CrcFile("crc-32",filePath)
System.DebugLog(Str(crc32))

Dim crc8 As UInt32
crc8 = crypt.CrcFile("crc8",filePath)
System.DebugLog(Str(crc8))