Add files via upload

This commit is contained in:
Alfa
2018-05-23 17:02:40 -05:00
committed by GitHub
parent 74ec8311e6
commit 117b8979c3
2 changed files with 9 additions and 5 deletions
+1 -1
View File
@@ -169,7 +169,7 @@ class Client(object):
#decryptor = aes.AESModeOfOperationCBC(key, iv='\0' * 16)
except:
import jscrypto
decryptor = jscrypto.new(key, AES.MODE_CBC, '\0' * 16)
decryptor = jscrypto.new(key, jscrypto.MODE_CBC, '\0' * 16)
return decryptor.decrypt(data)
def aes_cbc_decrypt_a32(self,data, key):