Skip to content

Commit b04d9cc

Browse files
authored
Update crypto.py
Now support python3 instead of python2 :)
1 parent a7cb8b5 commit b04d9cc

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

crypto.py

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
#!/usr/bin/env python2
1+
#!/usr/bin/env python3
22

33
import os, argparse
44
from getpass import getpass
5-
# sudo pip install pycryptodome==3.6.1
5+
# sudo pip3 install pycryptodome // 3.21.0
66
from Crypto.Cipher import AES
77
from Crypto.Hash import SHA256
88
from Crypto import Random
@@ -40,7 +40,7 @@ def encrypt(key, filename, ig):
4040
size = os.path.getsize(filename) #+ 16
4141
filesize = str(size).zfill(16)
4242
IV = Random.new().read(16)
43-
secret = "0000hack1lab0000"
43+
secret = "0000hack1lab0000".encode("utf-8")
4444

4545
encryptor = AES.new(key, AES.MODE_CBC, IV)
4646

@@ -80,15 +80,16 @@ def decrypt(key, filename):
8080
if len(chunk) == 0:
8181
break
8282

83-
chunk = str(decryptor.decrypt(chunk))
84-
chunk = chunk.replace("0000hack1lab0000", "")
83+
#chunk = str(decryptor.decrypt(chunk))
84+
chunk = decryptor.decrypt(chunk)
85+
chunk = chunk.replace("0000hack1lab0000".encode("utf-8"), "".encode("utf-8"))
8586
outfile.write(chunk)
8687
outfile.truncate(filesize)
8788

8889

8990
def check(key, filename):
9091
chunksize = 64# * 1024
91-
secret = "0000hack1lab0000"
92+
secret = "0000hack1lab0000".encode("utf-8")
9293

9394
with open(filename, 'rb') as infile:
9495
IV = infile.read(16)

0 commit comments

Comments
 (0)