-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
55 lines (46 loc) · 2.94 KB
/
main.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
from cryptograph.aes import encrypt_aes, decrypt_aes
def get_data():
print('Выберите режим: \n0. Шифрование \n1. Дешифрование \n2. Выход')
c_mode = input("# ").strip()
print()
file_path = input('Введите путь к файлу: ').strip()
print()
del_file = input("Удалять исходный файл? (y/n): ").strip().lower()
print()
key = input('Введите ключ: ').strip()
return c_mode, file_path, key, del_file
def hello():
print('''
░█████╗░██████╗░██╗░░░██╗██████╗░████████╗░█████╗░░██████╗░██████╗░░█████╗░██████╗░██╗░░██╗
██╔══██╗██╔══██╗╚██╗░██╔╝██╔══██╗╚══██╔══╝██╔══██╗██╔════╝░██╔══██╗██╔══██╗██╔══██╗██║░░██║
██║░░╚═╝██████╔╝░╚████╔╝░██████╔╝░░░██║░░░██║░░██║██║░░██╗░██████╔╝███████║██████╔╝███████║
██║░░██╗██╔══██╗░░╚██╔╝░░██╔═══╝░░░░██║░░░██║░░██║██║░░╚██╗██╔══██╗██╔══██║██╔═══╝░██╔══██║
╚█████╔╝██║░░██║░░░██║░░░██║░░░░░░░░██║░░░╚█████╔╝╚██████╔╝██║░░██║██║░░██║██║░░░░░██║░░██║
░╚════╝░╚═╝░░╚═╝░░░╚═╝░░░╚═╝░░░░░░░░╚═╝░░░░╚════╝░░╚═════╝░╚═╝░░╚═╝╚═╝░░╚═╝╚═╝░░░░░╚═╝░░╚═╝
\n\n''')
def main():
hello()
while True:
try:
c_mode, file_path, key, del_file = get_data()
print('-' * 50 + '\n')
if c_mode == '0':
encrypt_aes(file_path, key, del_file)
elif c_mode == '1':
decrypt_aes(file_path, key, del_file)
elif c_mode == '2':
print('Выход...')
exit()
else:
print('Error: Неверный режим')
print()
print("=" * 50)
except ValueError:
print('Error: Невозможно прочитать файл.')
except Exception as e:
print(f'Error: {str(e)}')
if __name__ == "__main__":
try:
main()
except KeyboardInterrupt:
exit(0)