From 6e1f213fcac6ca3361fd35eac0dd627b8bd0619b Mon Sep 17 00:00:00 2001 From: Michael Mann Date: Wed, 26 Jun 2013 12:11:08 +0000 Subject: openSAFETY: CRC Maintenance, new CRC, new expert interface implemented. Bug 8847 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8847) From Roland Knall svn path=/trunk/; revision=50166 --- wsutil/crc16.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'wsutil/crc16.h') diff --git a/wsutil/crc16.h b/wsutil/crc16.h index 3529a1af6c..351b049e9f 100644 --- a/wsutil/crc16.h +++ b/wsutil/crc16.h @@ -72,6 +72,15 @@ WS_DLL_PUBLIC guint16 crc16_ccitt_seed(const guint8 *buf, guint len, guint16 see */ WS_DLL_PUBLIC guint16 crc16_0x5935(const guint8 *buf, guint32 len, guint16 seed); +/** Calculates a CRC16 checksum for the given buffer with the polynom + * 0x755B using a precompiled CRC table + * @param pBuffer a pointer to a buffer of the given length + * @param len the length of the given buffer + * @param seed The seed to use. + * @return the CRC16 checksum for the buffer + */ +WS_DLL_PUBLIC guint16 crc16_0x755B(const guint8 *buf, guint32 len, guint16 seed); + #ifdef __cplusplus } #endif /* __cplusplus */ -- cgit v1.2.1