UNPKG

@hqtsm/crc

Version:

CRC functions with a parameterized engine optimized for both speed and size

20 lines (17 loc) 247 B
/** * @module * * CRC-64/NVME */ import { crc, type CrcInterface } from '../crc.js'; /** * CRC-64/NVME */ export default crc( 64n, 0xad93d23594c93659n, true, 0xffffffffffffffffn, true, 0xffffffffffffffffn, ) as CrcInterface<bigint>;