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