quickDigest static method
Calculates the XModem CRC (Cyclic Redundancy Check) for the given data.
Parameters:
data: The data block for which to calculate the CRC.
Implementation
static List<int> quickDigest(List<int> data) {
return _calculateXmodemCrc(data);
}