Advertising banner:

History
 
 CRC32
Home • Help • A0 • Customization Tools • FCAS • Language Reference • CRC32
 
CRC32 (general internal functions)
Minimum version: 4.0
Purpose
Generates a CRC32 for a provided string or binary variable using the Ethernet/Zip polynomial.
Syntax
CRC32 (String | Variable)


String|Variable
The string or binary variable for which you want to generate a CRC32.

Example
Dim MyCRC as Integer
Dim MyString as String
MyString = "This is some data to be CRC'd"
Debug (CRC32 (MyString))