Skip to content
forked from akiver/crc64-ecma

Calculate CRC64-ECMA182 (reversed polynomial) hashes for NodeJS.

License

Notifications You must be signed in to change notification settings

playi/crc64-ecma

 
 

Repository files navigation

crc64-ecma

Calculate CRC64-ECMA182 hashes using reversed polynomial for NodeJS.

Installation

yarn add crc64-ecma

Usage

import { crc64 } from 'crc64-ecma';

const data = 'Hello';
const crc = crc64(data);
// Output: 51cf5c3bc87bacc8
console.log(crc.toString(16));

License

GPL v2

About

Calculate CRC64-ECMA182 (reversed polynomial) hashes for NodeJS.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 97.0%
  • JavaScript 3.0%