-
Notifications
You must be signed in to change notification settings - Fork 2
/
cipher.html
59 lines (55 loc) · 4.51 KB
/
cipher.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
<link href="https://cdn.rawgit.com/michalsnik/aos/2.1.1/dist/aos.css" rel="stylesheet">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script src="https://cdn.rawgit.com/michalsnik/aos/2.1.1/dist/aos.js"></script>
<link rel="stylesheet" type="text/css" href="./css/main.css">
<title>Cryptography Ciphers</title>
</head>
<body>
<div data-aos="fade-up" class="btn-group">
<button class="ciphers_button" onclick="location.href='./views/adfgvx.html'">Adfgvx Cipher</button><br><br>
<button class="ciphers_button" onclick="location.href='./views/adfgx.html'">Adfgx Cipher</button><br><br>
<button class="ciphers_button" onclick="location.href='./views/ASCII.html'">ASCII Cipher</button><br><br>
<button class="ciphers_button" onclick="location.href='./views/atbash.html'">Atbash Cipher</button><br><br>
<button class="ciphers_button" onclick="location.href='./views/autokey.html'">Autokey Cipher</button><br><br>
<button class="ciphers_button" onclick="location.href='./views/baconian.html'">Baconian Cipher</button><br><br>
<button class="ciphers_button" onclick="location.href='./views/Base64.html'">Base64 Cipher</button><br><br>
<button class="ciphers_button" onclick="location.href='./views/beaufort.html'">Beaufort Cipher</button><br><br>
<button class="ciphers_button" onclick="location.href='./views/bifid.html'">Bifid Cipher</button><br><br>
<button class="ciphers_button" onclick="location.href='./views/Binary.html'">Binary Cipher</button><br><br>
<button class="ciphers_button" onclick="location.href='./views/Caesar.html'">Caesar Cipher</button><br><br>
<button class="ciphers_button" onclick="location.href='./views/Columnar Transposition.html'">Columnar Transposition Cipher</button><br><br>
<button class="ciphers_button" onclick="location.href='./views/enigma.html'">Enigma Cipher</button><br> <br>
<button class="ciphers_button" onclick="location.href='./views/Four square.html'">Four square Cipher</button><br> <br>
<button class="ciphers_button" onclick="location.href='./views/Hill.html'">Hill Cipher</button><br> <br>
<button class="ciphers_button" onclick="location.href='./views/Morse.html'">Morse Cipher</button><br><br>
<button class="ciphers_button" onclick="location.href='./views/multiplicative.html'">Multiplicative Cipher</button><br> <br>
<button class="ciphers_button" onclick="location.href='./views/Phone.html'">Phone Cipher</button><br><br>
<button class="ciphers_button" onclick="location.href='./views/playfair.html'">Playfair Cipher</button><br> <br>
<button class="ciphers_button" onclick="location.href='./views/polyalphabeticCipher.html'">Polyalphabetic Cipher</button><br> <br>
<button class="ciphers_button" onclick="location.href='./views/polybius.html'">Polybius Cipher</button><br> <br>
<button class="ciphers_button" onclick="location.href='./views/porta.html'">Porta Cipher</button><br> <br>
<button class="ciphers_button" onclick="location.href='./views/railfence.html'">Railfence Cipher</button><br> <br>
<button class="ciphers_button" onclick="location.href='./views/reverse.html'">Reverse Cipher</button><br> <br>
<button class="ciphers_button" onclick="location.href='./views/rot13.html'">Rot13 Cipher</button><br> <br>
<button class="ciphers_button" onclick="location.href='./views/running key.html'">Running Key Cipher</button><br> <br>
<button class="ciphers_button" onclick="location.href='./views/Straddle Checkerboard Cipher.html'">Straddle Checkerboard Cipher</button><br> <br>
<button class="ciphers_button" onclick="location.href='./views/Vernam.html'">Vernam Cipher</button><br> <br>
<button class="ciphers_button" onclick="location.href='./views/vigenere.html'">Vigenere Cipher</button><br> <br>
<button class="ciphers_button" onclick="location.href='./views/zip.html'">Zip Cipher</button><br><br>
</div>
<script type="text/javascript" src="./js/index.js"></script>
<script>
AOS.init({
duration: 1200,
})
</script>
</body>
</html>