-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathclik.py
94 lines (83 loc) · 3.37 KB
/
clik.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
import os
import sys
from clikpython.encrypt import encryption, decryption, getKey
from clikpython.json_convert import jsonToDict
from clikpython.utils import message, STORAGE_DIR, STORE_KEY_F
from clikpython.menu_functions import add, subtract, modify
from clikpython.helpVersion import help, version
from clikpython.keys_init import init_function
# check encrypted
def checkEnc(filename):
return jsonToDict(filename)
# main menu hub of CLIK
def main_menu(args=sys.argv[1:]):
if len(args) == 0:
help()
else:
if args[0].lower() == 'init':
init_function()
elif args[0].lower() == '--help':
help()
elif args[0].lower() == '--version':
version()
elif len(args) == 2:
fname = args[0]
# check if file exists
if not os.path.isfile(fname):
message.error(f'{fname} not found')
help()
return
cmd = args[1]
# encrypt file
if cmd.lower() == 'enc':
if checkEnc(fname) != False:
shouldLoad = message.prompt('Load key from memory? (Y/n): ')
if shouldLoad.lower() == 'y' or shouldLoad.lower() == '':
keyFname = message.prompt('File with key for decryption (' + STORAGE_DIR + '/' + STORE_KEY_F + '): ')
key = getKey() if keyFname == '' else getKey(keyFname)
elif shouldLoad.lower() == 'n':
key = message.prompt('Key for encryption: ')
encryption(key, fname)
else:
message.error(fname + ' is already encrypted')
# decrypt file
elif cmd.lower() == 'dec':
if checkEnc(fname) != False:
message.error(fname + ' is already decrypted')
else:
shouldLoad = message.prompt('Load key from memory? (Y/n): ')
if shouldLoad.lower() == 'y' or shouldLoad.lower() == '':
keyFname = message.prompt('File with key for decryption (' + STORAGE_DIR + '/' + STORE_KEY_F + '): ')
key = getKey() if keyFname == '' else getKey(keyFname)
elif shouldLoad.lower() == 'n':
key = message.prompt('Key for decryption: ')
decryption(key, fname)
# add new keys
elif cmd.lower() == 'add':
if checkEnc(fname) != False:
add(fname)
else:
message.error(fname + ' is encrypted')
# subtract keys
elif cmd.lower() == 'sub':
if checkEnc(fname) != False:
subtract(fname)
else:
message.error(fname + ' is encrypted')
# subtract keys
elif cmd.lower() == 'mod':
if checkEnc(fname) != False:
modify(fname)
else:
message.error(fname + ' is encrypted')
# invalid arguments
else:
message.error('Invalid Argument')
help()
# invalid arguments
else:
message.error('Invalid Argument')
help()
# main function
if __name__ == "__main__":
main_menu(sys.argv[1:])