UNPKG

@hqtsm/crc

Version:

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

12 lines 248 B
/** * @module * * CRC-24/OPENPGP */ import { crc } from '../crc.js'; /** * CRC-24/OPENPGP */ export const CRC_24_OPENPGP = crc(24, 0x864cfb, false, 0xb704ce, false, 0x000000); export default CRC_24_OPENPGP; //# sourceMappingURL=openpgp.js.map