ihou / CRC32

A cyclic redundancy check calculator written in pure Dart.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CRC32

This project is a Dart implementation of CRC32.

Examples

import 'package:crc32/crc32.dart');

void main() {
  print(CRC32.compute("testing out")); // 316532775 (which in hex format is 12dde827).
}

License

This library is licensed under MIT.

About

A cyclic redundancy check calculator written in pure Dart.

License:MIT License


Languages

Language:Dart 100.0%