math_rsa/main.tex

69 lines
1.3 KiB
TeX
Raw Normal View History

\documentclass{math_rsa}
2016-11-26 12:35:02 +01:00
\title{Einführung zu RSA}
\date{\today}
2016-11-26 12:28:17 +01:00
\author{Andreas Zweili, Ismail Cadaroski, Ivan Höhler, Michael Stratighiou}
%\institute{}
% \titlegraphic{\hfill\includegraphics[height=1.5cm]{logo.pdf}}
\begin{document}
\begin{titlepage}
\maketitle
\thispagestyle{empty}
\end{titlepage}
\tableofcontents
\newpage
2016-11-26 13:11:10 +01:00
\section{Biographie}
2016-11-26 12:28:17 +01:00
Hallo Dies ist ein Test
2016-11-26 13:11:10 +01:00
\section{Verschlüsseln}
2016-12-13 20:13:32 +01:00
2016-12-15 18:29:26 +01:00
TODO:
Sind das wirklich alles Sections? Ich habe sie jetzt mal in Subsections
geändert. Ist evtl. eher Fett gemeint?
\subsection{Schlüsselkontruktion}
N = Privatschlüssel p= primzahl q = primzahl \\
2016-12-13 20:13:32 +01:00
Gleichung erstellen nach :
\begin{align*}
\varphi (N) & = \varphi (p*q) \\
& = \varphi (p) *\varphi(q) \\
& = (p-1) * (q-1)
\end{align*}
2016-12-13 20:13:32 +01:00
\subsection{ Wählen der Variablen}
2016-12-13 20:13:32 +01:00
\begin{align*}
p & = 7 \\
q & = 11 \\
\varphi(N) & = \varphi( 11*7) \\
\end{align*}
2016-12-13 20:13:32 +01:00
\subsection{Privatschlüssel}
2016-12-13 20:13:32 +01:00
\subsection{Öffentlicher Schlüssel}
2016-12-13 20:13:32 +01:00
2016-11-26 13:11:10 +01:00
\section{Verschlüsselung}
Hallo Dies ist ein Test
\section{Verteilung/Übertragung}
Hallo Dies ist ein Test
\section{Entschlüsselung}
Hallo Dies ist ein Test
\section{Schwachstellen}
Hallo Dies ist ein Test
\newpage
\section{Referenzen}
\nocite{*}
\bibliographystyle{plain}
\bibliography{bib}
\end{document}