crc32code function

int crc32code(
  1. String input, {
  2. Encoding? encoding,
  3. CRC32Params params = CRC32Params.ieee,
})

Gets the CRC-32 value.

Parameters:

  • input is the string to hash
  • The encoding is the encoding to use. Default is input.codeUnits
  • The params is the parameters to use. Default: CRC32Params.ieee

Implementation

int crc32code(
  String input, {
  Encoding? encoding,
  CRC32Params params = CRC32Params.ieee,
}) =>
    CRC32(params).code(input, encoding);