forked from ykgf69-Durham/practical-4-group-swap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage2.html
More file actions
48 lines (47 loc) · 4.19 KB
/
page2.html
File metadata and controls
48 lines (47 loc) · 4.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Codebreaking</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
</style>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="navigation">
<a href="index.html" class="navigation-link">Home</a>
<a href="page1.html" class="navigation-link">Healthcare </a>
<a href="page 3.html" class="navigation-link">Communication </a>
<a href="page4.html" class="navigation-link">Economic development </a>
<a href="page5.html" class="navigation-link">Education and Learning </a>
</div>
<h1><u>Code Breaking</u></h1>
<p>Throughout the history of war, many have realised that one of the most powerful things a nation can wield is intelligence. Blindly charging into battle with no plan or tactics and no idea of what you are up against is a fool's errand - one that practically guarantees defeat.</p>
<p>There is one major flaw with this - when your men are spread out across vast distances, with the enemy lying in wait between you, how can you send a message without giving everything away in the case of capture?</p>
<p>This is what lead to the invention of ciphers - algorithms which can hide the meaning of a message, but in a way where a reverse algorithm can reveal the original information</p>
<img src="waterloo.jpg" alt="The battle of Waterloo" style = "width:264px;height:300px;">
<br>
<h1><u>Early ciphers</u></h1>
<p>One of the simplest ciphers is the Caeser cipher. This cipher works by simply shifting every letter in the alphabet by a number, and writing the message using this. A cipher like this is useful as it makes the plaintext completely illegible to any reader, yet does not require much effort to encrypt or decrypt</p>
<p>This is also its distinct disadvantage - its simplicity makes it laughably easy to decrypt even when the key - the number by which the alphabet is shifted - is not known. This completely defeats the purpose of the cipher, making it useless.</p>
<p>If we truly want to obscure information from those we do not want to read it, we have to do more than this.</p>
<img src="caeser.jpg" alt="Julius Caeser" style = "width:229px;height:300px;">
<br>
<h1><u>Enigma</u></h1>
<p>For WW2, the Germans developed a type writer-like machine called Enigma. Whenever a key was pressed in Enigma, a series of rotors would decide which lamp it lights up. These rotos would then spin, constantly shifting the cipher. Each day, new settings would be input, meaning that the encryption function differently and, as there were so many possible settings, it would be near impossible to brute force. But decrypting was still simple for the Germans, as you could enter the same daily settings into your own Enigma machine and then type in the ciphertext to then be given the original plaintext back.</p>
<p>Due to the complexity of enigma, the Germans believed it unbreakable.</p>
<img src="enigma.jpg" alt="The engima machine" style = "width:275px;height:300px;">
<br>
<p>During the war, Alan Turing and co. developed the Bombe machine at Bletchley park. This machine is often considered among the first computers ever made, and it was made for one purpose - to break Enigma by figuring out the daily settings</p>
<p>Due to Bletchley's success, the allies were able to read many of the German communications, winning the war of intelligence. The allied generals now would know all about the German's military plans and movements</p>
<p>It is estimated that breaking Enigma cut 2 years off of the war - saving countless people lives and ending the Nazi's tyranny</p>
<img src="bombe.jpg" alt="The Bombe machine" style = "width:240px;height:300px;">
<br>
<p>One of the first computers ever made an unimaginably great impact on the world</p>
<br>
<p>Written by Luke</p>
</body>
</html>