-
Notifications
You must be signed in to change notification settings - Fork 3
/
endcrypt.py
481 lines (409 loc) · 13.7 KB
/
endcrypt.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
#!/usr/bin/env python3
#In Development Process!
#App is Under Development!
# import threading
class EncryptionTool:
def __init__(self, user_file, user_key, user_salt):
# get the path to input file
self.user_file = user_file
self.input_file_size = os.path.getsize(self.user_file)
self.chunk_size = 1024
self.total_chunks = (self.input_file_size // self.chunk_size) + 1
# convert the key and salt to bytes
self.user_key = bytes(user_key, "utf-8")
self.user_salt = bytes(user_key[::-1], "utf-8")
# get the file extension
self.file_extension = self.user_file.split(".")[-1]
# hash type for hashing key and salt
# encrypted file name
self.encrypt_output_file = ".".join(self.user_file.split(".")[:-1]) \
+ "." + self.file_extension + ".endcrypt"
# decrypted file name
self.decrypt_output_file = self.user_file[:-5].split(".")
self.decrypt_output_file = ".".join(self.decrypt_output_file[:-1]) \
+ "__dekrypted__." + self.decrypt_output_file[-1]
# dictionary to store hashed key and salt
# hash key and salt into 16 bit hashes
def read_in_chunks(self, file_object, chunk_size=1024):
while True:
data = file_object.read(chunk_size)
if not data:
break
yield data
def encrypt(self):
# create a cipher object
cipher_object = AES.new(
self.hashed_key_salt["key"],
AES.MODE_CFB,
self.hashed_key_salt["salt"]
)
self.abort() # if the output file already exists, remove it first
input_file = open(self.user_file, "rb")
output_file = open(self.encrypt_output_file, "ab")
done_chunks = 0
for piece in self.read_in_chunks(input_file, self.chunk_size):
encrypted_content = cipher_object.encrypt(piece)
output_file.write(encrypted_content)
done_chunks += 1
yield (done_chunks / self.total_chunks) * 100
input_file.close()
output_file.close()
# clean up the cipher object
del cipher_object
def decrypt(self):
# exact same as above function except in reverse
cipher_object = AES.new(
self.hashed_key_salt["key"],
AES.MODE_CFB,
self.hashed_key_salt["salt"]
)
self.abort() # if the output file already exists, remove it first
input_file = open(self.user_file, "rb")
output_file = open(self.decrypt_output_file, "xb")
done_chunks = 0
for piece in self.read_in_chunks(input_file):
decrypted_content = cipher_object.decrypt(piece)
output_file.write(decrypted_content)
done_chunks += 1
yield (done_chunks / self.total_chunks) * 100
input_file.close()
output_file.close()
# clean up the cipher object
del cipher_object
def abort(self):
if os.path.isfile(self.encrypt_output_file):
os.remove(self.encrypt_output_file)
if os.path.isfile(self.decrypt_output_file):
os.remove(self.decrypt_output_file)
def hash_key_salt(self):
# --- convert key to hash
# create a new hash object
hasher = hashlib.new(self.hash_type)
hasher.update(self.user_key)
# turn the output key hash into 32 bytes (256 bits)
self.hashed_key_salt["key"] = bytes(hasher.hexdigest()[:32], "utf-8")
# clean up hash object
del hasher
# --- convert salt to hash
# create a new hash object
hasher = hashlib.new(self.hash_type)
hasher.update(self.user_salt)
# turn the output salt hash into 16 bytes (128 bits)
self.hashed_key_salt["salt"] = bytes(hasher.hexdigest()[:16], "utf-8")
# clean up hash object
del hasher
class MainWindow:
""" GUI Wrapper """
# configure root directory path relative to this file
THIS_FOLDER_G = ""
if getattr(sys, "frozen", False):
# frozen
THIS_FOLDER_G = os.path.dirname(sys.executable)
else:
# unfrozen
THIS_FOLDER_G = os.path.dirname(os.path.realpath(__file__))
def __init__(self, root):
self.root = root
self._cipher = None
self._file_url = tk.StringVar()
self._secret_key = tk.StringVar()
self._salt = tk.StringVar()
self._status = tk.StringVar()
self._status.set("---")
self.should_cancel = False
root.title("endcrypt")
root.configure(bg="#1A1A1A")
try:
icon_img = tk.Image(
"photo",
file=self.THIS_FOLDER_G + "/assets/icon.png"
)
root.call(
"wm",
"iconphoto",
root._w,
icon_img
)
except Exception:
pass
self.menu_bar = tk.Menu(
root,
bg="#1A1A1A",
relief=tk.FLAT
)
self.menu_bar.add_command(
label="How To",
command=self.show_help_callback
)
self.menu_bar.add_command(
label="Quit!",
command=root.quit
)
root.configure(
menu=self.menu_bar
)
self.file_entry_label = tk.Label(
root,
text="Enter File Path Or Click SELECT FILE Button",
bg="#1A1A1A",
fg="white",
anchor=tk.W
)
self.file_entry_label.grid(
padx=12,
pady=(8, 0),
ipadx=0,
ipady=1,
row=0,
column=0,
columnspan=4,
sticky=tk.W+tk.E+tk.N+tk.S
)
self.file_entry = tk.Entry(
root,
textvariable=self._file_url,
bg="#fff",
exportselection=0,
relief=tk.FLAT
)
self.file_entry.grid(
padx=15,
pady=6,
ipadx=8,
ipady=8,
row=1,
column=0,
columnspan=4,
sticky=tk.W+tk.E+tk.N+tk.S
)
self.select_btn = tk.Button(
root,
text="SELECT FILE",
command=self.selectfile_callback,
width=42,
bg="#1089ff",
fg="#ffffff",
bd=2,
relief=tk.FLAT
)
self.select_btn.grid(
padx=15,
pady=8,
ipadx=24,
ipady=6,
row=2,
column=0,
columnspan=4,
sticky=tk.W+tk.E+tk.N+tk.S
)
self.key_entry_label = tk.Label(
root,
text="Enter Secret Key (Remember this for Decryption)",
bg="#1A1A1A",
fg="white",
anchor=tk.W
)
self.key_entry_label.grid(
padx=12,
pady=(8, 0),
ipadx=0,
ipady=1,
row=3,
column=0,
columnspan=4,
sticky=tk.W+tk.E+tk.N+tk.S
)
self.key_entry = tk.Entry(
root,
textvariable=self._secret_key,
bg="#fff",
exportselection=0,
relief=tk.FLAT
)
self.key_entry.grid(
padx=15,
pady=6,
ipadx=8,
ipady=8,
row=4,
column=0,
columnspan=4,
sticky=tk.W+tk.E+tk.N+tk.S
)
self.encrypt_btn = tk.Button(
root,
text="ENCRYPT",
command=self.encrypt_callback,
bg="#ed3833",
fg="#ffffff",
bd=2,
relief=tk.FLAT
)
self.encrypt_btn.grid(
padx=(15, 6),
pady=8,
ipadx=24,
ipady=6,
row=7,
column=0,
columnspan=2,
sticky=tk.W+tk.E+tk.N+tk.S
)
self.decrypt_btn = tk.Button(
root,
text="DECRYPT",
command=self.decrypt_callback,
bg="#00bd56",
fg="#ffffff",
bd=2,
relief=tk.FLAT
)
self.decrypt_btn.grid(
padx=(6, 15),
pady=8,
ipadx=24,
ipady=6,
row=7,
column=2,
columnspan=2,
sticky=tk.W+tk.E+tk.N+tk.S
)
self.reset_btn = tk.Button(
root,
text="RESET",
command=self.reset_callback,
bg="#aaaaaa",
fg="#ffffff",
bd=2,
relief=tk.FLAT
)
self.reset_btn.grid(
padx=15,
pady=(4, 12),
ipadx=24,
ipady=6,
row=8,
column=0,
columnspan=4,
sticky=tk.W+tk.E+tk.N+tk.S
)
self.status_label = tk.Label(
root,
textvariable=self._status,
bg="#eeeeee",
anchor=tk.W,
justify=tk.LEFT,
relief=tk.FLAT,
wraplength=350
)
self.status_label.grid(
padx=12,
pady=(0, 12),
ipadx=0,
ipady=1,
row=9,
column=0,
columnspan=4,
sticky=tk.W+tk.E+tk.N+tk.S
)
tk.Grid.columnconfigure(root, 0, weight=1)
tk.Grid.columnconfigure(root, 1, weight=1)
tk.Grid.columnconfigure(root, 2, weight=1)
tk.Grid.columnconfigure(root, 3, weight=1)
def selectfile_callback(self):
try:
name = filedialog.askopenfile()
self._file_url.set(name.name)
# print(name.name)
except Exception as e:
self._status.set(e)
self.status_label.update()
def freeze_controls(self):
self.file_entry.configure(state="disabled")
self.key_entry.configure(state="disabled")
self.select_btn.configure(state="disabled")
self.encrypt_btn.configure(state="disabled")
self.decrypt_btn.configure(state="disabled")
self.reset_btn.configure(text="CANCEL", command=self.cancel_callback,
fg="#ed3833", bg="#fafafa")
self.status_label.update()
def unfreeze_controls(self):
self.file_entry.configure(state="normal")
self.key_entry.configure(state="normal")
self.select_btn.configure(state="normal")
self.encrypt_btn.configure(state="normal")
self.decrypt_btn.configure(state="normal")
self.reset_btn.configure(text="RESET", command=self.reset_callback,
fg="#ffffff", bg="#aaaaaa")
self.status_label.update()
def encrypt_callback(self):
self.freeze_controls()
try:
self._cipher = EncryptionTool(
self._file_url.get(),
self._secret_key.get(),
self._salt.get()
)
for percentage in self._cipher.encrypt():
if self.should_cancel:
break
percentage = "{0:.2f}%".format(percentage)
self._status.set(percentage)
self.status_label.update()
self._status.set("File Encrypted!")
if self.should_cancel:
self._cipher.abort()
self._status.set("Cancelled!")
self._cipher = None
self.should_cancel = False
except Exception as e:
# print(e)
self._status.set(e)
self.unfreeze_controls()
def decrypt_callback(self):
self.freeze_controls()
try:
self._cipher = EncryptionTool(
self._file_url.get(),
self._secret_key.get(),
self._salt.get()
)
for percentage in self._cipher.decrypt():
if self.should_cancel:
break
percentage = "{0:.2f}%".format(percentage)
self._status.set(percentage)
self.status_label.update()
self._status.set("File Decrypted!")
if self.should_cancel:
self._cipher.abort()
self._status.set("Cancelled!")
self._cipher = None
self.should_cancel = False
except Exception as e:
# print(e)
self._status.set(e)
self.unfreeze_controls()
def reset_callback(self):
self._cipher = None
self._file_url.set("")
self._secret_key.set("")
self._salt.set("")
self._status.set("---")
def cancel_callback(self):
self.should_cancel = True
def show_help_callback(self):
messagebox.showinfo(
"How To",
"""1. Open the App and Click SELECT FILE Button and select your file e.g. "endcrypt.jpg".
2. Enter your Secret Key (This can be any alphanumeric letters). Remember this so you can Decrypt the file later.
3. Click ENCRYPT Button to encrypt. A new encrypted file with ".endcrypt" extention e.g. "endcrypt.jpg.endcrypt" will be created in the same directory where the "endcrypt.jpg" is.
4. When you want to Decrypt a file you, will select the file with the ".endcrypt" extention and Enter your Secret Key which you chose at the time of Encryption. Click DECRYPT Button to decrypt. The decrypted file will be of the same name as before with the suffix "dekrypted" e.g. "endcrypts.jpg".
5. Click RESET Button to reset the input fields and status bar.
6. You can also Click CANCEL Button during Encryption/Decryption to stop the process.
"""
)
if __name__ == "__main__":
ROOT = tk.Tk()
MAIN_WINDOW = MainWindow(ROOT)
ROOT.mainloop()