Definition in file crc16_ccitt.h.
#include <stdint.h>#include <stdlib.h>
Include dependency graph for crc16_ccitt.h:Go to the source code of this file.
Functions | |
| uint16_t | crc16_ccitt_kermit_update (uint16_t crc, const unsigned char *buf, size_t len) |
| Update CRC16-CCITT-KERMIT. More... | |
| uint16_t | crc16_ccitt_kermit_calc (const unsigned char *buf, size_t len) |
| Calculate CRC16-CCITT-KERMIT. More... | |
| uint16_t | crc16_ccitt_fcs_start (const unsigned char *buf, size_t len) |
| Start a CRC16-CCITT-FCS / IBM-SDLC calculation. More... | |
| static uint16_t | crc16_ccitt_fcs_update (uint16_t crc, const unsigned char *buf, size_t len) |
| Update CRC16-CCITT-FCS / IBM-SDLC. More... | |
| uint16_t | crc16_ccitt_fcs_finish (uint16_t crc, const unsigned char *buf, size_t len) |
| Finalise CRC16-CCITT-FCS / IBM-SDLC. More... | |
| uint16_t | crc16_ccitt_fcs_calc (const unsigned char *buf, size_t len) |
| Calculate CRC16-CCITT-FCS / IBM-SDLC in one pass. More... | |
| static uint16_t | crc16_ccitt_mcrf4xx_update (uint16_t crc, const unsigned char *buf, size_t len) |
| Update CRC16-CCITT-MCRF4XX. More... | |
| uint16_t | crc16_ccitt_mcrf4xx_calc (const unsigned char *buf, size_t len) |
| Calculate CRC16-CCITT-MCRF4XX. More... | |
| uint16_t | crc16_ccitt_false_update (uint16_t crc, const unsigned char *buf, size_t len) |
| Update CRC16-CCITT-FALSE. More... | |
| uint16_t | crc16_ccitt_false_calc (const unsigned char *buf, size_t len) |
| Calculate CRC16-CCITT-FALSE. More... | |
| static uint16_t | crc16_ccitt_aug_update (uint16_t crc, const unsigned char *buf, size_t len) |
| Update CRC16-CCITT-AUG. More... | |
| uint16_t | crc16_ccitt_aug_calc (const unsigned char *buf, size_t len) |
| Calculate CRC16-CCITT-AUG. More... | |