forked from UNUF/TFTTool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNextionChecksum.py
32 lines (29 loc) · 946 Bytes
/
NextionChecksum.py
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
"""
Nextion uses a CRC32 type algorithm.
"""
class Checksum:
def CRC(self, data, salt: int = 0xffffffff, skip: int = 0, length: int = -1):
if length < 0:
length = len(data)
data = data[skip:length]
if type(data) is bytes:
data = [int(b) for b in data]
return self._CRC32(data, salt)
def _CRC32(self, l: list, xorIn=0xffffffff, xorOut=0):
poly = 0x4c11db7
poly |= (1 << 32) # kill the bit that would normally be shifted out of the register
reg = 0
l = l + [0]
l[0] ^= xorIn
for word in l:
for i in range(32):
reg <<= 1
if word >= (1 << 31):
reg += 1
word <<= 1
word &= 0xffffffff
if reg >= (1 << 32):
reg ^= poly
reg &= 0xffffffff # ((1 << 32) - 1)
reg ^= xorOut
return reg