Checksums
Function: Crc32
Description:
Calculates the CRC-32 checksum for the provided data.
Parameters:
- data
: The byte array for which the CRC-32 checksum should be calculated.
Return Value:
Returns a byte array containing the CRC-32 checksum.
Usage Example | |
---|---|
Function: Crc16
Description:
Calculates the CRC-16 checksum for the provided data.
Parameters:
- data
: The byte array for which the CRC-16 checksum should be calculated.
Return Value:
Returns a byte array containing the CRC-16 checksum.
Usage Example | |
---|---|
Function: Crc16T
Description:
Calculates a variant of the CRC-16 checksum, possibly with a different polynomial or algorithm, for the provided data.
Parameters:
- data
: The byte array for which the CRC-16T checksum should be calculated.
Return Value:
Returns a byte array containing the CRC-16T checksum.