UNPKG

@hqtsm/crc

Version:

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

22 lines (18 loc) 256 B
/** * @module * * CRC-24/OS-9 */ import { crc, type CrcInterface } from '../crc.js'; /** * CRC-24/OS-9 */ export const CRC_24_OS_9 = crc( 24, 0x800063, false, 0xffffff, false, 0xffffff, ) as CrcInterface<number>; export default CRC_24_OS_9;