crc16

ZMODEM CRC (CRC-16/ACORN, CRC-16/LTE) calculation.

@safe pure nothrow @safe @nogc
void
crc16
(
ref ushort crc
,
in ubyte[] buff
)

Parameters

crc ushort

current CRC value Should be zero at start of calculation. Result of each calculation will be plased to it.

buff ubyte[]

bytes for calculation

Meta