Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
crc11.h
Go to the documentation of this file.
1
11#ifndef __CRC11_____H__
12
13#include <stdint.h>
14
15#include "ws_symbol_export.h"
16
17#ifdef __cplusplus
18extern "C" {
19#endif
52WS_DLL_PUBLIC
53uint16_t crc11_307_noreflect_noxor(const uint8_t *data, uint64_t data_len);
54
55#ifdef __cplusplus
56} /* closing brace for extern "C" */
57#endif
58
59#endif /*__CRC11_____H__*/
WS_DLL_PUBLIC uint16_t crc11_307_noreflect_noxor(const uint8_t *data, uint64_t data_len)
Compute the CRC-11/UMTS checksum using polynomial 0x307 with no reflection or final XOR.
Definition crc11.c:55