crc.h
上传用户:hxb_1234
上传日期:2010-03-30
资源大小:8328k
文件大小:1k
源码类别:

VC书籍

开发平台:

Visual C++

  1. /*
  2.  *  @(#) crc.h 1.5, last edit: 6/15/94 16:55:32
  3.  *  @(#) Copyright (C) 1993, 1994 Tobias Bading (bading@cs.tu-berlin.de)
  4.  *  @(#) Berlin University of Technology
  5.  *
  6.  *  This program is free software; you can redistribute it and/or modify
  7.  *  it under the terms of the GNU General Public License as published by
  8.  *  the Free Software Foundation; either version 2 of the License, or
  9.  *  (at your option) any later version.
  10.  *
  11.  *  This program is distributed in the hope that it will be useful,
  12.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  *  GNU General Public License for more details.
  15.  *
  16.  *  You should have received a copy of the GNU General Public License
  17.  *  along with this program; if not, write to the Free Software
  18.  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  */
  20. #ifndef CRC_H
  21. #define CRC_H
  22. #include "all.h"
  23. // 16-Bit CRC checksum class:
  24. class Crc16
  25. {
  26.   static const uint16 polynomial;
  27.   uint16 crc;
  28. public:
  29.   Crc16() { crc = 0xFFFF; }
  30.   void  add_bits (uint32 bitstring, uint32 length);
  31.  // feed a bitstring to the crc calculation (0 < length <= 32)
  32.   uint16 checksum()
  33.   // return the calculated checksum and erase it for next calls to add_bits()
  34.   {
  35.     register uint16 sum = crc;
  36.     crc = 0xFFFF;
  37.     return sum;
  38.   }
  39. };
  40. #endif