xclud / dart_crc

MIT License
2 stars 2 forks source link

CRC calculator written in Dart supporting 50+ different CRC8, CRC16, CRC32 and CRC64 formulas.

Features

CRC8

CRC16

CRC32

CRC64

Getting started

In your pubspec.yaml file add:

dependencies:
  crc: any

Usage

const data = Uint8List.fromList([1, 2, 3, 4, 5]);
final crc16 = xmodem.calculate(data);