Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 283 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 283 Bytes

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.