gpg: small fixes before merging to master

This commit is contained in:
Roman Zeyde
2016-04-24 10:33:29 +03:00
parent b6dbc4aa81
commit a114242243
3 changed files with 44 additions and 39 deletions

View File

@@ -78,8 +78,8 @@ def frame(*msgs):
def crc24(blob):
CRC24_INIT = 0xB704CEL
CRC24_POLY = 0x1864CFBL
CRC24_INIT = 0x0B704CE
CRC24_POLY = 0x1864CFB
crc = CRC24_INIT
for octet in bytearray(blob):