![]() |
Wireshark
4.3.0
The Wireshark network protocol analyzer
|
#include <wireshark.h>
Go to the source code of this file.
Functions | |
WS_DLL_PUBLIC uint8_t | crc8_0x2F (const uint8_t *buf, uint32_t len, uint8_t seed) |
WS_DLL_PUBLIC uint8_t | crc8_0x37 (const uint8_t *buf, uint32_t len, uint8_t seed) |
WS_DLL_PUBLIC uint8_t | crc8_0x3B (const uint8_t *buf, uint32_t len, uint8_t seed) |
Declaration of CRC-8 routine and tables
2011 Roland Knall rknal l@gm ail.c om
Wireshark - Network traffic analyzer By Gerald Combs geral Copyright 1998 Gerald Combs d@wi resha rk.o rg
SPDX-License-Identifier: GPL-2.0-or-later
WS_DLL_PUBLIC uint8_t crc8_0x2F | ( | const uint8_t * | buf, |
uint32_t | len, | ||
uint8_t | seed | ||
) |
Calculates a CRC8 checksum for the given buffer with the polynom 0x2F using the precompiled CRC table
buf | a pointer to a buffer of the given length |
len | the length of the given buffer |
seed | The seed to use. |
WS_DLL_PUBLIC uint8_t crc8_0x37 | ( | const uint8_t * | buf, |
uint32_t | len, | ||
uint8_t | seed | ||
) |
Calculates a CRC8 checksum for the given buffer with the polynom 0x37 using the precompiled CRC table
buf | a pointer to a buffer of the given length |
len | the length of the given buffer |
seed | The seed to use. |
WS_DLL_PUBLIC uint8_t crc8_0x3B | ( | const uint8_t * | buf, |
uint32_t | len, | ||
uint8_t | seed | ||
) |
Calculates a CRC8 checksum for the given buffer with the polynom 0x3B using the precompiled CRC table
buf | a pointer to a buffer of the given length |
len | the length of the given buffer |
seed | The seed to use. |