The FreeRADIUS server
$Id: 15bac2a4c627c01d1aa2047687b3418955ac7f00 $
|
Go to the source code of this file.
Functions | |
uint16_t | fr_crc16_xmodem (uint8_t const *in, size_t in_len) |
CRC16 implementation according to CCITT standards. More... | |
CRC16 implementation according to CCITT standards.
Note by antirez: this is actually the XMODEM CRC 16 algorithm, using the following parameters:
Name : "XMODEM", also known as "ZMODEM", "CRC-16/ACORN" Width : 16 bit Poly : 1021 (That is actually x^16 + x^12 + x^5 + 1) Initialization : 0000 Reflect Input byte : False Reflect Output CRC : False Xor constant to output CRC : 0000 Output for "123456789" : 31C3
[in] | in | Data to perform CRC on. |
[in] | in_len | Length of data. |
Definition at line 91 of file crc16.c.