UNPKG

@hqtsm/crc

Version:

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

20 lines (17 loc) 227 B
/** * @module * * CRC-31/PHILIPS */ import { crc, type CrcInterface } from '../crc.js'; /** * CRC-31/PHILIPS */ export default crc( 31, 0x04c11db7, false, 0x7fffffff, false, 0x7fffffff, ) as CrcInterface<number>;