-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCRC.pas
72 lines (61 loc) · 1.87 KB
/
CRC.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
(*
* File: $RCSfile: CRC.pas,v $
* Revision: $Revision: 1.1.1.1 $
* Version : $Id: CRC.pas,v 1.1.1.1 2002/04/21 12:57:16 fobmagog Exp $
* Author: $Author: fobmagog $
* Homepage: http://delphimpeg.sourceforge.net/
*
* This program 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 of the License, or
* (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*)
unit CRC;
interface
const
POLYNOMIAL: Word = $8005;
type
TCRC16 = class
private
FCRC: Word;
public
constructor Create;
procedure AddBits(BitString: Cardinal; Length: Cardinal);
function Checksum: Word;
end;
implementation
{ TCRC16 }
// feed a bitstring to the crc calculation (0 < length <= 32)
procedure TCRC16.AddBits(BitString, Length: Cardinal);
var BitMask: Cardinal;
begin
BitMask := 1 shl (Length - 1);
repeat
if ((FCRC and $8000 = 0) xor (BitString and BitMask = 0)) then begin
FCRC := FCRC shl 1;
FCRC := FCRC xor POLYNOMIAL;
end else
FCRC := FCRC shl 1;
BitMask := BitMask shr 1;
until (BitMask = 0);
end;
// return the calculated checksum and erase it for next calls to add_bits()
function TCRC16.Checksum: Word;
begin
Result := FCRC;
FCRC := $FFFF;
end;
constructor TCRC16.Create;
begin
FCRC := $FFFF;
end;
end.