UNPKG

@hqtsm/crc

Version:

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

12 lines 239 B
/** * @module * * CRC-32/AIXM */ import { crc } from '../crc.js'; /** * CRC-32/AIXM */ export const CRC_32_AIXM = crc(32, 0x814141ab, false, 0x00000000, false, 0x00000000); export default CRC_32_AIXM; //# sourceMappingURL=aixm.js.map