-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKrypApp.py
More file actions
432 lines (378 loc) · 11.1 KB
/
Copy pathKrypApp.py
File metadata and controls
432 lines (378 loc) · 11.1 KB
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
import os
import sys
import tkinter as tk
from tkinter import filedialog
from tkinter import messagebox
from Crypto.Cipher import AES
class EncryptionTool:
def __init__(self, user_file, user_key, user_salt):
# get the path to input file
self.user_file = user_file
# convert the key and salt to bytes
self.user_key = bytes(user_key, "utf-8")
self.user_salt = bytes(user_salt, "utf-8")
# get the file extension
self.file_extension = self.user_file.split(".")[-1]
# hash type for hashing key and salt
self.hash_type = "SHA256"
# encrypted file name
self.encrypt_output_file = ".".join(self.user_file.split(".")[:-1]) + "." + self.file_extension + ".kryp"
# decrypted file name
self.decrypt_output_file = self.user_file[:-5]
# dictionary to store hashed key and salt
self.hashed_key_salt = dict()
# hash key and salt into 16 bit hashes
self.hash_key_salt()
def encrypt(self):
# create a cipher object
cipher_object = AES.new(
self.hashed_key_salt["key"],
AES.MODE_CFB,
self.hashed_key_salt["salt"]
)
# read content of file
with open(self.user_file, "rb") as f:
content = f.read()
# encrypt the file contents
encrypted_content = cipher_object.encrypt(content)
# write the encrypted content to output file
with open(self.encrypt_output_file, "wb") as g:
g.write(encrypted_content)
# 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"]
)
# read content of file
with open(self.user_file, "rb") as f:
content = f.read()
# decrypt the file contents
decrypted_content = cipher_object.decrypt(content)
# write the decrypted content to output file
with open(self.decrypt_output_file, "wb") as g:
g.write(decrypted_content)
# clean up the cipher object
del cipher_object
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 16 bits
self.hashed_key_salt["key"] = bytes(hasher.hexdigest()[:16], "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 bits
self.hashed_key_salt["salt"] = bytes(hasher.hexdigest()[:16], "utf-8")
# clean up hash object
del hasher
class MainWindow:
""" GUI """
# 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("---")
root.title("KrypApp")
root.configure(bg="#ddd")
try:
icon_img = tk.Image(
"photo",
file=self.THIS_FOLDER_G + "/assets/icon.png"
)
root.call(
"wm",
"iconphoto",
root._w,
icon_img
)
except Exception as e:
# print(e)
pass
self.menu_bar = tk.Menu(
root,
bg="#ddd",
relief=tk.FLAT
)
self.menu_bar.add_command(
label="Help !",
command=self.show_help_callback
)
self.menu_bar.add_command(
label=" Execution Time",
command=self.show_execution_time
)
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="#ddd",
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=6,
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="#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 Key",
bg="#ddd",
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=6,
row=4,
column=0,
columnspan=4,
sticky=tk.W+tk.E+tk.N+tk.S
)
self.salt_entry_label = tk.Label(
root,
text="Enter Hint",
bg="#ddd",
anchor=tk.W
)
self.salt_entry_label.grid(
padx=12,
pady=(6, 0),
ipadx=0,
ipady=1,
row=5,
column=0,
columnspan=4,
sticky=tk.W+tk.E+tk.N+tk.S
)
self.salt_entry = tk.Entry(
root,
textvariable=self._salt,
bg="#fff",
exportselection=0,
relief=tk.FLAT
)
self.salt_entry.grid(
padx=15,
pady=6,
ipadx=8,
ipady=6,
row=6,
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="#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="#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.clear_btn = tk.Button(
root,
text="CLEAR",
command=self.clear_callback,
bg="#ffffff",
bd=2,
relief=tk.FLAT
)
self.clear_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="#ddd",
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):
name = filedialog.askopenfile()
try:
self._file_url.set(name.name)
# print(name.name)
except Exception as e:
# print(e)
pass
def encrypt_callback(self):
try:
self._cipher = EncryptionTool(
self._file_url.get(),
self._secret_key.get(),
self._salt.get()
)
self._cipher.encrypt()
self._cipher = None
self._status.set("Your File is Encrypted!")
except Exception as e:
# print(e)
self._status.set(e)
def decrypt_callback(self):
try:
self._cipher = EncryptionTool(
self._file_url.get(),
self._secret_key.get(),
self._salt.get()
)
self._cipher.decrypt()
self._cipher = None
self._status.set("File is Decrypted!")
except Exception as e:
# print(e)
self._status.set(e)
def clear_callback(self):
self._cipher = None
self._file_url.set("")
self._secret_key.set("")
self._salt.set("")
self._status.set("---")
def show_help_callback(self):
messagebox.showinfo(
"Help !",
"""1. Click SELECT FILE Button and select your file .
2. Enter your Secret Key and Hint (These can be any alphanumeric letters).
3. Click ENCRYPT Button to encrypt.
4. When you want to Decrypt a file you will have to select the file with the ".kryp" extention and Enter your Secret Key and hint which you have given at the time of Encryption. Click DECRYPT Button to decrypt.
5. Click CLEAR Button to clear the input fields."""
)
if __name__ == "__main__":
ROOT = tk.Tk()
MAIN_WINDOW = MainWindow(ROOT)
ROOT.mainloop()