finish part3, start part4

This commit is contained in:
Florian Hoss 2022-05-30 19:14:11 +02:00
parent 58f99634dc
commit 3b51341726
11 changed files with 48 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 157 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View file

@ -111,6 +111,8 @@
\listoffigures
\include{part1/part1}
\include{part2/part2}
\include{part3/part3}
\include{part4/part4}
\printbibliography[title=Literaturverzeichnis]

View file

@ -0,0 +1,37 @@
\section{Part 3: Symmetric Encryption}
\subsection{Plaintext}
\begin{verbatim}
This is a small plaintext
\end{verbatim}
\subsection{Verschlüsselter Plaintext}
\begin{figure}[H]
\begin{center}
\includegraphics[width=0.8\textwidth]{part3/plaintext}
\caption{Verschlüsselter Plaintext}
\label{fig:Verschlüsselter Plaintext}
\end{center}
\end{figure}
\subsection{Wort mit 8 Zeichen}
\begin{verbatim}
FLORIANH x45
\end{verbatim}
\subsection{Verschlüsselt mit DES}
\begin{figure}[H]
\begin{center}
\includegraphics[width=0.7\textwidth]{part3/des}
\caption{Verschlüsselt mit DES}
\label{fig:Verschlüsselt mit DES}
\end{center}
\end{figure}
\subsection{Was ist sicherer?}
Da man im ECB Modus leicht erkennen kann, dass sich ein Wort wiederholt, ist der CBC Modus wahrscheinlich sicherer. Im CBC Modus ist der verschlüsselte Text zufälliger.

View file

@ -0,0 +1,3 @@
\section{Part 4: Password Hashing and Cracking}