-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.tex
70 lines (52 loc) · 1.52 KB
/
main.tex
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
\documentclass[paper=a4, parskip=half-]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{mathtools}
\usepackage{amssymb} % more icons/symbols
\usepackage{hyperref} % for hyper links
\usepackage{graphicx}
\usepackage{geometry}
\geometry{
a4paper,
left=20mm,
right=20mm,
top=20mm,
bottom=30mm,
}
\title{Applied Cryptography}
\author{\texttt{thgoebel@ethz.ch}}
\date{ETH Zürich, FS 2021}
% Custom commands
\newcommand{\setzeroone}{\lbrace 0, 1 \rbrace} % => {0,1} (Notice the missing $$)
\newcommand{\horizontaldivider}{\begin{center} \line(1,0){350} \end{center}}
\newcommand{\xor}{\oplus}
\newcommand{\A}{\mathcal{A}} % quick access to fancy letters
\newcommand{\C}{\mathcal{C}}
\newcommand{\K}{\mathcal{K}}
\newcommand{\M}{\mathcal{M}}
\newcommand{\adv}{\mathbf{Adv}}
\begin{document}
\begin{titlepage}
\maketitle
\vspace{5cm}
\thispagestyle{empty}
\begin{abstract}
This documents is a \textbf{short} summary for the course \textit{Applied Cryptography} at ETH Zurich.
It is intended as a document for quick lookup, e.g. during revision, and as such does not replace reading the slides or a proper book.
We do not guarantee correctness or completeness, nor is this document endorsed by the lecturers.
Feel free to point out any erratas.
\end{abstract}
\end{titlepage}
\tableofcontents
\newpage
\listoffigures
%\listoftables
Credits: images are generally taken from the lecture slides.
\newpage
\input{symmetric-crypto}
\newpage
\input{asymmetric-crypto}
\newpage
\input{advanced-crypto}
\newpage
\end{document}