1
0
mirror of https://github.com/rene-dev/stmbl.git synced 2024-12-22 16:42:19 +00:00
stmbl/tools/checkcrc.py

13 lines
256 B
Python
Raw Permalink Normal View History

2015-12-03 10:24:30 +00:00
#!/usr/bin/env python
import binascii
import sys
buf = open(sys.argv[1],'rb').read()
buf = (binascii.crc32(buf) & 0xFFFFFFFF)
if buf == 0:
print "crc ok!"
sys.exit(0)
else:
print "This should not happen. Please report a bug."
sys.exit(-1)