begin crypto

This commit is contained in:
eneller
2026-01-22 14:13:00 +01:00
parent 78f2f8670f
commit 900589e518
3 changed files with 38 additions and 1 deletions

1
.gitignore vendored
View File

@@ -333,3 +333,4 @@ TSWLatexianTemp*
# End of https://www.toptal.com/developers/gitignore/api/latex,visualstudiocode
bib
*.*-SAVE-ERROR
*.ist

13
crypto.bib Normal file
View File

@@ -0,0 +1,13 @@
@book{luenberger,
title={Information science},
author={Luenberger, David G},
year={2012},
publisher={Princeton University Press}
}
@misc{ enwiki:maryofscots,
author = "{Wikipedia contributors}",
title = "Mary, Queen of Scots --- {Wikipedia}{,} The Free Encyclopedia",
year = "2026",
url = "https://en.wikipedia.org/w/index.php?title=Mary,_Queen_of_Scots&oldid=1333198012",
note = "[Online; accessed 22-January-2026]"
}

View File

@@ -15,7 +15,12 @@
\PassOptionsToPackage{hyphens}{url}
\usepackage{hyperref} % allows urls to follow line breaks of text
\usepackage[style=ieee, backend=biber, maxnames=1, minnames=1]{biblatex}
\addbibresource{entropy.bib}
\addbibresource{crypto.bib}
\usepackage{glossaries}
\makeglossaries
\newacronym{DES}{DES}{Data Encryption Standard}
\newacronym{AES}{AES}{Advanced Encryption Standard}
\newacronym{RSA}{RSA}{RivestShamirAdleman Encryption}
@@ -26,8 +31,26 @@
\begin{document}
\maketitle
\section{Introduction}
Cryptography is ubiquitous in our modern world.
While the origins of cryptography date back thousands of years, evidence of its use in ancient is sparse.
\cite{luenberger}
Most of its use seemed to be reserved for political and military leaders, e.g. notably Mary Queen of Scots,
who while in prison, plotted to kill Queen Elizabeth using encrypted letters \cite{enwiki:maryofscots}.
With the widespread adoption of the internet, the need for several cryptographical functions arose.
Due to its intended original use as a trusted research network (ARPANET),
almost none of the original protocols were 'secure' in any sense of the word.
Most notably still today is SMTP, the \textit{Simple Mail Transfer Protocol}, used to send email to servers.
In its original implementation, it allowed attackers to intercept emails in transit to read and modify them
and even spoof the sender address to impersonate others.
SMTP today is secured using a combination of mitigations for these attacks, such as STARTTLS, SPF, DKIM and DMARC,
emphasizing the need for securely designed protocols.
\section{DES}
The \acrfull{DES}
\section{AES}
\section{RSA}
\clearpage
%\printglossary[type=\acronymtype]
%\printglossary
\printbibliography
\end{document}