Revert "TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags"
[wireshark-sm.git] / wsutil / crc11.h
blob3c48dd5cd57affedd7d8bb96becad1039abd4994
1 /** @file
2 * http://www.tty1.net/pycrc/faq_en.html#code-ownership
4 * Wireshark - Network traffic analyzer
5 * By Gerald Combs <gerald@wireshark.org>
6 * Copyright 1998 Gerald Combs
8 * SPDX-License-Identifier: GPL-2.0-or-later
9 */
11 #ifndef __CRC11_____H__
13 #include <stdint.h>
15 #include "ws_symbol_export.h"
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20 /**
21 * Functions and types for CRC checks.
23 * Generated on Tue Aug 7 15:45:57 2012,
24 * by pycrc v0.7.10, http://www.tty1.net/pycrc/
25 * using the configuration:
26 * Width = 11
27 * Poly = 0x307
28 * XorIn = 0x000
29 * ReflectIn = False
30 * XorOut = 0x000
31 * ReflectOut = False
32 * Algorithm = table-driven
33 *****************************************************************************/
34 WS_DLL_PUBLIC
35 uint16_t crc11_307_noreflect_noxor(const uint8_t *data, uint64_t data_len);
37 #ifdef __cplusplus
38 } /* closing brace for extern "C" */
39 #endif
41 #endif /*__CRC11_____H__*/