crc16 top-level constant
A CRC or cyclic redundancy check is code commonly used for error detection and correction of digital data. This generates a 16-bit number as output.
This implementation uses IBM polynomial 0xA001
.
WARNING: It should not be used for cryptographic purposes.
Implementation
const HashBase crc16 = _CRC16();