-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
130 lines (90 loc) · 3.82 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
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
from sys import exit
from alphabet_shuffle import ShuffledAlphabet
from word_cryption import CryptedWord, CryptType
def PrintWelcomeMessage():
"""
Does:
выводит приветственное сообщение пользователю
"""
print()
print("WELCOME to the CesarLenKey! This is a program, where you can crypt your text!")
print('{:^77}'.format(
"You can use Cyrillic or Latin alphabet and some specials chars."))
print('{:^77}'.format("(just try it, there is interesting algo :)"))
print()
def PrintNextUsageMessage():
"""
Does:
выводит сообщение пользователю после очередного шифрования текста
"""
print()
print('{:^77}'.format('Press any key to continue using program...'))
print('{:^77}'.format('(use Ctrl + Z to exit)'))
print()
if __name__ == "__main__":
PrintWelcomeMessage()
while (True):
# Means: алфавит, используемый во всей программе
alph = "!%()*+,-./0123456789:;<=>?ABCDEFGHIJKLMNOPQRSTUVWXYZ[]^`abcdefghijklmnopqrs" \
+ "tuvwxyz|~ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё"
# ввод пользователем текста
# Means: введенный пользователем текст
text: list[str] = []
while text == []:
print('{:^77}'.format('Enter text to crypt (1 string):'))
try:
text = input().split()
except EOFError or KeyboardInterrupt:
exit()
print()
# ввод пользователем числа - типа операции
# Means: тип операции
crypt_type: CryptType = CryptType.decr
# Means: введенное пользователем число
input_number: int = -1
print('{:^77}'.format('Encryption (Enter 1) or Decryption (Enter 0)?'))
while input_number == -1:
try:
input_number = int(input())
match input_number:
case 1:
crypt_type = CryptType.encr
case 0:
crypt_type = CryptType.decr
case _: # default
print("Enter 0 or 1")
input_number = -1
except ValueError:
print("Enter 0 or 1")
except EOFError or KeyboardInterrupt:
exit()
print()
# ввод пользователем ключа
print('{:^77}'.format('Enter cryption key (some string):'))
# Means: введенный пользователем ключ
key: str = ""
try:
while key == "":
key = input().replace(" ", "")
except EOFError or KeyboardInterrupt:
exit()
# перемешивание алфавита
try:
alph = ShuffledAlphabet(key, alph)
except ValueError:
# (учитывая, что алфавит здесь фиксирован, недостижимо)
print("You're using wrong alphabet")
exit()
# Means: шифрованный текст
crypted_text: list[str]
# шифрование всего набора слов (введенного текста)
crypted_text = [CryptedWord(
word, key, alph, crypt_type) for word in text]
print()
print('{:^77}'.format('Result (with key ' + key + '):'))
print(' '.join(crypted_text))
PrintNextUsageMessage()
try:
input()
except EOFError or KeyboardInterrupt:
exit()