Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
SUBDIR+= basics
SUBDIR+= probability
SUBDIR+= shannon-entropy
SUBDIR+= applications

INCLUDE_MAKEFILES=makefiles
include ${INCLUDE_MAKEFILES}/subdir.mk
6 changes: 6 additions & 0 deletions applications/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
applications.log.gnuplot
applications.log.table
applications.pdf
encryptic.png
password_reuse.png
password_strength.png
14 changes: 6 additions & 8 deletions basics/Makefile → applications/Makefile
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
.PHONY: all
all: basics.pdf
all: applications.pdf

LATEXFLAGS+= -shell-escape
TEX_OUTDIR= .

SRC+= basics.tex abstract.tex basics.bib
SRC+= applications.tex preamble.tex applications.bib
SRC+= abstract.tex contents.tex
SRC+= hhcount.sty
FIGURES+= collusion.png
FIGURES+= password_strength.png password_reuse.png encryptic.png

basics.pdf: ${SRC} ${FIGURES}
applications.pdf: ${SRC} ${FIGURES}

password_strength.png:
wget -O $@ http://imgs.xkcd.com/comics/password_strength.png
Expand All @@ -28,8 +26,8 @@ hhcount.sty hhutils0.sty:

.PHONY: clean
clean:
${RM} basics.pdf
${RM} basics.bbl basics.log.gnuplot basics.log.table basics.nav basics.run.xml basics.snm basics.vrb
${RM} applications.pdf
${RM} applications.bbl applications.log.gnuplot applications.log.table applications.nav applications.run.xml applications.snm applications.vrb


.PHONY: distclean
Expand Down
2 changes: 2 additions & 0 deletions applications/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- "Applications of information theory" (MP4 H.264 AAC)
\[[HTTPS](https://ver.miun.se/courses/security/dasak/infotheory-applications.mp4)\]
17 changes: 17 additions & 0 deletions applications/abstract.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
\emph{Summary:}
There are various uses for information theory.
In this session we will explore some of them.

\emph{Intended learning outcomes:}
After this session you should be able
\begin{itemize}
\item to \emph{understand} how Shannon entropy can be applied in various
areas.
\end{itemize}

\emph{Reading:}
You should read on the use of entropy to estimate anonymity:
\citetitle{Eckersley2010hui}~\cite{Eckersley2010hui}.
This is then utilised in the text \citetitle{Bosk2013gl}~\cite{Bosk2013gl} (in
Swedish), and \citetitle{Komanduri2011opa}~\cite{Komanduri2011opa} which treats
passwords.
File renamed without changes.
80 changes: 80 additions & 0 deletions applications/applications.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
%\documentclass[handout]{beamer}
\documentclass{beamer}
\input{preamble.tex}

\usepackage{xparse}
\ProvideDocumentEnvironment{exercise}{o}{%
\setbeamercolor{block body}{bg=yellow!30,fg=black}
\setbeamercolor{block title}{bg=yellow,fg=black}
\IfValueTF{#1}{%
\begin{block}{Exercise: #1}
}{%
\begin{block}{Exercise}
}
}{%
\end{block}
}
\ProvideDocumentEnvironment{remark}{o}{%
\IfValueTF{#1}{%
\begin{alertblock}{Remark: #1}
}{%
\begin{alertblock}{Remark}
}
}{%
\end{alertblock}
}
\DeclareMathOperator{\powerset}{\mathcal{P}}
\DeclareMathOperator{\p}{\mathcal{P}}
\let\P\p
\DeclareMathOperator{\C}{\mathcal{C}}
\DeclareMathOperator{\K}{\mathcal{K}}
\DeclareMathOperator{\E}{\mathcal{E}}
\DeclareMathOperator{\D}{\mathcal{D}}

\DeclareMathOperator{\N}{\mathbb{N}}
\DeclareMathOperator{\Z}{\mathbb{Z}}
\DeclareMathOperator{\R}{\mathbb{R}}

\let\stoch\mathbf{}

\DeclareMathOperator{\xor}{\oplus}

\renewcommand{\qedsymbol}{Q.E.D.}

\mode<presentation>{%
\usetheme{Berlin}
\setbeamercovered{transparent}
}
\setbeamertemplate{footline}{\insertframenumber}

\title{%
Applications of information theory
}
\author{%
Daniel Bosk
}
\institute[MIUN IKS]{%
Department of Information and Communication Systems,\\
Mid Sweden University, Sundsvall.
}
\date{\today}

\AtBeginSection[]{%
\begin{frame}
\tableofcontents[currentsection]
\end{frame}
}

\begin{document}

\begin{frame}
\titlepage{}
\end{frame}

\begin{frame}
\tableofcontents
\end{frame}

\mode<all>{\input{contents.tex}}

\end{document}
File renamed without changes
Loading