1.0.2 • Published 3 years ago

@fuknando/crc8-maxim v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

A cyclic redundancy check (CRC) node module.
It supports crc8 MAXIM algorithm.

Acknowledgement

This a library was cloned from easy-crc library. It was modified for a specific use of one of the CRC-8 Algorithm.

Installation

npm install @fuknando/crc8-maxim
yarn add @fuknando/crc8-maxim

Usage

import { crc8 } from '@fuknando/crc8-maxim';

// CRC8
let data = 'AA5503005012';
let checksum = crc8(data);

console.log(checksum);// "0A"

Available algorithms

CRC8

  • MAXIM
1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago

0.0.1

3 years ago