mirror of
https://github.com/bvanroll/odiseectf.git
synced 2025-08-29 11:52:43 +00:00
idk man
This commit is contained in:
@@ -41,7 +41,10 @@ def decrypt_AES_CBC(inputfilename, encryptedContent):
|
||||
inputfilename)]
|
||||
|
||||
key = generatekey()
|
||||
decipher = AES.new(key, AES.MODE_CBC)
|
||||
temp = open("hash34.txt", "r").read()
|
||||
print(type(temp))
|
||||
print(type(key))
|
||||
decipher = AES.new(temp, AES.MODE_CBC)
|
||||
decryptedcontent = decipher.decrypt(encryptedContent)
|
||||
|
||||
ivlength = 16
|
||||
|
Reference in New Issue
Block a user