sept-s: fix building without keys (output won't work though)

This commit is contained in:
Michael Scire
2019-02-20 13:26:54 -08:00
parent d0ff791260
commit 7d170259d3
3 changed files with 13 additions and 2 deletions

View File

@@ -3,7 +3,11 @@ import sys
from struct import pack as pk, unpack as up
from Crypto.Cipher import AES
from Crypto.Hash import CMAC
import KEYS
try:
import KEYS
except ImportError:
import KEYS_template as KEYS
print('Warning: output will not work on 7.0.0+!')
def shift_left_xor_rb(s):
N = int(s.encode('hex'), 16)