CRC24 Checksum
Description
This operation calculates a 24-bit Cyclic Redundancy Check (CRC) value for a given input. A cyclic redundancy check (CRC) is an error-detecting code commonly used in digital networks and storage devices to detect accidental changes to raw data.
The algorithm uses a fixed 24-bit polynomial to calculate a short "fingerprint" of the input data, resulting in a 24-bit (one-byte) checksum. This checksum can detect certain types of errors, like single-bit errors or burst errors up to 24 bits, by recalculating the checksum and comparing it with the original.
Data types
These are the input/output expected data types for this operation:
Input data
- Data you want to compute the CRC-24 checksum for.
Output data
- CRC-24 values of your input data.
Example
Suppose you want to calculate the CRC-24 of a specific set of data:
In your Pipeline, open the required Action configuration and select the input Field.
In the Operation field, choose CRC24 Checksum.
Give your Output field a name and click Save. The operation will calculate the CRC24 codes for the strings in your input field. For example:
Last updated
Was this helpful?