functional overview
Calculate CRC.
Details of Functions
binary databased onCalculation methodto calculate the CRC and return the result as a numerical value.
parameter
- argument (e.g. function, program, programme)
-
binary data binary data
Specify the target binary data.Calculation method numeric data
Specifies the CRC calculation method.- CRC-8
- CRC-8-ATM
- CRC-16-IBM
- CRC-16-CCITT
- CRC-32
bitwise shift Specifies the shift direction when calculating CRCs. - left shift (esp. in historical kana)
- right-feed
initial value Specifies the initial value when calculating the CRC. - 0x0000
- 0xFFFF
Output XOR Specifies the value for the XOR operation after the CRC calculation. - All bits 0
- All bits 1
output endian Specifies the endianness of the calculated result. - big endian
- little endian
- return value
-
binary data
Returns the calculated CRC.