crc64-ecma
Version:
Calculate CRC64/XZ hashes for NodeJS.
25 lines (15 loc) • 439 B
Markdown
Calculate CRC64/XZ hashes for NodeJS.
**The module name is `crc64-ecma` but it uses the [CRC64/XZ algorithm](https://reveng.sourceforge.io/crc-catalogue/17plus.htm#crc.cat.crc-64-xz).**
`npm install crc64-ecma`
```js
import { crc64 } from 'crc64-ecma';
const data = 'Hello';
const crc = crc64(data);
// Output: 51cf5c3bc87bacc8
console.log(crc.toString(16));
```
[](LICENSE)