quickDigest static method

List<int> quickDigest(
  1. List<int> data
)

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);
}