mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-03-18 00:22:10 +00:00
8 lines
165 B
Python
8 lines
165 B
Python
|
|
from crc import Calculator, Crc8
|
||
|
|
|
||
|
|
expected = 0xBC
|
||
|
|
data = bytes([0, 1, 2, 3, 4, 5])
|
||
|
|
calculator = Calculator(Crc8.CCITT)
|
||
|
|
|
||
|
|
assert expected == calculator.checksum(data)
|