-
Notifications
You must be signed in to change notification settings - Fork 0
/
rk-crc.c
86 lines (71 loc) · 1.76 KB
/
rk-crc.c
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
73
74
75
76
77
78
79
80
81
82
83
84
85
/* Copyright 2024 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <stdbool.h>
#include "rk-crc.h"
static uint32_t Crc32Table[256];
static uint16_t Crc16Table[256];
void Crc32Init(void)
{
uint32_t Poly = 0x04C10DB7U; // 1 bit difference polynomial than standard!
uint32_t i, j, c;
for (i = 0; i < 256; i++) {
c = i << 24;
for (j = 0; j < 8; j++) {
bool bIsSet;
bIsSet = (c & 0x80000000U);
c <<= 1;
if (bIsSet) {
c ^= Poly;
}
}
Crc32Table[i] = c;
}
}
uint32_t Crc32(uint32_t c, const void *pBuffer, size_t Length)
{
const uint8_t *pBytes = (const uint8_t *)pBuffer;
size_t i;
for (i = 0; i < Length; i++) {
c = (c << 8) ^ Crc32Table[(c >> 24) ^ pBytes[i]];
}
return c;
}
void Crc16Init(void)
{
uint16_t Poly = 0x1021U;
uint16_t i, j, c;
for (i = 0; i < 256; i++) {
c = i << 8;
for (j = 0; j < 8; j++) {
bool bIsSet;
bIsSet = (c & 0x8000);
c <<= 1;
if (bIsSet) {
c ^= Poly;
}
}
Crc16Table[i] = c;
}
}
uint16_t Crc16(uint16_t c, const void *pBuffer, size_t Length)
{
const uint8_t *pBytes = (const uint8_t *)pBuffer;
size_t i;
for (i = 0; i < Length; i++) {
c = (c << 8) ^ Crc16Table[(c >> 8) ^ pBytes[i]];
}
return c;
}