-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 1.52 KB
/
Copy pathindex.html
File metadata and controls
31 lines (31 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
<script src="javascript.js"></script>
<title>XOR Bitwise Cipher</title>
</head>
<body>
<a href="experimental/index.html">e</a>
<div class="main">
<div class="wrapper">
<input type="number" id="c0" oninput="cipher()" value="304">
<input type="number" id="c1" oninput="cipher()" value="39">
<input type="number" id="c2" oninput="cipher()" value="57">
<input type="number" id="c3" oninput="cipher()" value="88">
<input type="number" id="c4" oninput="cipher()" value="20">
<input type="number" id="c5" oninput="cipher()" value="81">
<input type="number" id="c6" oninput="cipher()" value="66">
<input type="number" id="c7" oninput="cipher()" value="44">
<input type="number" id="c8" oninput="cipher()" value="101">
<input type="number" id="c9" oninput="cipher()" value="79"><br>
<div class="info">**notice: make sure that the code you use works both ways default code has been well tested and works**</div>
<textarea id="input" placeholder="Put text here that you want ciphered" oninput="cipher()" rows="4" cols="24" wrap="soft"></textarea><br>
<button onclick="copy2clip()">Copy Output</button><br><br>
<div id="output" class="output"></div>
</div></div>
</body>
</html>