-
Notifications
You must be signed in to change notification settings - Fork 1
/
references.html
106 lines (103 loc) · 3.58 KB
/
references.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
<!DOCTYPE html>
<html>
<head>
<title>Crypto Exercises</title>
<link rel="stylesheet" href="./cryptoexercises-stylesheet.css" />
</head>
<!----------------------------------------------------------------------------->
<header>
<table class="headerTable" cellspacing="0">
<tr>
<td class="left">
<img class="bannerImage" src="./LLCipher_logo.png" alt="Llcipher logo" />
</td>
<td class="middle">
<p>Cryptography Challenges</p>
</td>
<td class="right">
<img class="lincolnLogo" src="./lincoln_logo.png" alt="Lincoln logo" />
</td>
</tr>
</table>
</header>
<!----------------------------------------------------------------------------->
<nav>
<ul>
<li><a href="./index.html">Home</a></li>
</ul>
<br />
<ul>
<li class="title">Background</li>
<li><a href="./el_gamal_encryption.html">El Gamal Encryption</a>
<li><a href="./rsa_encryption.html">RSA Encryption</a>
</ul>
<br />
<ul>
<li class="title">Challenges</li>
<li><a href="./classical_crypto.html">Classical Crypto</a></li>
<li><a href="./exercise_one.html">RSA Challenge One</a></li>
<li><a href="./exercise_two.html">RSA Challenge Two</a></li>
<li><a href="./exercise_three.html">RSA Challenge Three</a></li>
<li><a href="./exercise_three_a.html">RSA Challenge Three (a)</a></li>
<li><a href="./exercise_four.html">RSA Challenge Four</a></li>
<li><a href="./exercise_five.html">El Gamal Challenge</a></li>
</ul>
<br />
<ul>
<li class="title">Other Stuff</li>
<li><a href="./references.html">References</a></li>
<li><a href="./credits.html">Credits</a></li>
</ul>
</nav>
<!----------------------------------------------------------------------------->
<article>
<table class="exerciseLayoutTable" cellspacing="0">
<tr>
<h1>References</h1>
<p>These sources can help you further your understanding of cryptography and
the exercises presented here:</p>
<ul class="referenceList">
<li>
<p class="reference">Wikipedia!</p>
<p>Wikipedia has many useful articles on cryptography, including:</p>
<ul>
<li><p><a href="https://en.wikipedia.org/wiki/ElGamal_encryption"
target="wikipedia">El Gamal Encryption</a></p></li>
<li><p><a href="https://en.wikipedia.org/wiki/RSA_(cryptosystem)"
target="wikipedia">RSA Encryption</a></p></li>
</ul>
</li>
<li>
<p class="reference"><a href="https://legacy.cryptool.org/en/cto/" target="crypToolOnline">CrypToolOnline</a></p>
<!--
<p class="authors"> Author </p>
-->
<p> This website can be used to try classical ciphers and classical cryptanalysis techniques.</p>
<ul>
<li><p>Go to 'Ciphers' -> 'the name of the cipher you are interested in' to try encryption or decryption using some cipher.</p></li>
<li><p>Go to 'Cryptanalysis' to try cryptanalysis techniques.</p></li>
</ul>
</li>
<li>
<p class="reference"><a href="https://www.dcode.fr/en" target="dcode">dcode.fr</a></p>
<!--
<p class="authors"> Author </p>
-->
<p> This website is similar to CrypTool Online, with various tools for cipher application and analysis.</p>
</li>
</ul>
<!----------------------------------------------------------------------------->
<h4>Other Resources</h4>
<p>Download the <a href="./split_into_groups.py">split_into_groups.py</a>
Python tool to help you with the Vigenere Cipher.</p>
</tr>
</table>
</article>
<!----------------------------------------------------------------------------->
<footer>
<small>
© 2016, by Uri Blumenthal, Jeff Diewald, and Sophia Yakoubov, and 2024, by David Wilson and Nick Cunningham.
</small>
</footer>
</body>
</html>