UNPKG

@hqtsm/crc

Version:

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

12 lines 221 B
/** * @module * * CRC-8/HITAG */ import { crc } from '../crc.js'; /** * CRC-8/HITAG */ export const CRC_8_HITAG = crc(8, 0x1d, false, 0xff, false, 0x00); export default CRC_8_HITAG; //# sourceMappingURL=hitag.js.map