-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
160 lines (144 loc) · 7.51 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
<!DOCTYPE html>
<html lang="en" class="h-100">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="" />
<meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors" />
<meta name="generator" content="Hugo 0.84.0" />
<title>Caesar Cipher - CODEin.my.id</title>
<link rel="canonical" href="https://getbootstrap.com/docs/5.0/examples/cover/" />
<!-- Bootstrap core CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous" />
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
</style>
<!-- Custom styles for this template -->
<link href="cover.css" rel="stylesheet" />
</head>
<body class="d-flex h-100 text-center text-white bg-dark">
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
<header class="mb-auto">
<div>
<h3 class="float-md-start mb-0"><a class="text-reset text-decoration-none" href="https://www.codein.my.id/">CODEin</a></h3>
<nav class="nav nav-masthead justify-content-center float-md-end" id="nav-tab" role="tablist">
<button class="nav-link active border-0" id="nav-home-tab" data-bs-toggle="tab" data-bs-target="#nav-home" type="button" role="tab" aria-controls="nav-home" aria-selected="true">Home</button>
<button class="nav-link border-0" id="nav-encryption-tab" data-bs-toggle="tab" data-bs-target="#nav-encryption" type="button" role="tab" aria-controls="nav-encryption" aria-selected="false">Encryption/Decryption</button>
</nav>
</div>
</header>
<main class="px-3">
<div class="tab-content" id="nav-tabContent">
<div class="tab-pane fade show active" id="nav-home" role="tabpanel" aria-labelledby="nav-home-tab">
<h3>Kriptografi Caesar Cipher</h3>
<p>
<small
>Program ini merupakan implementasi Caesar Cipher, sebuah metode kriptografi yang mengubah setiap huruf pada plaintext menjadi huruf lain dengan menggeser sejumlah posisi sesuai dengan key yang diberikan. Program ini terdiri
dari dua fungsi, yaitu encrypt() dan decrypt().</small
>
</p>
<p>
<small
>encrypt() untuk mengenkripsi plaintext menjadi ciphertext, dan decrypt() untuk mendekripsi ciphertext menjadi plaintext. Setiap karakter dalam teks akan dikonversi ke Unicode, kemudian digeser sesuai dengan key yang
diberikan, lalu dikonversi kembali ke bentuk teks biasa.</small
>
</p>
<p class="lead">
<a href="https://www.codein.my.id/" class="btn btn-sm btn-secondary fw-bold border-white text-white">Learn more</a>
</p>
</div>
<div class="tab-pane fade" id="nav-encryption" role="tabpanel" aria-labelledby="nav-encryption-tab">
<form>
<label for="plaintext">Plaintext:</label><br />
<textarea id="plaintext" placeholder="Masukkan teks yang ingin di Enkripsi" rows="4" cols="50"></textarea><br />
<span class="form-text">*kunci antara 0-25 untuk mengkodekan pesan.</span><br />
<label for="key">Key:</label><br />
<input type="number" placeholder="Key berupa angka" id="key" /><br /><br />
<button class="btn btn-sm btn-secondary fw-bold border-white text-white" type="button" onclick="encrypt()">Encrypt</button>
<button class="btn btn-sm btn-danger fw-bold border-white" type="button" onclick="clearText()">Clear</button>
<button class="btn btn-sm btn-secondary fw-bold border-white text-white" type="button" onclick="decrypt()">Decrypt</button>
<p class="form-text">*Bersihkan/reset form untuk melakukan Encrypt maupun Decrypt.</p>
</form>
<br />
<label for="ciphertext">Ciphertext:</label><br />
<textarea id="ciphertext" placeholder="Masukkan teks yang ingin di Dekripsi" rows="4" cols="50"></textarea>
</div>
</div>
</main>
<footer class="mt-auto text-white-50">
<p>Cover template for <span class="text-white">Bootstrap</span>, by <span class="text-white">@mdo</span>.</p>
</footer>
</div>
<script>
function encrypt() {
// Mengambil plaintext dan key dari form
var plaintext = document.getElementById("plaintext").value;
var key = parseInt(document.getElementById("key").value);
// Menyiapkan variabel untuk menampung ciphertext
var ciphertext = "";
// Melakukan enkripsi dengan Caesar Cipher
for (var i = 0; i < plaintext.length; i++) {
// Menggunakan Unicode untuk masing-masing karakter
var charCode = plaintext.charCodeAt(i);
// Jika karakter merupakan huruf kecil, enkripsi dengan Caesar Cipher
if (charCode >= 97 && charCode <= 122) {
ciphertext += String.fromCharCode(((charCode - 97 + key) % 26) + 97);
}
// Jika karakter merupakan huruf besar, enkripsi dengan Caesar Cipher
else if (charCode >= 65 && charCode <= 90) {
ciphertext += String.fromCharCode(((charCode - 65 + key) % 26) + 65);
}
// Jika karakter bukan huruf, abaikan saja
else {
ciphertext += plaintext[i];
}
}
// Menampilkan ciphertext di form
document.getElementById("ciphertext").value = ciphertext;
}
function decrypt() {
// Mengambil ciphertext dan key dari form
var ciphertext = document.getElementById("ciphertext").value;
var key = parseInt(document.getElementById("key").value);
// Menyiapkan variabel untuk menampung plaintext
var plaintext = "";
// Melakukan dekripsi dengan Caesar Cipher
for (var i = 0; i < ciphertext.length; i++) {
// Menggunakan Unicode untuk masing-masing karakter
var charCode = ciphertext.charCodeAt(i);
// Jika karakter merupakan huruf kecil, dekripsi dengan Caesar Cipher
if (charCode >= 97 && charCode <= 122) {
plaintext += String.fromCharCode(((charCode - 97 - key + 26) % 26) + 97);
}
// Jika karakter merupakan huruf besar, dekripsi dengan Caesar Cipher
else if (charCode >= 65 && charCode <= 90) {
plaintext += String.fromCharCode(((charCode - 65 - key + 26) % 26) + 65);
}
// Jika karakter bukan huruf, abaikan saja
else {
plaintext += ciphertext[i];
}
}
// Menampilkan plaintext di form
document.getElementById("plaintext").value = plaintext;
}
function clearText() {
document.getElementById("plaintext").value = "";
document.getElementById("ciphertext").value = "";
document.getElementById("key").value = "";
}
</script>
</body>
</html>