@hqtsm/crc
Version:
CRC functions with a parameterized engine optimized for both speed and size
22 lines (18 loc) • 296 B
text/typescript
/**
* @module
*
* CRC-64/GO-ISO
*/
import { crc, type CrcInterface } from '../crc.js';
/**
* CRC-64/GO-ISO
*/
export const CRC_64_GO_ISO = crc(
64n,
0x000000000000001bn,
true,
0x0000000000000000n,
true,
0x0000000000000000n,
) as CrcInterface<bigint>;
export default CRC_64_GO_ISO;