Basic Image AlgorithmS Library  2.8.0
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
Checksum.cpp
1 /*
2 This file is part of the BIAS library (Basic ImageAlgorithmS).
3 
4 Copyright (C) 2003-2009 (see file CONTACT for details)
5  Multimediale Systeme der Informationsverarbeitung
6  Institut fuer Informatik
7  Christian-Albrechts-Universitaet Kiel
8 
9 
10 BIAS is free software; you can redistribute it and/or modify
11 it under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
13 (at your option) any later version.
14 
15 BIAS is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU Lesser General Public License for more details.
19 
20 You should have received a copy of the GNU Lesser General Public License
21 along with BIAS; if not, write to the Free Software
22 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 */
24 
25 #include "Checksum.hh"
26 
27 using namespace BIAS;
28 
29 // CRC-CCITT-16 polynominal:
30 // x^16+x^12+x^5+1 = (1) 0001 0000 0010 0001 = 0x1021
31 
33 
35 
36 // calculates CCITT-16 checksum with most significant bit first MSB
37 bool Checksum::
38 CalcCRC_CCITT16(unsigned int& crc,unsigned char* input, unsigned length)
39 {
40  crc = 0;
41  for(unsigned i=0;i<length;i++)
42  {
43  crc = crc ^ (input[i] << 8);
44  for(unsigned j=0;j<8;j++){
45  if(crc & 0x8000) { // if leftmost (most significant) bit is set
46  // CRC-CCITT-16 polynominal:
47  // x^16+x^12+x^5+1 = (1) 0001 0000 0010 0001 = 0x1021
48  crc = (crc << 1) ^ 0x1021;
49  } else {
50  crc = (crc << 1);
51  }
52  crc = crc & 0xffff; // Trim remainder to 16 bits
53  }
54  }
55  return true;
56 }
virtual ~Checksum()
Definition: Checksum.cpp:34
static bool CalcCRC_CCITT16(unsigned int &crc, unsigned char *input, unsigned lenght)
Calculates CCITT-16 checksum with most significant bit first MSB.
Definition: Checksum.cpp:38