-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
125 lines (106 loc) · 2.58 KB
/
index.html
File metadata and controls
125 lines (106 loc) · 2.58 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Cipher machine</title>
<script>
const alphabet = [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H",
"I",
"J",
"K",
"L",
"M",
"N",
"O",
"P",
"Q",
"R",
"S",
"T",
"U",
"V",
"W",
"X",
"Y",
"Z",
];
function encryptText() {
const form = document.forms[0];
let title = document.getElementById("titleId");
title.innerHTML = "Encrypted text";
let shift = Number(form.shift.value);
let sourceText = form.sourceText.value;
form.sourceText.value = [...sourceText]
.map((char) => encrypt(char, shift))
.join("");
}
function decryptText() {
const form = document.forms[0];
let title = document.getElementById("titleId");
title.innerHTML = "Plain text";
let shift = Number(form.shift.value);
let sourceText = form.sourceText.value;
shift = (alphabet.length - shift) % alphabet.length;
form.sourceText.value = [...sourceText]
.map((char) => encrypt(char, shift))
.join("");
}
function encrypt(char, shift) {
let include = alphabet.includes(char.toUpperCase());
if (include) {
let position = alphabet.indexOf(char.toUpperCase());
let newPosition = (position + shift) % alphabet.length;
return alphabet[newPosition];
} else return char;
}
</script>
</head>
<body>
<form>
<h1>My Cipher machine</h1>
<p id="titleId">Plain text</p>
<div>
<textarea
name="sourceText"
rows="8"
cols="50"
spellcheck="false"
value=""
>
</textarea>
</div>
<div>
<label for="shift">Shift:</label>
<select id="shift" name="shift">
<option value="1">1</option>
<option value="2">2</option>
<option value="5">5</option>
<option value="10">10</option>
</select>
</div>
<div>
<input
type="button"
id="decrypt"
value="Encrypt"
onclick="encryptText();"
/>
<input
type="button"
id="decrypt"
value="Decrypt the text"
onclick="decryptText();"
/>
</div>
</form>
</body>
</html>