Expand description
FIX checksum calculation.
The FIX checksum is the sum of all bytes in the message (excluding the checksum field itself) modulo 256, formatted as a 3-digit zero-padded string.
Functionsยง
- calculate_
checksum - Calculates the FIX checksum for the given data.
- format_
checksum - Formats a checksum value as a 3-digit zero-padded string.
- parse_
checksum - Parses a 3-digit checksum string to a u8 value.