-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
187 lines (187 loc) · 9.76 KB
/
index.html
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
<!doctype html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Лабораторная работа по предмету «Безопасность программ и данных» №2.
Тема «Базовые алгоритмы шифрования. Использование симметричного алгоритма «Сеть Фейстеля» для шифрования файлов на диске».
Вариант №7: шифр Ришелье и сеть Фейстеля (схема №3 из методички).">
<title>БПиД №2.7</title>
<link href="/src/css/index.css" rel="stylesheet">
</head>
<body class="flex min-h-screen flex-col space-y-8">
<header class="p-4">
<h1 class="text-center font-medium sm:text-2xl">
Лабораторная работа по БПиД №2<br>вариант 7
</h1>
<button id="switchThemeButton" class="btn absolute right-0 top-10 border-transparent bg-transparent text-2xl hover:border-transparent hover:bg-transparent sm:top-6 sm:text-3xl lg:right-6">
☀️
</button>
</header>
<main class="flex-grow">
<form name="cipherForm" class="mx-5 flex flex-wrap">
<div class="w-full pb-10 md:w-80">
<label class="label cursor-pointer justify-center space-x-2">
<span class="label-text text-right font-bold" id="cipherMethodCheckboxRichelieuLabel">
Шифр Ришелье
</span>
<input
type="checkbox"
id="cipherMethodCheckbox"
name="cipherMethodCheckbox"
class="[--tglbg:rgb(0.25 0.02 252.0)] toggle border-base-content bg-base-content hover:bg-base-content"
>
<span class="label-text text-left" id="cipherMethodCheckboxFeistelLabel">
Сеть Фейстеля
</span>
</label>
<div id="richelieuInfo" class="flex flex-col">
<div>
<span>Размер сетки:</span>
<input
type="number"
name="richelieuGridSize"
id="richelieuGridSizeHeight"
class="input input-bordered h-9 w-9 p-2"
min="2"
max="10"
value="5"
>
<span>x</span>
<input
type="number"
name="richelieuGridSize"
id="richelieuGridSizeWidth"
class="input input-bordered h-9 w-9 p-2"
min="2"
max="10"
value="5"
>
</div>
</div>
<div id="feistelInfo" class="flex hidden max-w-[18.5rem] flex-col space-y-3">
<div class="space-y-1">
<p>Схема сети:</p>
<img
class="block rounded-xl bg-white"
src="src/res/feistel-network.png"
alt="Схема сети Фейстеля"
>
</div>
<div class="flex w-44 flex-col space-y-2">
<textarea
class="textarea textarea-bordered h-64 resize-none"
id="keysText"
name="keysText"
placeholder="Ключи шифрования"
></textarea>
<button
id="genFeistelKeysBtn"
class="btn btn-primary"
type="button"
onclick=""
>
Сгенерировать
</button>
<button
class="btn"
type="button"
onclick="document.getElementById('uploadSourceFileInput').click();"
>
Загрузить
</button>
<input
id="uploadKeysFileInput"
type="file"
class="file-input file-input-bordered file-input-sm hidden"
>
<button
id="downloadKeysButton"
class="btn"
type="button"
onclick=""
>
Сохранить
</button>
</div>
</div>
</div>
<div class="flex w-full flex-wrap space-y-10 sm:w-auto sm:grow sm:space-x-5 sm:space-y-0">
<div class="flex w-full flex-col space-y-2 sm:w-auto sm:grow">
<textarea
class="textarea textarea-bordered h-48 w-full resize-none sm:h-96"
id="sourceText"
name="sourceText"
placeholder="Исходный текст"
></textarea>
<div class="mx-6 flex justify-center space-x-5">
<div class="tooltip" data-tip="Загрузите исходный текст для шифровки из файла">
<button
class="btn"
type="button"
onclick="document.getElementById('uploadSourceFileInput').click();"
>
Загрузить
</button>
<input
id="uploadSourceFileInput"
type="file"
class="file-input file-input-bordered file-input-sm hidden"
>
</div>
<div class="tooltip" data-tip="Сохраните расшифрованный текст в файл">
<button
id="downloadSourceButton"
class="btn"
type="button"
onclick=""
>
Сохранить
</button>
</div>
</div>
</div>
<div class="flex w-full flex-col space-y-2 sm:w-auto sm:grow">
<textarea
class="textarea textarea-bordered h-48 w-full resize-none sm:h-96"
id="encryptedText"
name="encryptedText"
placeholder="Зашифрованный текст"
></textarea>
<div class="mx-6 flex justify-center space-x-5">
<div class="tooltip" data-tip="Загрузите зашифрованный текст для расшифровки">
<button
class="btn"
type="button"
onclick="document.getElementById('uploadEncryptedFileInput').click();"
>
Загрузить
</button>
<input
id="uploadEncryptedFileInput"
type="file"
class="file-input file-input-bordered file-input-sm hidden"
>
</div>
<div class="tooltip" data-tip="Сохраните зашифрованный текст в файл">
<button
id="downloadEncryptedButton"
class="btn"
type="button"
onclick=""
>
Сохранить
</button>
</div>
</div>
</div>
</div>
<div class="lg:w-80"></div>
</form>
</main>
<footer class="footer footer-center p-5">
<p>© Scorpi-ON — 2024</p>
</footer>
<script type="module" src="/src/ts/index.ts"></script>
</body>
</html>