UNPKG

@hqtsm/crc

Version:

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

12 lines 252 B
/** * @module * * CRC-32/AUTOSAR */ import { crc } from '../crc.js'; /** * CRC-32/AUTOSAR */ export const CRC_32_AUTOSAR = crc(32, 0xf4acfb13, true, 0xffffffff, true, 0xffffffff); export default CRC_32_AUTOSAR; //# sourceMappingURL=autosar.js.map