-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
HasherCrc32Traits.hpp
198 lines (153 loc) · 5.24 KB
/
HasherCrc32Traits.hpp
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
#pragma once
#include <stddef.h>
#include <stdint.h>
template<uint32_t __Polynomial>
struct HasherCrc32Traits {
static constexpr size_t BlockSize = 0;
static constexpr size_t DigestSize = 32 / 8;
using DigestType = uint32_t;
using LookupTableType = uint32_t[256];
struct ContextType {
uint32_t Value;
ContextType() noexcept :
Value(0) {}
ContextType(uint32_t InitialValue) noexcept :
Value(InitialValue) {}
ContextType(const ContextType& Other) noexcept = default;
ContextType(ContextType&& Other) noexcept : Value(Other.Value) {
Other.Value = 0;
}
ContextType& operator=(const ContextType& Other) noexcept = default;
ContextType& operator=(ContextType&& Other) noexcept {
Value = Other.Value;
Other.Value = 0;
return *this;
}
};
static const LookupTableType& InitializeLookupTable() noexcept {
static LookupTableType LookupTable = {};
if (LookupTable[1] == 0) {
for (unsigned i = 0; i < 256; ++i) {
uint32_t result = i;
for (unsigned j = 0; j < 8; ++j) {
if (result % 2) {
result /= 2;
result ^= __Polynomial;
} else {
result /= 2;
}
}
LookupTable[i] = result;
}
}
return LookupTable;
}
static inline const LookupTableType& LookupTable = InitializeLookupTable();
static inline ContextType ContextCreate() noexcept {
ContextType Ctx;
return Ctx;
}
static inline ContextType ContextCreate(const void* lpBuffer, size_t cbBuffer) noexcept {
ContextType Ctx;
ContextUpdate(Ctx, lpBuffer, cbBuffer);
return Ctx;
}
static inline ContextType ContextCreate(uint32_t InitialValue) noexcept {
ContextType Ctx(InitialValue);
return Ctx;
}
static inline ContextType ContextCreate(uint32_t InitialValue, const void* lpBuffer, size_t cbBuffer) noexcept {
ContextType Ctx;
ContextUpdate(Ctx, lpBuffer, cbBuffer);
return Ctx;
}
static inline ContextType ContextCopy(const ContextType& Ctx) noexcept {
return Ctx;
}
static inline void ContextUpdate(ContextType& Ctx, const void* lpBuffer, size_t cbBuffer) noexcept {
auto pbBuffer = reinterpret_cast<const uint8_t*>(lpBuffer);
Ctx.Value = ~Ctx.Value;
for (size_t i = 0; i < cbBuffer; ++i) {
Ctx.Value = (Ctx.Value >> 8) ^ LookupTable[static_cast<uint8_t>(Ctx.Value) ^ pbBuffer[i]];
}
Ctx.Value = ~Ctx.Value;
}
static inline void ContextEvaluate(const ContextType& Ctx, DigestType& Digest) noexcept {
Digest = Ctx.Value;
}
static inline void ContextDestroy(ContextType& Ctx) noexcept {
Ctx.Value = 0;
}
};
#ifdef _MSC_VER
#include <windows.h>
#ifdef __cplusplus
extern "C" {
#endif
#pragma comment(lib, "ntdll")
// available on WindowsXP and above
NTSYSAPI
DWORD
NTAPI
RtlComputeCrc32(
_In_ DWORD InitialCrc,
_In_reads_bytes_(Size) const void* Buffer,
_In_ size_t Size
);
#ifdef __cplusplus
}
#endif
template<>
struct HasherCrc32Traits<0xEDB88320> {
static constexpr size_t BlockSize = 0;
static constexpr size_t DigestSize = 32 / 8;
using DigestType = uint32_t;
struct ContextType {
uint32_t Value;
ContextType() noexcept :
Value(0) {}
ContextType(uint32_t InitialValue) noexcept :
Value(InitialValue) {}
ContextType(const ContextType& Other) noexcept = default;
ContextType(ContextType&& Other) noexcept : Value(Other.Value) {
Other.Value = 0;
}
ContextType& operator=(const ContextType& Other) noexcept = default;
ContextType& operator=(ContextType&& Other) noexcept {
Value = Other.Value;
Other.Value = 0;
return *this;
}
};
static inline ContextType ContextCreate() noexcept {
ContextType Ctx;
return Ctx;
}
static inline ContextType ContextCreate(const void* lpBuffer, size_t cbBuffer) noexcept {
ContextType Ctx;
ContextUpdate(Ctx, lpBuffer, cbBuffer);
return Ctx;
}
static inline ContextType ContextCreate(uint32_t InitialValue) noexcept {
ContextType Ctx(InitialValue);
return Ctx;
}
static inline ContextType ContextCreate(uint32_t InitialValue, const void* lpBuffer, size_t cbBuffer) noexcept {
ContextType Ctx;
ContextUpdate(Ctx, lpBuffer, cbBuffer);
return Ctx;
}
static inline ContextType ContextCopy(const ContextType& Ctx) noexcept {
return Ctx;
}
static inline void ContextUpdate(ContextType& Ctx, const void* lpBuffer, size_t cbBuffer) noexcept {
Ctx.Value = RtlComputeCrc32(Ctx.Value, lpBuffer, cbBuffer);
}
static inline void ContextEvaluate(const ContextType& Ctx, DigestType& Digest) noexcept {
Digest = Ctx.Value;
}
static inline void ContextDestroy(ContextType& Ctx) noexcept {
Ctx.Value = 0;
}
};
#endif // #ifdef _MSC_VER