UNPKG

@hqtsm/crc

Version:

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

12 lines 280 B
/** * @module * * CRC-82/DARC */ import { crc } from '../crc.js'; /** * CRC-82/DARC */ export const CRC_82_DARC = crc(82n, 0x0308c0111011401440411n, true, 0x000000000000000000000n, true, 0x000000000000000000000n); export default CRC_82_DARC; //# sourceMappingURL=darc.js.map