This commit is contained in:
marco
2020-03-18 20:39:22 +01:00
parent 14a7ebd1d4
commit 9ff04b3627
+1
View File
@@ -184,6 +184,7 @@ class Client(object):
decrypted = '' decrypted = ''
for p in range(0, len(data), 16): for p in range(0, len(data), 16):
decrypted += decryptor.decrypt(data[p:p + 16]).replace('\0', '') decrypted += decryptor.decrypt(data[p:p + 16]).replace('\0', '')
logger.info(decrypted)
return decrypted return decrypted
def aes_cbc_decrypt_a32(self,data, key): def aes_cbc_decrypt_a32(self,data, key):