-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcryptography.html
77 lines (71 loc) · 4.93 KB
/
cryptography.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
<!DOCTYPE html>
<head>
<title>Thomas Steckmann</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous"></script>
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<link rel='stylesheet' href='style.css'>
</head>
<html>
<body>
<div class="top-bar">
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand">Thomas Steckmann</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" href="http://www.thomassteckmann.com/">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Portfolio
</a>
<ul class="dropdown-menu" style="padding-top: 0;" aria-labelledby="navbarDropdown">
<li class="container-fluid" style='background-color: lightgray; text-align: center;'> <div class="mx-auto">Research </div></li>
<li><a class="dropdown-item" href="quantum.html">Quantum Computing</a></li>
<li><a class="dropdown-item" href="ofet.html">Organic Electronics</a></li>
<li class="container-fluid" style='background-color: lightgray; text-align: center;'> <div class="mx-auto">Projects </div></li>
<li><a class="dropdown-item" href="hackathons.html">Quantum Projects</a></li>
<li><a class="dropdown-item" href="cryptography.html">Crytopgraphy</a></li>
<li><a class="dropdown-item" href="symphony.html">Poetry</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="Thomas_Steckmann_Resume_2021.pdf">CV</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://quantuminformationclub.wordpress.ncsu.edu/">Quantum Information Club</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
<!-- Begin Main Page-->
<div class="container mx-auto shadow-lg p-3 mb-5 rounded" style="margin-top: 100px; margin-left: 100px; margin-right: 100px; background-color: rgb(199 182 161); ">
<div style="border-width: 1em;" class="border border-dark">
<div class='container' id="indexpagebox">
<h3>
Cryptography
</h3>
Here is a final report on a cryptographic function, which was written as the final project for a course in cryptography.
I chose to focus on a lattice based hash function which has been proposed as an efficient hash function which is resistant to attacks on a quantum computer.
While the math does not necessarily focus on quantum computers, the function is unique because it is based on a proof of a problem which is hard for a quantum computer.
Unfortuntately the specific hash function is based on an easier case of the quantum-hard problem, but it is still an interesting
algorithm which is distanced from the standard Diffie-Hellman assumption.
</div>
</div>
</p>
<div class='container-md' width = "90%">
<iframe src="Lattice_based_Hash-ThomasSteckmann.pdf" style="width: 100%; height: calc(80vh);" frameborder="0"></iframe>
</div>
</div>
</div>
</body>
</html>
<!-- <embed src="Universal_Gate_Decomposition.pdf" width="800px" height="2100px" /> -->