UNPKG

@hqtsm/crc

Version:

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

12 lines 242 B
/** * @module * * CRC-32/ISCSI */ import { crc } from '../crc.js'; /** * CRC-32/ISCSI */ export const CRC_32_ISCSI = crc(32, 0x1edc6f41, true, 0xffffffff, true, 0xffffffff); export default CRC_32_ISCSI; //# sourceMappingURL=iscsi.js.map