1 /* 2 * crc11.h 3 * http://www.tty1.net/pycrc/faq_en.html#code-ownership 4 * 5 * Wireshark - Network traffic analyzer 6 * By Gerald Combs <gerald@wireshark.org> 7 * Copyright 1998 Gerald Combs 8 * 9 * SPDX-License-Identifier: GPL-2.0-or-later 10 */ 11 12 #ifndef __CRC11_____H__ 13 14 #include <glib.h> 15 16 #include "ws_symbol_export.h" 17 18 #ifdef __cplusplus 19 extern "C" { 20 #endif 21 /** 22 * Functions and types for CRC checks. 23 * 24 * Generated on Tue Aug 7 15:45:57 2012, 25 * by pycrc v0.7.10, http://www.tty1.net/pycrc/ 26 * using the configuration: 27 * Width = 11 28 * Poly = 0x307 29 * XorIn = 0x000 30 * ReflectIn = False 31 * XorOut = 0x000 32 * ReflectOut = False 33 * Algorithm = table-driven 34 *****************************************************************************/ 35 WS_DLL_PUBLIC 36 guint16 crc11_307_noreflect_noxor(const guint8 *data, guint64 data_len); 37 38 #ifdef __cplusplus 39 } /* closing brace for extern "C" */ 40 #endif 41 42 #endif /*__CRC11_____H__*/ 43