Allow decryption with DSN only.

This commit is contained in:
Dan Walters 2019-06-14 14:20:56 -05:00
parent b71ed3887e
commit 3f591ce66f
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ class KFXZipBook:
print u'Decrypting KFX DRM voucher: {0}'.format(info.filename)
for pid in [''] + totalpids:
for dsn_len,secret_len in [(0,0), (16,0), (16,40), (32,40), (40,40)]:
for dsn_len,secret_len in [(0,0), (16,0), (16,40), (32,40), (40,0), (40,40)]:
if len(pid) == dsn_len + secret_len:
break # split pid into DSN and account secret
else: