⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 crc32.c

📁 GNUnet是一个安全的点对点网络框架
💻 C
字号:
/*     This file is part of GNUnet.     (C) 2001, 2002, 2003, 2004, 2006 Christian Grothoff (and other contributing authors)     GNUnet is free software; you can redistribute it and/or modify     it under the terms of the GNU General Public License as published     by the Free Software Foundation; either version 2, or (at your     option) any later version.     GNUnet is distributed in the hope that it will be useful, but     WITHOUT ANY WARRANTY; without even the implied warranty of     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU     General Public License for more details.     You should have received a copy of the GNU General Public License     along with GNUnet; see the file COPYING.  If not, write to the     Free Software Foundation, Inc., 59 Temple Place - Suite 330,     Boston, MA 02111-1307, USA.     For the actual CRC code:     Copyright abandoned; this code is in the public domain.     Provided to GNUnet by peter@horizon.com*//** * @file util/crypto/crc32.c * @brief implementation of CRC32 * @author Christian Grothoff */#include "platform.h"#include "gnunet_util_error.h"#include "gnunet_util_crypto.h"/* Avoid wasting space on 8-byte longs. */#if UINT_MAX >= 0xfffffffftypedef unsigned int uLong;#elif ULONG_MAX >= 0xfffffffftypedef unsigned long uLong;#else#error This compiler is not ANSI-compliant!#endif#define Z_NULL  0#define POLYNOMIAL (uLong)0xedb88320static uLong crc_table[256];/* * This routine writes each crc_table entry exactly once, * with the ccorrect final value.  Thus, it is safe to call * even on a table that someone else is using concurrently. */void __attribute__ ((constructor)) GNUNET_crc32_init (){  unsigned int i, j;  uLong h = 1;  crc_table[0] = 0;  for (i = 128; i; i >>= 1)    {      h = (h >> 1) ^ ((h & 1) ? POLYNOMIAL : 0);      /* h is now crc_table[i] */      for (j = 0; j < 256; j += 2 * i)        crc_table[i + j] = crc_table[j] ^ h;    }}/* * This computes the standard preset and inverted CRC, as used * by most networking standards.  Start by passing in an initial * chaining value of 0, and then pass in the return value from the * previous crc32() call.  The final return value is the CRC. * Note that this is a little-endian CRC, which is best used with * data transmitted lsbit-first, and it should, itself, be appended * to data in little-endian byte and bit order to preserve the * property of detecting all burst errors of length 32 bits or less. */static uLongcrc32 (uLong crc, const char *buf, size_t len){  GNUNET_GE_ASSERT (NULL, crc_table[255] != 0);  crc ^= 0xffffffff;  while (len--)    crc = (crc >> 8) ^ crc_table[(crc ^ *buf++) & 0xff];  return crc ^ 0xffffffff;}/** * Compute the CRC32 checksum for the first len bytes of the buffer. * * @param buf the data over which we're taking the CRC * @param len the length of the buffer * @return the resulting CRC32 checksum */intGNUNET_crc32_n (const void *buf, unsigned int len){  uLong crc;  crc = crc32 (0L, Z_NULL, 0);  crc = crc32 (crc, (char *) buf, len);  return crc;}/* end of crc32.c */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -