blob: 1d0deb9b836582996ab61e7ce482426895d01b8b (
plain)
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
|
/*
Copyright 2016-2022 melonDS team
This file is part of melonDS.
melonDS 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 3 of the License, or (at your option)
any later version.
melonDS 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 melonDS. If not, see http://www.gnu.org/licenses/.
*/
#include "CRC32.h"
// http://www.codeproject.com/KB/recipes/crc32_large.aspx
u32 crctable[256];
bool tableinited = false;
u32 _reflect(u32 refl, char ch)
{
u32 value = 0;
for(int i = 1; i < (ch + 1); i++)
{
if (refl & 1)
value |= 1 << (ch - i);
refl >>= 1;
}
return value;
}
void _inittable()
{
u32 polynomial = 0x04C11DB7;
for (int i = 0; i < 0x100; i++)
{
crctable[i] = _reflect(i, 8) << 24;
for (int j = 0; j < 8; j++)
crctable[i] = (crctable[i] << 1) ^ (crctable[i] & (1 << 31) ? polynomial : 0);
crctable[i] = _reflect(crctable[i], 32);
}
}
u32 CRC32(const u8 *data, int len, u32 start)
{
if (!tableinited)
{
_inittable();
tableinited = true;
}
u32 crc = start ^ 0xFFFFFFFF;
while (len--)
crc = (crc >> 8) ^ crctable[(crc & 0xFF) ^ *data++];
return (crc ^ 0xFFFFFFFF);
}
|