e-CryptIt Engine - Checksums Xojo Plugin |
|
EinhugurChecksum.Crc32 Method (console safe)
To compute a checksum using the CRC32 algorithm. (Deprecated)
Crc32(
bytes as String,
crc as UInt32) as UInt32
Parameters
- bytes
- The bytes to calculate.
- crc
- The crc32 value to calculate from.
Returns
- UInt32
Remarks
A good way to represent the checksum as an Hex string:
myString = Right("0000000"+HEX(mycrc), 8)
This method is deprecated. Use the CRC32 class in Generic mode to replace it.
Supported Platforms:
macOS Intel 64 bitmacOS Apple SiliconWindows 32 bitWindows 64 bitWindows ARM 64 bitLinux 32 bitLinux 64 bitLinux ARM 32 bitLinux ARM 64 bitiOS
See Also
EinhugurChecksum Module