crc64code function

int crc64code(
  1. String input, {
  2. Encoding? encoding,
  3. CRC64Params params = CRC64Params.iso,
})

Gets the CRC-64 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: CRC64Params.iso

Implementation

int crc64code(
  String input, {
  Encoding? encoding,
  CRC64Params params = CRC64Params.iso,
}) =>
    CRC64(params).code(input, encoding);