UNPKG

@hqtsm/crc

Version:

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

22 lines (18 loc) 274 B
/** * @module * * CRC-31/PHILIPS */ import { crc, type CrcInterface } from '../crc.js'; /** * CRC-31/PHILIPS */ export const CRC_31_PHILIPS = crc( 31, 0x04c11db7, false, 0x7fffffff, false, 0x7fffffff, ) as CrcInterface<number>; export default CRC_31_PHILIPS;