-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile_encrypt.py
50 lines (40 loc) · 1.23 KB
/
file_encrypt.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import secrets
def Encrypt(filename):
file = open(filename, "rb")
data = file.read()
file.close()
key = secrets.token_bytes(16)
data = bytearray(data)
for index, value in enumerate(data):
data[index] = value ^ key[index % len(key)]
file = open("CC-" + filename, "wb")
file.write(data)
file.close()
return key
def Decrypt(filename, key):
file = open(filename, "rb")
data = file.read()
file.close()
data = bytearray(data)
for index, value in enumerate(data):
data[index] = value ^ key[index % len(key)]
file = open(filename, "wb")
file.write(data)
file.close()
print("File decrypted successfully !")
choice = ""
while choice != "3":
print("Please select you option.")
print("1. Encrypt File")
print("2. Decrypt File")
print("3. Quit")
choice = input()
if choice == "1" or choice == "2":
filename = input("Enter filename with extension:\n")
if choice == "1":
key = Encrypt(filename)
print("Encryption key: ", key.hex())
if choice == "2":
key_hex = input("Enter the decryption key (in hex):\n")
key = bytes.fromhex(key_hex)
Decrypt(filename, key)