unsigned static method

int unsigned(
  1. List<int> input, [
  2. int crc = 0
])

Computes a CRC32 value for the given input.

The return value is an unsigned 32-bit integer.

Implementation

static int unsigned(List<int> input, [int crc = 0]) {
  var value = _compute(input, crc);
  return value & 0xffffffff;
}