fix key size

This commit is contained in:
破娃酱 2017-05-14 16:42:48 +08:00
parent 67065a212f
commit 96200d7d76

View file

@ -74,7 +74,7 @@ class NoneCipher(object):
ciphers = {
'none': (16, 0, NoneCipher),
'table': (0, 0, TableCipher)
'table': (16, 0, TableCipher)
}