gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-anastasis] branch master updated: fix FTBFS


From: gnunet
Subject: [taler-anastasis] branch master updated: fix FTBFS
Date: Sat, 06 Jun 2020 21:42:38 +0200

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository anastasis.

The following commit(s) were added to refs/heads/master by this push:
     new 3f2ec37  fix FTBFS
3f2ec37 is described below

commit 3f2ec3786f218d83a5ac4cb0f5924dd526e0f3c5
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Sat Jun 6 21:42:36 2020 +0200

    fix FTBFS
---
 doc/thesis/client_architecture.tex |  49 +--
 doc/thesis/thesis.aux              | 201 ++++++++-
 doc/thesis/thesis.bcf              |  96 +++--
 doc/thesis/thesis.lof              |  15 -
 doc/thesis/thesis.log              | 847 +++++++++++++++++++++++--------------
 doc/thesis/thesis.lot              |   3 -
 doc/thesis/thesis.synctex.gz       | Bin 355649 -> 0 bytes
 7 files changed, 805 insertions(+), 406 deletions(-)

diff --git a/doc/thesis/client_architecture.tex 
b/doc/thesis/client_architecture.tex
index 6fe2ba4..05238a8 100644
--- a/doc/thesis/client_architecture.tex
+++ b/doc/thesis/client_architecture.tex
@@ -218,12 +218,14 @@ struct challenge
 \item method: defines the method of this challenge, for example email, SMS, 
secure question.
 \item key\_share: After each successful authentication the key\_share which 
was sent by the server will be saved within this variable. It is later used to 
recreate a policy\_key.
 \item instructions: this contains a string with the instructions for the user. 
This could for example be:” What is your favourite colour?” or” An SMS was sent 
to the number +41...... please provide the pin”.
+\end{itemize}
+
 \subsubsection{Service API}
 The service API is responsible for sending the requests to the REST API of the 
server. The client has implemented functions for every end point. For more 
details see REST API documentation in the appendix.
 
 \subsection{Client Application CLI}
 There are two client applications which interact with the user. First the 
Anastasis splitter and second the Anastasis assembler. The splitter application 
is responsible for the backup of the core secret. The assembler is then 
responsible for the recovery of the secret. \\
- \\ 
+ \\
 \textbf{Anastasis splitter} \\
  \\
 \textbf{Available commands: }
@@ -244,8 +246,8 @@ Below is an example flow of the application. \\
 \begin{lstlisting}
 //The user starts the programm and passes a json document
 //containing the unforgetable secret(name, social security number..)
-$ anastasis-splitter --me=identity.json 
-anastasis-splitter> server add $URL1 
+$ anastasis-splitter --me=identity.json
+anastasis-splitter> server add $URL1
 version: 1.0
 annual fee: EUR:4.99,
 available policy methods: sms
@@ -258,7 +260,7 @@ Server #2 available
 anastasis-splitter> truth add server#1 sms +492452526
 Truth #1 added for server #1
 anastasis-splitter> truth add server#2 mail "hoehenweg 80, Biel"
-Sorry, server #2 does not support 'mail' 
+Sorry, server #2 does not support 'mail'
 anastasis-splitter> truth add question "favorite color" "red"
 Truth #2 added
 anastasis-splitter> policy add truth#1 truth#2
@@ -274,14 +276,14 @@ truth#2: question "favorite color" "red"
 anastasis-splitter> server
 server#1: http://anastasis.example.com/ methods: sms,
 insured up to: 420 KUDOS, cost: 0.4 KUDOS
-anastasis-splitter> publish 
-Server#1 failure: 402 payment required: 
+anastasis-splitter> publish
+Server#1 failure: 402 payment required:
 payto://pay/ABALSASDFA KUDOS:0.3
-Server#2 failure: 402 payment required: 
+Server#2 failure: 402 payment required:
 payto://pay/ABALSAADAS KUDOS:0.5
 Total: 0.8 KUDOS
 # Here: taler-wallet-cli payto://pay/ABALASDFA used to pay!
-anastasis-splitter> publish 
+anastasis-splitter> publish
 Server#2 failure: 402 payment required
 # Here: taler-wallet-cli payto://pay/ABASDFASDF used to pay!
 anastasis-splitter> publish "my super secret"
@@ -306,9 +308,9 @@ Below is an example flow of the application. \\
 //a url to a escrow provider which stores his recovery document and
 //the requested version of the recovery document. The client will then
 //download the recovery document within the startup
-$ anastasis-assembler --import https://anastasis.example.com/ 
---policy-version=42 --me=identity.json 
-anastasis-assembler> truth 
+$ anastasis-assembler --import https://anastasis.example.com/
+--policy-version=42 --me=identity.json
+anastasis-assembler> truth
 truth#1(-): KUDOS 0.0 question "favorite color"
 truth#2(-): KUDOS 0.4 sms
 truth#3(-): KUDOS 2.6 post
@@ -317,34 +319,21 @@ policy#1: KUDOS 0.4 truth#1 truth#2 missing
 policy#2: KUDOS 3.0 truth#1 truth#2 truth#3 missing
 anastasis-assembler> try truth#2
 payto://pay/BASDFASD
-# SMS arrives asynchronously  
+# SMS arrives asynchronously
 anastasis-assembler> answer truth#2 1234
-Success truth#2  
-anastasis-assembler> answer truth#1 "blue"  
+Success truth#2
+anastasis-assembler> answer truth#1 "blue"
 Failed truth#1
 anastasis-assembler> truth
-truth#1(-): KUDOS 0.0 question "favorite color" 
-truth#2(+): KUDOS 0.4 sms  
+truth#1(-): KUDOS 0.0 question "favorite color"
+truth#2(+): KUDOS 0.4 sms
 truth#3(-): KUDOS 2.6 post
 anastasis-assembler> policies
 policy#1: KUDOS 0.0 truth#1 missing
 policy#2: KUDOS 2.6 truth#1 truth#3 missing
-anastasis-assembler> answer truth#2 "red"  
+anastasis-assembler> answer truth#2 "red"
 Success truth#2
 //One of the policies was solved successfully and the secret is recovered.
 Secret was: "my super secret"
 $
 \end{lstlisting}
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/doc/thesis/thesis.aux b/doc/thesis/thesis.aux
index deea384..209b8aa 100644
--- a/doc/thesis/thesis.aux
+++ b/doc/thesis/thesis.aux
@@ -1,6 +1,24 @@
 \relax 
+\providecommand\hyper@newdestlabel[2]{}
 \providecommand*\new@tpo@label[2]{}
 \abx@aux@refcontext{none/global//global/global}
+\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument}
+\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined
+\global\let\oldcontentsline\contentsline
+\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}}
+\global\let\oldnewlabel\newlabel
+\gdef\newlabel#1#2{\newlabelxx{#1}#2}
+\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
+\AtEndDocument{\ifx\hyper@anchor\@undefined
+\let\contentsline\oldcontentsline
+\let\newlabel\oldnewlabel
+\fi}
+\fi}
+\global\let\hyper@last\relax 
+\gdef\HyperFirstAtBeginDocument#1{#1}
+\providecommand\HyField@AuxAddToFields[1]{}
+\providecommand\HyField@AuxAddToCoFields[2]{}
+\providecommand\BKM@entry[2]{}
 \@writefile{toc}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse 
{pagetracker}\boolfalse {backtracker}\relax }
 \@writefile{lof}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse 
{pagetracker}\boolfalse {backtracker}\relax }
 \@writefile{lot}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse 
{pagetracker}\boolfalse {backtracker}\relax }
@@ -8,10 +26,53 @@
 \@writefile{toc}{\defcounter {refsection}{0}\relax 
}\@writefile{toc}{\selectlanguage *{english}}
 \@writefile{lof}{\defcounter {refsection}{0}\relax 
}\@writefile{lof}{\selectlanguage *{english}}
 \@writefile{lot}{\defcounter {refsection}{0}\relax 
}\@writefile{lot}{\selectlanguage *{english}}
+\@input{acknowledgments.aux}
+\BKM@entry{id=1,dest={73656374696F6E2A2E31},srcline={2},srcfile={2E2F61636B6E6F776C6564676D656E74732E746578}}{5C3337365C3337375C303030415C303030635C3030306B5C3030306E5C3030306F5C303030775C3030306C5C303030655C303030645C303030675C303030655C3030306D5C303030655C3030306E5C303030745C30303073}
 \@input{abstract.aux}
-\@input{motivation.aux}
+\BKM@entry{id=2,dest={73656374696F6E2A2E32},srcline={3},srcfile={2E2F61627374726163742E746578}}{5C3337365C3337375C303030415C303030625C303030735C303030745C303030725C303030615C303030635C30303074}
+\@input{glossary.aux}
+\@input{introduction.aux}
+\BKM@entry{id=3,dest={73656374696F6E2E31},srcline={1},srcfile={2E2F696E74726F64756374696F6E2E746578}}{5C3337365C3337375C303030495C3030306E5C303030745C303030725C3030306F5C303030645C303030755C303030635C303030745C303030695C3030306F5C3030306E}
+\BKM@entry{id=4,dest={73756273656374696F6E2E312E31},srcline={6},srcfile={2E2F696E74726F64756374696F6E2E746578}}{5C3337365C3337375C303030505C303030725C303030695C3030306E5C303030635C303030695C303030705C3030306C5C303030655C30303073}
+\BKM@entry{id=5,dest={73756273656374696F6E2E312E32},srcline={16},srcfile={2E2F696E74726F64756374696F6E2E746578}}{5C3337365C3337375C303030415C303030705C303030705C303030725C3030306F5C303030615C303030635C303030685C303030655C30303073}
+\BKM@entry{id=6,dest={73756273656374696F6E2E312E33},srcline={35},srcfile={2E2F696E74726F64756374696F6E2E746578}}{5C3337365C3337375C303030555C303030735C303030655C3030305C3034305C303030635C303030615C303030735C303030655C30303073}
+\BKM@entry{id=7,dest={73756273756273656374696F6E2E312E332E31},srcline={38},srcfile={2E2F696E74726F64756374696F6E2E746578}}{5C3337365C3337375C303030455C3030306E5C303030635C303030725C303030795C303030705C303030745C303030655C303030645C3030305C3034305C303030655C3030306D5C303030615C303030695C3030306C5C3030305C3034305C303030635C3030306F5C3030306D5C3030306D5C303030755C3030306E5C303030695C303030635C303030615C303030745C303030695C3030306F5C3030306E}
+\abx@aux@cite{garfinkel1995}
+\abx@aux@segm{0}{0}{garfinkel1995}
+\abx@aux@cite{pepdoc}
+\abx@aux@segm{0}{0}{pepdoc}
+\BKM@entry{id=8,dest={73756273756273656374696F6E2E312E332E32},srcline={45},srcfile={2E2F696E74726F64756374696F6E2E746578}}{5C3337365C3337375C303030445C303030695C303030675C303030695C303030745C303030615C3030306C5C3030305C3034305C303030635C303030755C303030725C303030725C303030655C3030306E5C303030635C303030695C303030655C303030735C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C303030705C303030615C303030795C3030306D5C303030655C3030306E5C303030745C3030305C3034305C303030735C3030306
 [...]
+\abx@aux@cite{LLLW*2017}
+\abx@aux@segm{0}{0}{LLLW*2017}
+\abx@aux@cite{millions_lost}
+\abx@aux@segm{0}{0}{millions_lost}
+\abx@aux@cite{bitcoin-keys}
+\abx@aux@segm{0}{0}{bitcoin-keys}
+\abx@aux@cite{bitcoin-keys}
+\abx@aux@segm{0}{0}{bitcoin-keys}
+\BKM@entry{id=9,dest={73756273756273656374696F6E2E312E332E33},srcline={58},srcfile={2E2F696E74726F64756374696F6E2E746578}}{5C3337365C3337375C303030505C303030615C303030735C303030735C303030775C3030306F5C303030725C303030645C3030305C3034305C3030306D5C303030615C3030306E5C303030615C303030675C303030655C30303072}
+\BKM@entry{id=10,dest={73756273756273656374696F6E2E312E332E34},srcline={62},srcfile={2E2F696E74726F64756374696F6E2E746578}}{5C3337365C3337375C303030485C303030615C303030725C303030645C3030305C3034305C303030645C303030725C303030695C303030765C303030655C3030305C3034305C303030655C3030306E5C303030635C303030725C303030795C303030705C303030745C303030695C3030306F5C3030306E}
+\abx@aux@cite{bitlocker}
+\abx@aux@segm{0}{0}{bitlocker}
+\abx@aux@cite{bajikar2002}
+\abx@aux@segm{0}{0}{bajikar2002}
 \@input{project_management.aux}
+\BKM@entry{id=11,dest={73656374696F6E2E32},srcline={1},srcfile={2E2F70726F6A6563745F6D616E6167656D656E742E746578}}{5C3337365C3337375C303030505C303030725C3030306F5C3030306A5C303030655C303030635C303030745C3030305C3034305C3030306D5C303030615C3030306E5C303030615C303030675C303030655C3030306D5C303030655C3030306E5C30303074}
+\BKM@entry{id=12,dest={73756273656374696F6E2E322E31},srcline={3},srcfile={2E2F70726F6A6563745F6D616E6167656D656E742E746578}}{5C3337365C3337375C303030505C303030725C3030306F5C3030306A5C303030655C303030635C303030745C3030305C3034305C303030705C3030306C5C303030615C3030306E}
+\BKM@entry{id=13,dest={73756273656374696F6E2E322E32},srcline={12},srcfile={2E2F70726F6A6563745F6D616E6167656D656E742E746578}}{5C3337365C3337375C303030505C303030725C3030306F5C3030306A5C303030655C303030635C303030745C3030305C3034305C303030705C3030306C5C303030615C3030306E5C3030305C3034305C303030725C303030655C303030665C3030306C5C303030655C303030635C303030745C303030695C3030306F5C3030306E}
 \@input{related_work.aux}
+\BKM@entry{id=14,dest={73656374696F6E2E33},srcline={1},srcfile={2E2F72656C617465645F776F726B2E746578}}{5C3337365C3337375C303030525C303030655C3030306C5C303030615C303030745C303030655C303030645C3030305C3034305C303030775C3030306F5C303030725C3030306B}
+\BKM@entry{id=15,dest={73756273656374696F6E2E332E31},srcline={2},srcfile={2E2F72656C617465645F776F726B2E746578}}{5C3337365C3337375C303030505C303030725C303030655C303030725C303030655C303030715C303030755C303030695C303030735C303030695C303030745C303030655C30303073}
+\BKM@entry{id=16,dest={73756273756273656374696F6E2E332E312E31},srcline={5},srcfile={2E2F72656C617465645F776F726B2E746578}}{5C3337365C3337375C303030505C303030525C303030475C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C303030505C303030525C303030465C3030305C303531}
+\abx@aux@cite{vadhan2012}
+\abx@aux@segm{0}{0}{vadhan2012}
+\abx@aux@cite{vadhan2012}
+\abx@aux@segm{0}{0}{vadhan2012}
+\abx@aux@cite{nielsen2002}
+\abx@aux@segm{0}{0}{nielsen2002}
+\abx@aux@cite{GGM1986}
+\abx@aux@segm{0}{0}{GGM1986}
+\BKM@entry{id=17,dest={73756273756273656374696F6E2E332E312E32},srcline={10},srcfile={2E2F72656C617465645F776F726B2E746578}}{5C3337365C3337375C303030485C303030615C303030735C303030685C3030305C3034305C303030665C303030755C3030306E5C303030635C303030745C303030695C3030306F5C3030306E}
 \abx@aux@cite{Preneel1999}
 \abx@aux@segm{0}{0}{Preneel1999}
 \abx@aux@cite{SG2012}
@@ -20,10 +81,17 @@
 \abx@aux@segm{0}{0}{SG2012}
 \abx@aux@cite{SG2012}
 \abx@aux@segm{0}{0}{SG2012}
+\abx@aux@cite{RK2011}
+\abx@aux@segm{0}{0}{RK2011}
+\abx@aux@cite{GJW2011}
+\abx@aux@segm{0}{0}{GJW2011}
+\BKM@entry{id=18,dest={73756273756273656374696F6E2E332E312E33},srcline={28},srcfile={2E2F72656C617465645F776F726B2E746578}}{5C3337365C3337375C303030485C3030304D5C303030415C30303043}
 \abx@aux@cite{BCK1996}
 \abx@aux@segm{0}{0}{BCK1996}
+\BKM@entry{id=19,dest={73756273756273656374696F6E2E332E312E34},srcline={33},srcfile={2E2F72656C617465645F776F726B2E746578}}{5C3337365C3337375C303030485C3030304B5C303030445C30303046}
 \abx@aux@cite{krawczyk2010}
 \abx@aux@segm{0}{0}{krawczyk2010}
+\BKM@entry{id=20,dest={73756273756273656374696F6E2E332E312E35},srcline={38},srcfile={2E2F72656C617465645F776F726B2E746578}}{5C3337365C3337375C303030415C303030725C303030675C3030306F5C3030306E5C30303032}
 \abx@aux@cite{trimberger2012}
 \abx@aux@segm{0}{0}{trimberger2012}
 \abx@aux@cite{madurawe2006}
@@ -36,40 +104,161 @@
 \abx@aux@segm{0}{0}{BDK2016}
 \abx@aux@cite{BDK2016}
 \abx@aux@segm{0}{0}{BDK2016}
+\BKM@entry{id=21,dest={73756273656374696F6E2E332E32},srcline={45},srcfile={2E2F72656C617465645F776F726B2E746578}}{5C3337365C3337375C303030535C303030655C303030635C303030725C303030655C303030745C3030305C3034305C303030735C303030685C303030615C303030725C303030695C3030306E5C30303067}
+\BKM@entry{id=22,dest={73756273756273656374696F6E2E332E322E31},srcline={50},srcfile={2E2F72656C617465645F776F726B2E746578}}{5C3337365C3337375C303030535C303030685C303030615C3030306D5C303030695C303030725C303030275C303030735C3030305C3034305C303030535C303030655C303030635C303030725C303030655C303030745C3030305C3034305C303030535C303030685C303030615C303030725C303030695C3030306E5C30303067}
 \abx@aux@cite{shamir_sharing}
 \abx@aux@segm{0}{0}{shamir_sharing}
+\BKM@entry{id=23,dest={73756273756273656374696F6E2E332E322E32},srcline={55},srcfile={2E2F72656C617465645F776F726B2E746578}}{5C3337365C3337375C303030565C303030655C303030725C303030695C303030665C303030695C303030615C303030625C3030306C5C303030655C3030305C3034305C303030535C303030655C303030635C303030725C303030655C303030745C3030305C3034305C303030535C303030685C303030615C303030725C303030695C3030306E5C30303067}
 \abx@aux@cite{pedersen_sharing_0}
 \abx@aux@segm{0}{0}{pedersen_sharing_0}
 \abx@aux@cite{feldman_sharing}
 \abx@aux@segm{0}{0}{feldman_sharing}
+\BKM@entry{id=24,dest={73756273756273656374696F6E2E332E322E33},srcline={59},srcfile={2E2F72656C617465645F776F726B2E746578}}{5C3337365C3337375C303030445C303030695C303030735C303030745C303030725C303030695C303030625C303030755C303030745C303030655C303030645C3030305C3034305C3030304B5C303030655C303030795C3030305C3034305C303030475C303030655C3030306E5C303030655C303030725C303030615C303030745C303030695C3030306F5C3030306E}
 \abx@aux@cite{pedersen_sharing_5.2}
 \abx@aux@segm{0}{0}{pedersen_sharing_5.2}
+\BKM@entry{id=25,dest={73756273656374696F6E2E332E33},srcline={66},srcfile={2E2F72656C617465645F776F726B2E746578}}{5C3337365C3337375C303030455C303030785C303030695C303030735C303030745C303030695C3030306E5C303030675C3030305C3034305C303030735C3030306F5C3030306C5C303030755C303030745C303030695C3030306F5C3030306E5C30303073}
+\BKM@entry{id=26,dest={73756273756273656374696F6E2E332E332E31},srcline={69},srcfile={2E2F72656C617465645F776F726B2E746578}}{5C3337365C3337375C303030435C3030306F5C303030695C3030306E5C303030625C303030615C303030735C30303065}
+\abx@aux@cite{coinbase}
+\abx@aux@segm{0}{0}{coinbase}
+\BKM@entry{id=27,dest={73756273756273656374696F6E2E332E332E32},srcline={72},srcfile={2E2F72656C617465645F776F726B2E746578}}{5C3337365C3337375C3030304D5C303030495C303030445C303030415C303030545C30303041}
+\abx@aux@cite{midata}
+\abx@aux@segm{0}{0}{midata}
 \abx@aux@cite{midata}
 \abx@aux@segm{0}{0}{midata}
 \abx@aux@cite{midata}
 \abx@aux@segm{0}{0}{midata}
+\BKM@entry{id=28,dest={73756273656374696F6E2E332E34},srcline={81},srcfile={2E2F72656C617465645F776F726B2E746578}}{5C3337365C3337375C303030415C303030755C303030745C303030685C303030655C3030306E5C303030745C303030695C303030635C303030615C303030745C303030695C3030306F5C3030306E}
+\abx@aux@cite{multifactor_authentication}
+\abx@aux@segm{0}{0}{multifactor_authentication}
+\BKM@entry{id=29,dest={73756273756273656374696F6E2E332E342E31},srcline={85},srcfile={2E2F72656C617465645F776F726B2E746578}}{5C3337365C3337375C303030505C303030615C303030735C303030735C303030775C3030306F5C303030725C303030645C3030305C3034305C303030615C303030755C303030745C303030685C303030655C3030306E5C303030745C303030695C303030635C303030615C303030745C303030695C3030306F5C3030306E}
 \abx@aux@cite{authentication_methods_review}
 \abx@aux@segm{0}{0}{authentication_methods_review}
+\BKM@entry{id=30,dest={73756273756273656374696F6E2E332E342E32},srcline={89},srcfile={2E2F72656C617465645F776F726B2E746578}}{5C3337365C3337375C303030535C303030655C303030635C303030755C303030725C303030655C3030305C3034305C303030715C303030755C303030655C303030735C303030745C303030695C3030306F5C3030306E}
+\abx@aux@cite{just2004}
+\abx@aux@segm{0}{0}{just2004}
+\abx@aux@cite{just2004}
+\abx@aux@segm{0}{0}{just2004}
+\BKM@entry{id=31,dest={73756273756273656374696F6E2E332E342E33},srcline={102},srcfile={2E2F72656C617465645F776F726B2E746578}}{5C3337365C3337375C303030535C3030304D5C303030535C3030305C3034305C303030615C303030755C303030745C303030685C303030655C3030306E5C303030745C303030695C303030635C303030615C303030745C303030695C3030306F5C3030306E}
+\abx@aux@cite{MBSS2013}
+\abx@aux@segm{0}{0}{MBSS2013}
 \abx@aux@cite{rieck_detection}
 \abx@aux@segm{0}{0}{rieck_detection}
+\BKM@entry{id=32,dest={73756273756273656374696F6E2E332E342E34},srcline={107},srcfile={2E2F72656C617465645F776F726B2E746578}}{5C3337365C3337375C303030455C3030302D5C3030306D5C303030615C303030695C3030306C5C3030305C3034305C303030615C303030755C303030745C303030685C303030655C3030306E5C303030745C303030695C303030635C303030615C303030745C303030695C3030306F5C3030306E}
+\abx@aux@cite{emailauthowasp}
+\abx@aux@segm{0}{0}{emailauthowasp}
+\BKM@entry{id=33,dest={73756273756273656374696F6E2E332E342E35},srcline={114},srcfile={2E2F72656C617465645F776F726B2E746578}}{5C3337365C3337375C303030565C303030695C303030645C303030655C3030306F5C303030495C303030645C303030655C3030306E5C30303074}
+\abx@aux@cite{pohlmann2017}
+\abx@aux@segm{0}{0}{pohlmann2017}
+\BKM@entry{id=34,dest={73756273756273656374696F6E2E332E342E36},srcline={120},srcfile={2E2F72656C617465645F776F726B2E746578}}{5C3337365C3337375C303030505C3030306F5C303030735C303030745C303030495C303030645C303030655C3030306E5C30303074}
+\BKM@entry{id=35,dest={73756273756273656374696F6E2E332E342E37},srcline={124},srcfile={2E2F72656C617465645F776F726B2E746578}}{5C3337365C3337375C303030425C303030695C3030306F5C3030306D5C303030655C303030745C303030725C303030695C303030635C3030305C3034305C303030615C303030755C303030745C303030685C303030655C3030306E5C303030745C303030695C303030635C303030615C303030745C303030695C3030306F5C3030306E}
 \abx@aux@cite{biometric_auth}
 \abx@aux@segm{0}{0}{biometric_auth}
 \abx@aux@cite{ccc_merkel}
 \abx@aux@segm{0}{0}{ccc_merkel}
-\abx@aux@cite{multifactor_authentication}
-\abx@aux@segm{0}{0}{multifactor_authentication}
 \@input{design.aux}
+\BKM@entry{id=36,dest={73656374696F6E2E34},srcline={1},srcfile={2E2F64657369676E2E746578}}{5C3337365C3337375C303030445C303030655C303030735C303030695C303030675C3030306E}
+\BKM@entry{id=37,dest={73756273656374696F6E2E342E31},srcline={10},srcfile={2E2F64657369676E2E746578}}{5C3337365C3337375C303030535C303030795C303030735C303030745C303030655C3030306D5C3030305C3034305C303030615C303030725C303030635C303030685C303030695C303030745C303030655C303030635C303030745C303030755C303030725C30303065}
 \@input{server_architecture.aux}
+\BKM@entry{id=38,dest={73656374696F6E2E35},srcline={1},srcfile={2E2F7365727665725F6172636869746563747572652E746578}}{5C3337365C3337375C303030535C303030655C303030725C303030765C303030655C303030725C3030305C3034305C303030615C303030725C303030635C303030685C303030695C303030745C303030655C303030635C303030745C303030755C303030725C30303065}
+\BKM@entry{id=39,dest={73756273656374696F6E2E352E31},srcline={3},srcfile={2E2F7365727665725F6172636869746563747572652E746578}}{5C3337365C3337375C303030445C303030615C303030745C303030615C303030625C303030615C303030735C30303065}
+\BKM@entry{id=40,dest={73756273656374696F6E2E352E32},srcline={19},srcfile={2E2F7365727665725F6172636869746563747572652E746578}}{5C3337365C3337375C303030535C303030655C303030725C303030765C303030655C303030725C3030305C3034305C303030415C303030505C30303049}
+\BKM@entry{id=41,dest={73756273656374696F6E2E352E33},srcline={23},srcfile={2E2F7365727665725F6172636869746563747572652E746578}}{5C3337365C3337375C303030415C303030755C303030745C303030685C303030655C3030306E5C303030745C303030695C303030635C303030615C303030745C303030695C3030306F5C3030306E5C3030305C3034305C3030304D5C303030655C303030745C303030685C3030306F5C303030645C30303073}
+\BKM@entry{id=42,dest={73756273756273656374696F6E2E352E332E31},srcline={26},srcfile={2E2F7365727665725F6172636869746563747572652E746578}}{5C3337365C3337375C303030535C3030304D5C303030535C3030305C3034305C3030305C3035305C303030735C3030306D5C303030735C3030305C303531}
+\BKM@entry{id=43,dest={73756273756273656374696F6E2E352E332E32},srcline={29},srcfile={2E2F7365727665725F6172636869746563747572652E746578}}{5C3337365C3337375C303030565C303030695C303030645C303030655C3030306F5C3030305C3034305C303030695C303030645C303030655C3030306E5C303030745C303030695C303030665C303030695C303030635C303030615C303030745C303030695C3030306F5C3030306E5C3030305C3034305C3030305C3035305C303030765C303030695C303030645C3030305C303531}
+\BKM@entry{id=44,dest={73756273756273656374696F6E2E352E332E33},srcline={34},srcfile={2E2F7365727665725F6172636869746563747572652E746578}}{5C3337365C3337375C303030505C3030306F5C303030735C303030745C3030305C3034305C303030695C303030645C303030655C3030306E5C303030745C303030695C303030665C303030695C303030635C303030615C303030745C303030695C3030306F5C3030306E5C3030305C3034305C3030305C3035305C303030705C3030306F5C303030735C303030745C3030305C303531}
+\BKM@entry{id=45,dest={73756273756273656374696F6E2E352E332E34},srcline={37},srcfile={2E2F7365727665725F6172636869746563747572652E746578}}{5C3337365C3337375C303030535C303030655C303030635C303030755C303030725C303030695C303030745C303030795C3030305C3034305C303030715C303030755C303030655C303030735C303030745C303030695C3030306F5C3030306E5C3030305C3034305C3030305C3035305C303030715C303030615C3030305C303531}
 \@input{client_architecture.aux}
+\BKM@entry{id=46,dest={73656374696F6E2E36},srcline={1},srcfile={2E2F636C69656E745F6172636869746563747572652E746578}}{5C3337365C3337375C303030435C3030306C5C303030695C303030655C3030306E5C303030745C3030305C3034305C303030615C303030725C303030635C303030685C303030695C303030745C303030655C303030635C303030745C303030755C303030725C30303065}
+\BKM@entry{id=47,dest={73756273656374696F6E2E362E31},srcline={4},srcfile={2E2F636C69656E745F6172636869746563747572652E746578}}{5C3337365C3337375C303030435C3030306C5C303030695C303030655C3030306E5C303030745C3030305C3034305C303030415C303030505C30303049}
+\BKM@entry{id=48,dest={73756273756273656374696F6E2E362E312E31},srcline={8},srcfile={2E2F636C69656E745F6172636869746563747572652E746578}}{5C3337365C3337375C303030435C303030725C303030795C303030705C303030745C3030306F5C3030305C3034305C303030415C303030505C30303049}
+\BKM@entry{id=49,dest={73756273756273656374696F6E2E362E312E32},srcline={93},srcfile={2E2F636C69656E745F6172636869746563747572652E746578}}{5C3337365C3337375C303030435C3030306C5C303030695C303030655C3030306E5C303030745C3030305C3034305C303030415C303030505C30303049}
+\BKM@entry{id=50,dest={73756273756273656374696F6E2E362E312E33},srcline={221},srcfile={2E2F636C69656E745F6172636869746563747572652E746578}}{5C3337365C3337375C303030535C303030655C303030725C303030765C303030695C303030635C303030655C3030305C3034305C303030415C303030505C30303049}
+\BKM@entry{id=51,dest={73756273656374696F6E2E362E32},srcline={224},srcfile={2E2F636C69656E745F6172636869746563747572652E746578}}{5C3337365C3337375C303030435C3030306C5C303030695C303030655C3030306E5C303030745C3030305C3034305C303030415C303030705C303030705C3030306C5C303030695C303030635C303030615C303030745C303030695C3030306F5C3030306E5C3030305C3034305C303030435C3030304C5C30303049}
 \@input{implementation.aux}
+\BKM@entry{id=52,dest={73656374696F6E2E37},srcline={1},srcfile={2E2F696D706C656D656E746174696F6E2E746578}}{5C3337365C3337375C303030495C3030306D5C303030705C3030306C5C303030655C3030306D5C303030655C3030306E5C303030745C303030615C303030745C303030695C3030306F5C3030306E}
+\BKM@entry{id=53,dest={73756273656374696F6E2E372E31},srcline={16},srcfile={2E2F696D706C656D656E746174696F6E2E746578}}{5C3337365C3337375C303030415C303030705C303030705C3030306C5C303030695C303030635C303030615C303030745C303030695C3030306F5C3030306E5C3030305C3034305C303030665C3030306C5C3030306F5C30303077}
+\BKM@entry{id=54,dest={73756273756273656374696F6E2E372E312E31},srcline={19},srcfile={2E2F696D706C656D656E746174696F6E2E746578}}{5C3337365C3337375C303030535C303030655C303030635C303030725C303030655C303030745C3030305C3034305C303030735C303030705C3030306C5C303030695C303030745C303030745C303030695C3030306E5C30303067}
+\BKM@entry{id=55,dest={73756273756273656374696F6E2E372E312E32},srcline={38},srcfile={2E2F696D706C656D656E746174696F6E2E746578}}{5C3337365C3337375C303030535C303030655C303030635C303030725C303030655C303030745C3030305C3034305C303030725C303030655C303030635C3030306F5C303030765C303030655C303030725C30303079}
+\BKM@entry{id=56,dest={73756273656374696F6E2E372E32},srcline={56},srcfile={2E2F696D706C656D656E746174696F6E2E746578}}{5C3337365C3337375C3030304C5C303030695C303030625C303030725C303030615C303030725C303030695C303030655C30303073}
+\BKM@entry{id=57,dest={73756273756273656374696F6E2E372E322E31},srcline={59},srcfile={2E2F696D706C656D656E746174696F6E2E746578}}{5C3337365C3337375C303030475C3030304E5C303030555C3030305C3034305C303030545C303030615C3030306C5C303030655C30303072}
+\abx@aux@cite{gnu_taler}
+\abx@aux@segm{0}{0}{gnu_taler}
+\abx@aux@cite{gnu_taler}
+\abx@aux@segm{0}{0}{gnu_taler}
+\BKM@entry{id=58,dest={73756273756273656374696F6E2E372E322E32},srcline={65},srcfile={2E2F696D706C656D656E746174696F6E2E746578}}{5C3337365C3337375C303030505C3030306F5C303030735C303030745C303030675C303030725C303030655C303030535C303030515C3030304C}
+\abx@aux@cite{postgresql}
+\abx@aux@segm{0}{0}{postgresql}
+\BKM@entry{id=59,dest={73756273756273656374696F6E2E372E322E33},srcline={69},srcfile={2E2F696D706C656D656E746174696F6E2E746578}}{5C3337365C3337375C3030304C5C303030695C303030625C303030635C303030755C303030725C3030306C}
+\abx@aux@cite{libcurl}
+\abx@aux@segm{0}{0}{libcurl}
+\BKM@entry{id=60,dest={73756273756273656374696F6E2E372E322E34},srcline={73},srcfile={2E2F696D706C656D656E746174696F6E2E746578}}{5C3337365C3337375C303030475C3030304E5C303030555C3030305C3034305C3030304C5C303030695C303030625C3030306D5C303030695C303030635C303030725C3030306F5C303030685C303030745C303030745C303030705C30303064}
+\abx@aux@cite{libmicrohttpd}
+\abx@aux@segm{0}{0}{libmicrohttpd}
+\BKM@entry{id=61,dest={73756273656374696F6E2E372E33},srcline={77},srcfile={2E2F696D706C656D656E746174696F6E2E746578}}{5C3337365C3337375C303030545C303030655C303030735C303030745C303030695C3030306E5C30303067}
+\BKM@entry{id=62,dest={73756273656374696F6E2E372E34},srcline={89},srcfile={2E2F696D706C656D656E746174696F6E2E746578}}{5C3337365C3337375C303030435C303030725C303030795C303030705C303030745C3030306F5C303030675C303030725C303030615C303030705C303030685C30303079}
+\BKM@entry{id=63,dest={73756273656374696F6E2E372E35},srcline={100},srcfile={2E2F696D706C656D656E746174696F6E2E746578}}{5C3337365C3337375C3030304B5C303030655C303030795C3030305C3034305C303030445C303030655C303030725C303030695C303030765C303030615C303030745C303030695C3030306F5C3030306E5C30303073}
+\BKM@entry{id=64,dest={73756273656374696F6E2E372E36},srcline={120},srcfile={2E2F696D706C656D656E746174696F6E2E746578}}{5C3337365C3337375C303030565C303030655C303030725C303030695C303030665C303030695C303030635C303030615C303030745C303030695C3030306F5C3030306E}
+\BKM@entry{id=65,dest={73756273656374696F6E2E372E37},srcline={155},srcfile={2E2F696D706C656D656E746174696F6E2E746578}}{5C3337365C3337375C303030455C3030306E5C303030635C303030725C303030795C303030705C303030745C303030695C3030306F5C3030306E}
+\BKM@entry{id=66,dest={73756273656374696F6E2E372E38},srcline={181},srcfile={2E2F696D706C656D656E746174696F6E2E746578}}{5C3337365C3337375C3030304B5C303030655C303030795C3030305C3034305C303030755C303030735C303030615C303030675C30303065}
+\BKM@entry{id=67,dest={73756273756273656374696F6E2E372E382E31},srcline={185},srcfile={2E2F696D706C656D656E746174696F6E2E746578}}{5C3337365C3337375C303030455C3030306E5C303030635C303030725C303030795C303030705C303030745C303030695C3030306F5C3030306E}
+\BKM@entry{id=68,dest={73756273756273656374696F6E2E372E382E32},srcline={220},srcfile={2E2F696D706C656D656E746174696F6E2E746578}}{5C3337365C3337375C303030535C303030695C303030675C3030306E5C303030615C303030745C303030755C303030725C303030655C30303073}
+\BKM@entry{id=69,dest={73756273656374696F6E2E372E39},srcline={246},srcfile={2E2F696D706C656D656E746174696F6E2E746578}}{5C3337365C3337375C303030415C303030765C303030615C303030695C3030306C5C303030615C303030625C303030695C3030306C5C303030695C303030745C303030795C3030305C3034305C303030435C3030306F5C3030306E5C303030735C303030695C303030645C303030655C303030725C303030615C303030745C303030695C3030306F5C3030306E5C30303073}
 \@input{business_model.aux}
+\BKM@entry{id=70,dest={73656374696F6E2E38},srcline={1},srcfile={2E2F627573696E6573735F6D6F64656C2E746578}}{5C3337365C3337375C303030425C303030755C303030735C303030695C3030306E5C303030655C303030735C303030735C3030305C3034305C3030306D5C3030306F5C303030645C303030655C3030306C}
+\BKM@entry{id=71,dest={73756273656374696F6E2E382E31},srcline={2},srcfile={2E2F627573696E6573735F6D6F64656C2E746578}}{5C3337365C3337375C303030495C3030306E5C303030745C303030725C3030306F5C303030645C303030755C303030635C303030745C303030695C3030306F5C3030306E}
+\BKM@entry{id=72,dest={73756273656374696F6E2E382E32},srcline={5},srcfile={2E2F627573696E6573735F6D6F64656C2E746578}}{5C3337365C3337375C303030455C303030785C303030655C303030635C303030755C303030745C303030695C303030765C303030655C3030305C3034305C303030535C303030755C3030306D5C3030306D5C303030615C303030725C30303079}
+\BKM@entry{id=73,dest={73756273656374696F6E2E382E33},srcline={19},srcfile={2E2F627573696E6573735F6D6F64656C2E746578}}{5C3337365C3337375C3030304D5C303030615C303030725C3030306B5C303030655C303030745C3030305C3034305C303030725C303030655C303030765C303030695C303030655C303030775C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C303030695C3030306E5C3030306E5C3030306F5C303030765C303030615C303030745C303030695C3030306F5C3030306E5C3030305C3034305C303030705C3030306F5C303030745C303030655C30
 [...]
 \abx@aux@cite{global_data_index}
 \abx@aux@segm{0}{0}{global_data_index}
 \abx@aux@cite{millions_lost}
 \abx@aux@segm{0}{0}{millions_lost}
 \abx@aux@cite{forgot_my_pin}
 \abx@aux@segm{0}{0}{forgot_my_pin}
+\BKM@entry{id=74,dest={73756273656374696F6E2E382E34},srcline={25},srcfile={2E2F627573696E6573735F6D6F64656C2E746578}}{5C3337365C3337375C303030425C303030755C303030735C303030695C3030306E5C303030655C303030735C303030735C3030305C3034305C3030306D5C3030306F5C303030645C303030655C3030306C5C3030305C3034305C303030635C303030615C3030306E5C303030765C303030615C30303073}
+\BKM@entry{id=75,dest={73756273756273656374696F6E2E382E342E31},srcline={27},srcfile={2E2F627573696E6573735F6D6F64656C2E746578}}{5C3337365C3337375C3030304B5C303030655C303030795C3030305C3034305C303030705C303030615C303030725C303030745C3030306E5C303030655C303030725C30303073}
+\BKM@entry{id=76,dest={73756273756273656374696F6E2E382E342E32},srcline={32},srcfile={2E2F627573696E6573735F6D6F64656C2E746578}}{5C3337365C3337375C3030304B5C303030655C303030795C3030305C3034305C303030615C303030635C303030745C303030695C303030765C303030695C303030745C303030695C303030655C30303073}
+\BKM@entry{id=77,dest={73756273756273656374696F6E2E382E342E33},srcline={34},srcfile={2E2F627573696E6573735F6D6F64656C2E746578}}{5C3337365C3337375C3030304B5C303030655C303030795C3030305C3034305C303030725C303030655C303030735C3030306F5C303030755C303030725C303030635C303030655C30303073}
+\BKM@entry{id=78,dest={73756273756273656374696F6E2E382E342E34},srcline={38},srcfile={2E2F627573696E6573735F6D6F64656C2E746578}}{5C3337365C3337375C303030565C303030615C3030306C5C303030755C303030655C3030305C3034305C303030505C303030725C3030306F5C303030705C3030306F5C303030735C303030695C303030745C303030695C3030306F5C3030306E5C30303073}
+\BKM@entry{id=79,dest={73756273756273656374696F6E2E382E342E35},srcline={40},srcfile={2E2F627573696E6573735F6D6F64656C2E746578}}{5C3337365C3337375C303030435C303030755C303030735C303030745C3030306F5C3030306D5C303030655C303030725C3030305C3034305C303030725C303030655C3030306C5C303030615C303030745C303030695C3030306F5C3030306E5C303030735C303030685C303030695C303030705C30303073}
+\BKM@entry{id=80,dest={73756273756273656374696F6E2E382E342E36},srcline={42},srcfile={2E2F627573696E6573735F6D6F64656C2E746578}}{5C3337365C3337375C303030435C303030755C303030735C303030745C3030306F5C3030306D5C303030655C303030725C3030305C3034305C303030735C303030655C303030675C3030306D5C303030655C3030306E5C303030745C30303073}
+\BKM@entry{id=81,dest={73756273756273656374696F6E2E382E342E37},srcline={46},srcfile={2E2F627573696E6573735F6D6F64656C2E746578}}{5C3337365C3337375C303030435C3030306F5C303030735C303030745C3030305C3034305C303030735C303030745C303030725C303030755C303030635C303030745C303030755C303030725C30303065}
+\BKM@entry{id=82,dest={73756273756273656374696F6E2E382E342E38},srcline={49},srcfile={2E2F627573696E6573735F6D6F64656C2E746578}}{5C3337365C3337375C303030525C303030655C303030765C303030655C3030306E5C303030755C303030655C3030305C3034305C303030735C303030745C303030725C303030655C303030615C3030306D5C30303073}
+\BKM@entry{id=83,dest={73756273656374696F6E2E382E35},srcline={53},srcfile={2E2F627573696E6573735F6D6F64656C2E746578}}{5C3337365C3337375C303030505C303030725C3030306F5C3030306A5C303030655C303030635C303030745C3030305C3034305C303030705C3030306C5C303030615C3030306E}
 \@input{conclusion.aux}
-\global\@namedef{scr@dte@section@lastmaxnumwidth}{16.42491pt}
-\global\@namedef{scr@dte@subsection@lastmaxnumwidth}{23.84904pt}
-\global\@namedef{scr@dte@subsubsection@lastmaxnumwidth}{26.89314pt}
+\BKM@entry{id=84,dest={73656374696F6E2E39},srcline={1},srcfile={2E2F636F6E636C7573696F6E2E746578}}{5C3337365C3337375C303030435C3030306F5C3030306E5C303030635C3030306C5C303030755C303030735C303030695C3030306F5C3030306E5C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C3030306F5C303030755C303030745C3030306C5C3030306F5C3030306F5C3030306B}
+\BKM@entry{id=85,dest={73656374696F6E2A2E3130},srcline={71},srcfile={2E2F7468657369732E746578}}{5C3337365C3337375C303030525C303030655C303030665C303030655C303030725C303030655C3030306E5C303030635C303030655C30303073}
+\@writefile{toc}{\defcounter {refsection}{0}\relax 
}\@writefile{toc}{\contentsline {section}{\nonumberline 
References}{50}{section*.10}\protected@file@percent }
+\abx@aux@refcontextdefaultsdone
+\abx@aux@defaultrefcontext{0}{vadhan2012}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{nielsen2002}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{GGM1986}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{Preneel1999}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{SG2012}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{RK2011}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{GJW2011}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{BCK1996}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{krawczyk2010}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{trimberger2012}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{madurawe2006}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{BDK2016}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{stamp2003}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{shamir_sharing}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{pedersen_sharing_0}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{feldman_sharing}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{pedersen_sharing_5.2}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{midata}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{multifactor_authentication}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{authentication_methods_review}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{just2004}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{MBSS2013}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{rieck_detection}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{pohlmann2017}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{biometric_auth}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{ccc_merkel}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{gnu_taler}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{postgresql}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{libcurl}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{libmicrohttpd}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{global_data_index}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{millions_lost}{none/global//global/global}
+\abx@aux@defaultrefcontext{0}{forgot_my_pin}{none/global//global/global}
diff --git a/doc/thesis/thesis.bcf b/doc/thesis/thesis.bcf
index 766f197..af123cd 100644
--- a/doc/thesis/thesis.bcf
+++ b/doc/thesis/thesis.bcf
@@ -2183,47 +2183,55 @@
     <bcf:datasource type="file" 
datatype="bibtex">bibliothek.bib</bcf:datasource>
   </bcf:bibdata>
   <bcf:section number="0">
-    <bcf:citekey order="1">Preneel1999</bcf:citekey>
-    <bcf:citekey order="2">SG2012</bcf:citekey>
-    <bcf:citekey order="3">SG2012</bcf:citekey>
-    <bcf:citekey order="4">SG2012</bcf:citekey>
-    <bcf:citekey order="5">BCK1996</bcf:citekey>
-    <bcf:citekey order="6">krawczyk2010</bcf:citekey>
-    <bcf:citekey order="7">trimberger2012</bcf:citekey>
-    <bcf:citekey order="8">madurawe2006</bcf:citekey>
-    <bcf:citekey order="9">BDK2016</bcf:citekey>
-    <bcf:citekey order="10">stamp2003</bcf:citekey>
-    <bcf:citekey order="11">BDK2016</bcf:citekey>
-    <bcf:citekey order="12">BDK2016</bcf:citekey>
-    <bcf:citekey order="13">shamir_sharing</bcf:citekey>
-    <bcf:citekey order="14">pedersen_sharing_0</bcf:citekey>
-    <bcf:citekey order="15">feldman_sharing</bcf:citekey>
-    <bcf:citekey order="16">pedersen_sharing_5.2</bcf:citekey>
-    <bcf:citekey order="17">midata</bcf:citekey>
-    <bcf:citekey order="18">midata</bcf:citekey>
-    <bcf:citekey order="19">authentication_methods_review</bcf:citekey>
-    <bcf:citekey order="20">rieck_detection</bcf:citekey>
-    <bcf:citekey order="21">biometric_auth</bcf:citekey>
-    <bcf:citekey order="22">ccc_merkel</bcf:citekey>
-    <bcf:citekey order="23">multifactor_authentication</bcf:citekey>
-    <bcf:citekey order="24">global_data_index</bcf:citekey>
-    <bcf:citekey order="25">millions_lost</bcf:citekey>
-    <bcf:citekey order="26">forgot_my_pin</bcf:citekey>
-  </bcf:section>
-  <!-- SORTING TEMPLATES -->
-  <bcf:sortingtemplate name="none">
-    <bcf:sort order="1">
-      <bcf:sortitem order="1">citeorder</bcf:sortitem>
-    </bcf:sort>
-  </bcf:sortingtemplate>
-  <!-- DATALISTS -->
-  <bcf:datalist section="0"
-                name="none/global//global/global"
-                type="entry"
-                sortingtemplatename="none"
-                sortingnamekeytemplatename="global"
-                labelprefix=""
-                uniquenametemplatename="global"
-                labelalphanametemplatename="global">
-  </bcf:datalist>
-</bcf:controlfile>
+    <bcf:citekey order="1">garfinkel1995</bcf:citekey>
+    <bcf:citekey order="2">pepdoc</bcf:citekey>
+    <bcf:citekey order="3">LLLW*2017</bcf:citekey>
+    <bcf:citekey order="4">millions_lost</bcf:citekey>
+    <bcf:citekey order="5">bitcoin-keys</bcf:citekey>
+    <bcf:citekey order="6">bitcoin-keys</bcf:citekey>
+    <bcf:citekey order="7">bitlocker</bcf:citekey>
+    <bcf:citekey order="8">bajikar2002</bcf:citekey>
+    <bcf:citekey order="9">vadhan2012</bcf:citekey>
+    <bcf:citekey order="10">vadhan2012</bcf:citekey>
+    <bcf:citekey order="11">nielsen2002</bcf:citekey>
+    <bcf:citekey order="12">GGM1986</bcf:citekey>
+    <bcf:citekey order="13">Preneel1999</bcf:citekey>
+    <bcf:citekey order="14">SG2012</bcf:citekey>
+    <bcf:citekey order="15">SG2012</bcf:citekey>
+    <bcf:citekey order="16">SG2012</bcf:citekey>
+    <bcf:citekey order="17">RK2011</bcf:citekey>
+    <bcf:citekey order="18">GJW2011</bcf:citekey>
+    <bcf:citekey order="19">BCK1996</bcf:citekey>
+    <bcf:citekey order="20">krawczyk2010</bcf:citekey>
+    <bcf:citekey order="21">trimberger2012</bcf:citekey>
+    <bcf:citekey order="22">madurawe2006</bcf:citekey>
+    <bcf:citekey order="23">BDK2016</bcf:citekey>
+    <bcf:citekey order="24">stamp2003</bcf:citekey>
+    <bcf:citekey order="25">BDK2016</bcf:citekey>
+    <bcf:citekey order="26">BDK2016</bcf:citekey>
+    <bcf:citekey order="27">shamir_sharing</bcf:citekey>
+    <bcf:citekey order="28">pedersen_sharing_0</bcf:citekey>
+    <bcf:citekey order="29">feldman_sharing</bcf:citekey>
+    <bcf:citekey order="30">pedersen_sharing_5.2</bcf:citekey>
+    <bcf:citekey order="31">coinbase</bcf:citekey>
+    <bcf:citekey order="32">midata</bcf:citekey>
+    <bcf:citekey order="33">midata</bcf:citekey>
+    <bcf:citekey order="34">midata</bcf:citekey>
+    <bcf:citekey order="35">multifactor_authentication</bcf:citekey>
+    <bcf:citekey order="36">authentication_methods_review</bcf:citekey>
+    <bcf:citekey order="37">just2004</bcf:citekey>
+    <bcf:citekey order="38">just2004</bcf:citekey>
+    <bcf:citekey order="39">MBSS2013</bcf:citekey>
+    <bcf:citekey order="40">rieck_detection</bcf:citekey>
+    <bcf:citekey order="41">emailauthowasp</bcf:citekey>
+    <bcf:citekey order="42">pohlmann2017</bcf:citekey>
+    <bcf:citekey order="43">biometric_auth</bcf:citekey>
+    <bcf:citekey order="44">ccc_merkel</bcf:citekey>
+    <bcf:citekey order="45">gnu_taler</bcf:citekey>
+    <bcf:citekey order="46">gnu_taler</bcf:citekey>
+    <bcf:citekey order="47">postgresql</bcf:citekey>
+    <bcf:citekey order="48">libcurl</bcf:citekey>
+    <bcf:citekey order="49">libmicrohttpd</bcf:citekey>
+    <bcf:citekey order="50">global_data_index</bcf:citekey>
+    <bcf:citekey order="51">millions_lost</bcf:citekey>
+    <bcf:citekey order="52">forgot_my_pin</bcf:citekey>
diff --git a/doc/thesis/thesis.lof b/doc/thesis/thesis.lof
index 981edd3..e69de29 100644
--- a/doc/thesis/thesis.lof
+++ b/doc/thesis/thesis.lof
@@ -1,15 +0,0 @@
-\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse 
{pagetracker}\boolfalse {backtracker}\relax 
-\defcounter {refsection}{0}\relax 
-\selectlanguage *{english}
-\defcounter {refsection}{0}\relax 
-\contentsline {figure}{\numberline {1}{\ignorespaces System design 
overview}}{15}{figure.1}% 
-\defcounter {refsection}{0}\relax 
-\contentsline {figure}{\numberline {2}{\ignorespaces Anastasis 
database}}{17}{figure.2}% 
-\defcounter {refsection}{0}\relax 
-\contentsline {figure}{\numberline {3}{\ignorespaces Secret split 
process}}{24}{figure.3}% 
-\defcounter {refsection}{0}\relax 
-\contentsline {figure}{\numberline {4}{\ignorespaces Secret split 
process}}{25}{figure.4}% 
-\defcounter {refsection}{0}\relax 
-\contentsline {figure}{\numberline {5}{\ignorespaces Secret recovery 
process}}{26}{figure.5}% 
-\defcounter {refsection}{0}\relax 
-\contentsline {figure}{\numberline {6}{\ignorespaces Business project 
plan}}{37}{figure.6}% 
diff --git a/doc/thesis/thesis.log b/doc/thesis/thesis.log
index f37c34e..63e1798 100644
--- a/doc/thesis/thesis.log
+++ b/doc/thesis/thesis.log
@@ -1,4 +1,4 @@
-This is LuaTeX, Version 1.10.0 (TeX Live 2019/Debian)  (format=lualatex 
2020.5.7)  1 JUN 2020 09:57
+This is LuaTeX, Version 1.10.0 (TeX Live 2019/Debian)  (format=lualatex 
2020.5.7)  6 JUN 2020 21:41
  restricted system commands enabled.
 **thesis.tex
 (./thesis.tex
@@ -991,6 +991,105 @@ Package: abstract 2009/06/08 v1.2a configurable abstracts
 \absparindent=\skip94
 \absparsep=\skip95
 )
+(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
+Package: hyperref 2020/01/14 v7.00d Hypertext links for LaTeX
+
+(/usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
+Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
+)
+(/usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty
+Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
+)
+(/usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty
+Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
+)
+(/usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
+Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
+)
+(/usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty
+Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
+)
+\@linkdim=\dimen149
+\Hy@linkcounter=\count401
+\Hy@pagecounter=\count402
+
+(/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def
+File: pd1enc.def 2020/01/14 v7.00d Hyperref: PDFDocEncoding definition (HO)
+)
+(/usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty
+Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
+)
+(/usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty
+Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
+)
+\Hy@SavedSpaceFactor=\count403
+Package hyperref Info: Hyper figures OFF on input line 4547.
+Package hyperref Info: Link nesting OFF on input line 4552.
+Package hyperref Info: Hyper index ON on input line 4555.
+Package hyperref Info: Plain pages OFF on input line 4562.
+Package hyperref Info: Backreferencing OFF on input line 4567.
+Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
+Package hyperref Info: Bookmarks ON on input line 4800.
+\c@Hy@tempcnt=\count404
+LaTeX Info: Redefining \url on input line 5159.
+\XeTeXLinkMargin=\dimen150
+
+(/usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty
+Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
+
+(/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
+Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers 
(HO)
+
+))
+\Fld@menulength=\count405
+\Field@Width=\dimen151
+\Fld@charsize=\dimen152
+Package hyperref Info: Hyper figures OFF on input line 6430.
+Package hyperref Info: Link nesting OFF on input line 6435.
+Package hyperref Info: Hyper index ON on input line 6438.
+Package hyperref Info: backreferencing OFF on input line 6445.
+Package hyperref Info: Link coloring OFF on input line 6450.
+Package hyperref Info: Link coloring with OCG OFF on input line 6455.
+Package hyperref Info: PDF/A mode OFF on input line 6460.
+LaTeX Info: Redefining \ref on input line 6500.
+LaTeX Info: Redefining \pageref on input line 6504.
+
+(/usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty
+Package: atbegshi 2019/12/05 v1.19 At begin shipout hook (HO)
+)
+\Hy@abspage=\count406
+\c@Item=\count407
+\c@Hfootnote=\count408
+)
+Package hyperref Info: Driver (autodetected): hluatex.
+
+(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hluatex.def
+File: hluatex.def 2020/01/14 v7.00d Hyperref driver for luaTeX
+
+(/usr/share/texlive/texmf-dist/tex/latex/hyperref/puenc.def
+File: puenc.def 2020/01/14 v7.00d Hyperref: PDF Unicode definition (HO)
+)
+(/usr/share/texlive/texmf-dist/tex/generic/stringenc/stringenc.sty
+Package: stringenc 2019/11/29 v1.12 Convert strings between diff. encodings 
(HO)
+
+)
+(/usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty
+Package: atveryend 2019-12-11 v1.11 Hooks at the very end of document (HO)
+)
+\Fld@listcount=\count409
+\c@bookmark@seq@number=\count410
+
+(/usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
+Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO)
+
+(/usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
+Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
+)
+Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 
28
+6.
+)
+\Hy@SectionHShift=\skip96
+)
 (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
 Package: graphicx 2019/11/30 v1.2a Enhanced LaTeX Graphics (DPC,SPQR)
 
@@ -1005,27 +1104,27 @@ File: graphics.cfg 2016/06/04 v1.11 sample graphics 
configuration
 )
 Package graphics Info: Driver file: luatex.def on input line 105.
 )
-\Gin@req@height=\dimen149
-\Gin@req@width=\dimen150
+\Gin@req@height=\dimen153
+\Gin@req@width=\dimen154
 )
 (/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty
-\lst@mode=\count401
+\lst@mode=\count411
 \lst@gtempboxa=\box54
 \lst@token=\toks28
-\lst@length=\count402
-\lst@currlwidth=\dimen151
-\lst@column=\count403
-\lst@pos=\count404
-\lst@lostspace=\dimen152
-\lst@width=\dimen153
-\lst@newlines=\count405
-\lst@lineno=\count406
-\lst@maxwidth=\dimen154
+\lst@length=\count412
+\lst@currlwidth=\dimen155
+\lst@column=\count413
+\lst@pos=\count414
+\lst@lostspace=\dimen156
+\lst@width=\dimen157
+\lst@newlines=\count415
+\lst@lineno=\count416
+\lst@maxwidth=\dimen158
 
 (/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty
 File: lstmisc.sty 2019/09/10 1.8c (Carsten Heinz)
-\c@lstnumber=\count407
-\lst@skipnumbers=\count408
+\c@lstnumber=\count417
+\lst@skipnumbers=\count418
 \lst@framebox=\box55
 )
 (/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg
@@ -1043,78 +1142,88 @@ File: lstmisc.sty 2019/09/10 1.8c (Carsten Heinz)
 Package biblatex Warning: 'babel/polyglossia' detected but 'csquotes' missing.
 (biblatex)                Loading 'csquotes' recommended.
 
-\@quotelevel=\count409
-\@quotereset=\count410
+\@quotelevel=\count419
+\@quotereset=\count420
 (./thesis.aux
-LaTeX Info: Redefining \rmfamily on input line 7.
-LaTeX Info: Redefining \sffamily on input line 7.
-LaTeX Info: Redefining \ttfamily on input line 7.
- (./abstract.aux) (./motivation.aux) (./project_management.aux)
-(./related_work.aux) (./design.aux) (./server_architecture.aux)
-(./client_architecture.aux) (./implementation.aux) (./business_model.aux)
-(./conclusion.aux))
+LaTeX Info: Redefining \rmfamily on input line 25.
+LaTeX Info: Redefining \sffamily on input line 25.
+LaTeX Info: Redefining \ttfamily on input line 25.
+ (./acknowledgments.aux) (./abstract.aux) (./glossary.aux)
+(./introduction.aux) (./project_management.aux) (./related_work.aux)
+(./design.aux) (./server_architecture.aux) (./client_architecture.aux)
+(./implementation.aux
+
+LaTeX Warning: Label `fig:secret_split' multiply defined.
+
+) (./business_model.aux) (./conclusion.aux))
 \openout1 = thesis.aux
 
-LaTeX Font Info:    Checking defaults for OML/jkp/m/it on input line 32.
-LaTeX Font Info:    Trying to load font information for OML+jkp on input line 
32
+LaTeX Font Info:    Checking defaults for OML/jkp/m/it on input line 33.
+LaTeX Font Info:    Trying to load font information for OML+jkp on input line 
33
 .
- (/usr/share/texlive/texmf-dist/tex/latex/kpfonts/omljkp.fd
+
+(/usr/share/texlive/texmf-dist/tex/latex/kpfonts/omljkp.fd
 File: omljkp.fd 2006/08/15 v1.0
 )
-LaTeX Font Info:    ... okay on input line 32.
-LaTeX Font Info:    Checking defaults for OMS/jkp/m/n on input line 32.
-LaTeX Font Info:    Trying to load font information for OMS+jkp on input line 
32
+LaTeX Font Info:    ... okay on input line 33.
+LaTeX Font Info:    Checking defaults for OMS/jkp/m/n on input line 33.
+LaTeX Font Info:    Trying to load font information for OMS+jkp on input line 
33
 .
+
 (/usr/share/texlive/texmf-dist/tex/latex/kpfonts/omsjkp.fd
 File: omsjkp.fd 2006/08/15 v1.0
 )
-LaTeX Font Info:    ... okay on input line 32.
-LaTeX Font Info:    Checking defaults for OT1/cmr/m/n on input line 32.
-LaTeX Font Info:    ... okay on input line 32.
-LaTeX Font Info:    Checking defaults for T1/cmr/m/n on input line 32.
-LaTeX Font Info:    ... okay on input line 32.
-LaTeX Font Info:    Checking defaults for TS1/cmr/m/n on input line 32.
-LaTeX Font Info:    Trying to load font information for TS1+cmr on input line 
32
+LaTeX Font Info:    ... okay on input line 33.
+LaTeX Font Info:    Checking defaults for OT1/cmr/m/n on input line 33.
+LaTeX Font Info:    ... okay on input line 33.
+LaTeX Font Info:    Checking defaults for T1/cmr/m/n on input line 33.
+LaTeX Font Info:    ... okay on input line 33.
+LaTeX Font Info:    Checking defaults for TS1/cmr/m/n on input line 33.
+LaTeX Font Info:    Trying to load font information for TS1+cmr on input line 
33
 .
 
 (/usr/share/texlive/texmf-dist/tex/latex/base/ts1cmr.fd
 File: ts1cmr.fd 2019/12/16 v2.5j Standard LaTeX font definitions
 )
-LaTeX Font Info:    ... okay on input line 32.
-LaTeX Font Info:    Checking defaults for TU/lmr/m/n on input line 32.
-LaTeX Font Info:    ... okay on input line 32.
-LaTeX Font Info:    Checking defaults for OMX/jkp/m/n on input line 32.
-LaTeX Font Info:    Trying to load font information for OMX+jkp on input line 
32
+LaTeX Font Info:    ... okay on input line 33.
+LaTeX Font Info:    Checking defaults for TU/lmr/m/n on input line 33.
+LaTeX Font Info:    ... okay on input line 33.
+LaTeX Font Info:    Checking defaults for OMX/jkp/m/n on input line 33.
+LaTeX Font Info:    Trying to load font information for OMX+jkp on input line 
33
 .
 
 (/usr/share/texlive/texmf-dist/tex/latex/kpfonts/omxjkp.fd
 File: omxjkp.fd 2006/08/15 v1.0
 )
-LaTeX Font Info:    ... okay on input line 32.
-LaTeX Font Info:    Checking defaults for U/jkpexa/m/n on input line 32.
+LaTeX Font Info:    ... okay on input line 33.
+LaTeX Font Info:    Checking defaults for U/jkpexa/m/n on input line 33.
 LaTeX Font Info:    Trying to load font information for U+jkpexa on input line 
3
-2.
+3.
 
 (/usr/share/texlive/texmf-dist/tex/latex/kpfonts/ujkpexa.fd
 File: ujkpexa.fd 2006/08/15 v1.0
 )
-LaTeX Font Info:    ... okay on input line 32.
-Package scrbase Info: activating english \contentsname on input line 32.
-Package scrbase Info: activating english \listfigurename on input line 32.
-Package scrbase Info: activating english \listtablename on input line 32.
+LaTeX Font Info:    ... okay on input line 33.
+LaTeX Font Info:    Checking defaults for PD1/pdf/m/n on input line 33.
+LaTeX Font Info:    ... okay on input line 33.
+LaTeX Font Info:    Checking defaults for PU/pdf/m/n on input line 33.
+LaTeX Font Info:    ... okay on input line 33.
+Package scrbase Info: activating english \contentsname on input line 33.
+Package scrbase Info: activating english \listfigurename on input line 33.
+Package scrbase Info: activating english \listtablename on input line 33.
 
 (/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
 [Loading MPS to PDF converter (version 2006.09.02).]
-\scratchcounter=\count411
-\scratchdimen=\dimen155
+\scratchcounter=\count421
+\scratchdimen=\dimen159
 \scratchbox=\box56
-\nofMPsegments=\count412
-\nofMParguments=\count413
+\nofMPsegments=\count422
+\nofMParguments=\count423
 \everyMPshowfont=\toks29
-\MPscratchCnt=\count414
-\MPscratchDim=\dimen156
-\MPnumerator=\count415
-\makeMPintoPDFobject=\count416
+\MPscratchCnt=\count424
+\MPscratchDim=\dimen160
+\MPnumerator=\count425
+\makeMPintoPDFobject=\count426
 \everyMPtoPDFconversion=\toks30
 ) (/usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
 Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
@@ -1149,181 +1258,225 @@ Package biblatex Info: Automatic encoding selection.
 
 \openout3 = thesis.bcf
 Package biblatex Info: Trying to load bibliographic data...
-Package biblatex Info: ... file 'thesis.bbl' not found.
-
-No file thesis.bbl.
-Package biblatex Info: Reference section=0 on input line 32.
-Package biblatex Info: Reference segment=0 on input line 32.
-\c@lstlisting=\count417
-LaTeX Info: Redefining \rmfamily on input line 32.
-LaTeX Info: Redefining \sffamily on input line 32.
-LaTeX Info: Redefining \ttfamily on input line 32.
-LaTeX Font Info:    Trying to load font information for OT1+jkp on input line 
38
+Package biblatex Info: ... file 'thesis.bbl' found.
+
+(./thesis.bbl)
+Package biblatex Info: Reference section=0 on input line 33.
+Package biblatex Info: Reference segment=0 on input line 33.
+\AtBeginShipoutBox=\box57
+Package hyperref Info: Link coloring OFF on input line 33.
+ (/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
+Package: nameref 2019/09/16 v2.46 Cross-referencing by name of section
+
+(/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty
+Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
+)
+(/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
+Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
+)
+\c@section@level=\count427
+)
+LaTeX Info: Redefining \ref on input line 33.
+LaTeX Info: Redefining \pageref on input line 33.
+LaTeX Info: Redefining \nameref on input line 33.
+
+(./thesis.out) (./thesis.out)
+\@outlinefile=\write4
+
+\openout4 = thesis.out
+Class scrartcl Info: loading recommended package `bookmark'.
+(scrartcl)           Using `bookmark' together with `hyperref' is recommended,
+(scrartcl)           because of handling of possible bookmark level gaps.
+(scrartcl)           You can avoid loading `bookmark' with KOMA-Script option
+(scrartcl)           `bookmarkpackage=false' before \begin{document} and
+(scrartcl)           you can avoid this message adding:
+(scrartcl)             \usepackage{bookmark}
+(scrartcl)           before \begin{document} on input line 33.
+
+(/usr/share/texlive/texmf-dist/tex/latex/bookmark/bookmark.sty
+Package: bookmark 2019/12/03 v1.28 PDF bookmarks (HO)
+
+(/usr/share/texlive/texmf-dist/tex/latex/bookmark/bkm-pdftex.def
+File: bkm-pdftex.def 2019/12/03 v1.28 bookmark driver for pdfTeX (HO)
+Package auxhook Info: \AddLineBeginMainAux comes a little late,
+(auxhook)             because the main .aux file is already opened on input 
line
+ 168.
+\BKM@id=\count428
+))
+\c@lstlisting=\count429
+LaTeX Info: Redefining \rmfamily on input line 33.
+LaTeX Info: Redefining \sffamily on input line 33.
+LaTeX Info: Redefining \ttfamily on input line 33.
+LaTeX Font Info:    Trying to load font information for OT1+jkp on input line 
42
 .
+
 (/usr/share/texlive/texmf-dist/tex/latex/kpfonts/ot1jkp.fd
 File: ot1jkp.fd 2007/08/30 Fontinst v1.928 font definitions for OT1/jkp.
 )
-LaTeX Font Info:    Trying to load font information for U+jkpmia on input line 
3
-8.
+LaTeX Font Info:    Trying to load font information for U+jkpmia on input line 
4
+2.
 
 (/usr/share/texlive/texmf-dist/tex/latex/kpfonts/ujkpmia.fd
 File: ujkpmia.fd 2006/08/15 v1.0
 )
-LaTeX Font Info:    Trying to load font information for U+jkpsya on input line 
3
-8.
+LaTeX Font Info:    Trying to load font information for U+jkpsya on input line 
4
+2.
 
 (/usr/share/texlive/texmf-dist/tex/latex/kpfonts/ujkpsya.fd
 File: ujkpsya.fd 2006/08/15 v1.0
 )
-LaTeX Font Info:    Trying to load font information for U+jkpsyb on input line 
3
-8.
+LaTeX Font Info:    Trying to load font information for U+jkpsyb on input line 
4
+2.
 
 (/usr/share/texlive/texmf-dist/tex/latex/kpfonts/ujkpsyb.fd
 File: ujkpsyb.fd 2006/08/15 v1.0
 )
-LaTeX Font Info:    Trying to load font information for U+jkpsyc on input line 
3
-8.
+LaTeX Font Info:    Trying to load font information for U+jkpsyc on input line 
4
+2.
 
 (/usr/share/texlive/texmf-dist/tex/latex/kpfonts/ujkpsyc.fd
 File: ujkpsyc.fd 2006/08/15 v1.0
 ) [1
 
 
+
 {/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}]
-\openout2 = abstract.aux
- (./abstract.tex
-Underfull \hbox (badness 10000) in paragraph at lines 2--3
+\openout2 = acknowledgments.aux
+ (./acknowledgments.tex) [1
 
- []
 
+]
+\openout2 = abstract.aux
 
-Underfull \hbox (badness 10000) in paragraph at lines 4--6
+(./abstract.tex
+Underfull \hbox (badness 10000) in paragraph at lines 4--5
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 7--11
+Underfull \hbox (badness 10000) in paragraph at lines 6--8
 
  []
 
-) [2
 
-] (./thesis.toc
-LaTeX Info: Redefining \rmfamily on input line 3.
-LaTeX Info: Redefining \sffamily on input line 3.
-LaTeX Info: Redefining \ttfamily on input line 3.
- [3
+Underfull \hbox (badness 10000) in paragraph at lines 9--12
 
-])
-\tf@toc=\write4
+ []
 
-\openout4 = thesis.toc
- [4]
-\openout2 = motivation.aux
- (./motivation.tex) [5
+) [2
 
 
-]
-\openout2 = project_management.aux
- (./project_management.tex)
-[6
+] (./thesis.toc)
+\tf@toc=\write5
 
+\openout5 = thesis.toc
+ [3
 
 ]
-\openout2 = related_work.aux
- (./related_work.tex
-
-LaTeX Warning: Citation 'Preneel1999' on page 7 undefined on input line 6.
-
-
-LaTeX Warning: Citation 'SG2012' on page 7 undefined on input line 12.
+\openout2 = glossary.aux
 
+No file glossary.tex.
 
-LaTeX Warning: Citation 'SG2012' on page 7 undefined on input line 13.
-
-
-LaTeX Warning: Citation 'SG2012' on page 7 undefined on input line 14.
-
-
-Underfull \hbox (badness 10000) in paragraph at lines 12--16
+\openout2 = introduction.aux
+(./introduction.tex
+Underfull \hbox (badness 10000) in paragraph at lines 2--5
 
  []
 
-
-LaTeX Warning: Citation 'BCK1996' on page 7 undefined on input line 22.
-
-[7
-
-
-]
-
-LaTeX Warning: Citation 'krawczyk2010' on page 8 undefined on input line 27.
+<images/system-architecture_2.png, id=30, 1180.41pt x 633.36626pt>
+File: images/system-architecture_2.png Graphic file (type png)
+<use images/system-architecture_2.png>
+Package luatex.def Info: images/system-architecture_2.png  used on input line 
21
+.
+(luatex.def)             Requested size: 389.53651pt x 209.0115pt.
+[1
 
 
-LaTeX Warning: Citation 'trimberger2012' on page 8 undefined on input line 31.
 
 
-LaTeX Warning: Citation 'madurawe2006' on page 8 undefined on input line 31.
 
+]
+<images/user_id.png, id=47, 1331.97626pt x 465.74pt>
+File: images/user_id.png Graphic file (type png)
+<use images/user_id.png>
+Package luatex.def Info: images/user_id.png  used on input line 30.
+(luatex.def)             Requested size: 399.59596pt x 139.72307pt.
 
-LaTeX Warning: Citation 'BDK2016' on page 8 undefined on input line 31.
 
+LaTeX Warning: Citation 'garfinkel1995' on page 2 undefined on input line 40.
 
-LaTeX Warning: Citation 'stamp2003' on page 8 undefined on input line 32.
+[2<./images/system-architecture_2.png><./images/user_id.png>]
 
+LaTeX Warning: Citation 'pepdoc' on page 3 undefined on input line 43.
 
-LaTeX Warning: Citation 'BDK2016' on page 8 undefined on input line 32.
 
+Underfull \hbox (badness 10000) in paragraph at lines 43--44
 
-LaTeX Warning: Citation 'BDK2016' on page 8 undefined on input line 32.
+ []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 31--33
+LaTeX Warning: Citation 'LLLW*2017' on page 3 undefined on input line 47.
 
- []
+<images/bitcoin-keys.png, id=57, 107.86568pt x 66.47221pt>
+File: images/bitcoin-keys.png Graphic file (type png)
+<use images/bitcoin-keys.png>
+Package luatex.def Info: images/bitcoin-keys.png  used on input line 50.
+(luatex.def)             Requested size: 377.52885pt x 232.65216pt.
 
+LaTeX Warning: Citation 'bitcoin-keys' on page 3 undefined on input line 51.
 
-LaTeX Warning: Citation 'shamir_sharing' on page 8 undefined on input line 42.
 
-[8]
+LaTeX Warning: Citation 'bitcoin-keys' on page 3 undefined on input line 51.
 
-LaTeX Warning: Citation 'pedersen_sharing_0' on page 9 undefined on input line 
4
-6.
+[3]
 
+LaTeX Warning: Citation 'bitlocker' on page 4 undefined on input line 63.
 
-LaTeX Warning: Citation 'feldman_sharing' on page 9 undefined on input line 46.
 
+LaTeX Warning: Citation 'bajikar2002' on page 4 undefined on input line 63.
 
-LaTeX Warning: Citation 'pedersen_sharing_5.2' on page 9 undefined on input 
line
- 50.
-
+) [4<./images/bitcoin-keys.png>] [5]
+\openout2 = project_management.aux
+ (./project_management.tex
+<images/project_plan_anastasis.png, id=88, 843.15pt x 596.2275pt>
+File: images/project_plan_anastasis.png Graphic file (type png)
+<use images/project_plan_anastasis.png>
+Package luatex.def Info: images/project_plan_anastasis.png  used on input line 
7
+.
+(luatex.def)             Requested size: 421.57396pt x 298.11302pt.
 
-LaTeX Warning: Citation 'midata' on page 9 undefined on input line 55.
+Overfull \hbox (3.3184pt too wide) in paragraph at lines 7--8
+[][] 
+ []
 
+) [6
 
-LaTeX Warning: Citation 'midata' on page 9 undefined on input line 55.
 
-[9]
+<./images/project_plan_anastasis.png>] [7]
+\openout2 = related_work.aux
+ (./related_work.tex
+Underfull \hbox (badness 10000) in paragraph at lines 6--7
 
-LaTeX Warning: Citation 'authentication_methods_review' on page 10 undefined 
on 
-input line 70.
+ []
 
+[8
 
-LaTeX Warning: Citation 'rieck_detection' on page 10 undefined on input line 
73.
 
+]
+Underfull \hbox (badness 10000) in paragraph at lines 39--41
 
+ []
 
-LaTeX Warning: Citation 'biometric_auth' on page 10 undefined on input line 77.
+[9] [10]
 
+LaTeX Warning: Citation 'coinbase' on page 11 undefined on input line 70.
 
-LaTeX Warning: Citation 'ccc_merkel' on page 10 undefined on input line 77.
+[11] [12] [13]
 
-[10]
+LaTeX Warning: Citation 'emailauthowasp' on page 14 undefined on input line 
111.
 
-LaTeX Warning: Citation 'multifactor_authentication' on page 11 undefined on 
inp
-ut line 80.
 
-) [11]
+[14]) [15]
 \openout2 = design.aux
  (./design.tex
 Underfull \hbox (badness 10000) in paragraph at lines 2--9
@@ -1340,354 +1493,424 @@ Underfull \hbox (badness 10000) in paragraph at lines 
2--9
 
  []
 
-<images/system_design.png, id=45, 532.99126pt x 804.00375pt>
+<images/system_design.png, id=235, 793.96625pt x 783.92876pt>
 File: images/system_design.png Graphic file (type png)
 <use images/system_design.png>
 Package luatex.def Info: images/system_design.png  used on input line 14.
-(luatex.def)             Requested size: 213.19272pt x 321.59581pt.
-[12
+(luatex.def)             Requested size: 317.58087pt x 313.56595pt.
+[16
 
 
-] [13<./images/system_design.png>]) [14]
+] [17<./images/system_design.png>]) [18]
 \openout2 = server_architecture.aux
  (./server_architecture.tex
-<images/anastasis-db.png, id=56, 783.92876pt x 490.83376pt>
+<images/anastasis-db.png, id=259, 783.92876pt x 490.83376pt>
 File: images/anastasis-db.png Graphic file (type png)
 <use images/anastasis-db.png>
 Package luatex.def Info: images/anastasis-db.png  used on input line 7.
 (luatex.def)             Requested size: 391.96342pt x 245.41628pt.
- [15
+ [19
 
 
-<./images/anastasis-db.png>]) [16]
+<./images/anastasis-db.png>]
+Overfull \hbox (28.93027pt too wide) in paragraph at lines 30--33
+\TU/lmr/m/n/10.95 The user first must send a re-quest to server that he wants t
+o au-then-ti-cate(GET /truth/$UUID).
+ []
+
+[20]) [21]
 \openout2 = client_architecture.aux
  (./client_architecture.tex
-Underfull \hbox (badness 10000) in paragraph at lines 16--21
+LaTeX Font Info:    Font shape `TU/lmtt/bx/n' in size <10.95> not available
+(Font)              Font shape `TU/lmtt/b/n' tried instead on input line 13.
+ [22
+
+
+] [23] [24] [25] [26]
+Underfull \hbox (badness 10000) in paragraph at lines 225--230
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 16--21
+Underfull \hbox (badness 10000) in paragraph at lines 225--230
 
  []
 
-[17
+[27]
+Underfull \hbox (badness 10000) in paragraph at lines 243--244
 
+ []
 
-]
-Underfull \hbox (badness 10000) in paragraph at lines 34--35
 
+Overfull \hbox (55.88304pt too wide) in paragraph at lines 246--247
+[][][][][][][][][][][][][][][][][][][][][] 
  []
 
+[28]
+Overfull \hbox (29.60283pt too wide) in paragraph at lines 260--261
+[][][][][][][][][][][][][][][][][][][][][][][][] 
+ []
 
-Overfull \hbox (28.50806pt too wide) in paragraph at lines 37--38
-[][][][][][][][][][][][][][][][][][][][] 
+
+Overfull \hbox (9.89267pt too wide) in paragraph at lines 262--263
+[][][][][][][][][][][][][][][][][][][][][][][] 
  []
 
-LaTeX Font Info:    Font shape `TU/lmtt/bx/n' in size <10.95> not available
-(Font)              Font shape `TU/lmtt/b/n' tried instead on input line 48.
-[18]
-Underfull \hbox (badness 10000) in paragraph at lines 80--83
 
+Overfull \hbox (3.32262pt too wide) in paragraph at lines 286--287
+[][][][][][][][][][][][][][][][][][][][][][][][][][][] 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 80--83
+Underfull \hbox (badness 10000) in paragraph at lines 291--294
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 91--92
+Underfull \hbox (badness 10000) in paragraph at lines 291--294
 
  []
 
+[29]
+Underfull \hbox (badness 10000) in paragraph at lines 302--303
 
-Overfull \hbox (35.07811pt too wide) in paragraph at lines 94--95
-[][][][][][][][][][][][][][][][][][][][] 
  []
 
 
-Overfull \hbox (21.938pt too wide) in paragraph at lines 95--96
+Overfull \hbox (62.4531pt too wide) in paragraph at lines 305--306
+[][][][][][][][][][][][][][][][][][][][][] 
+ []
+
+
+Overfull \hbox (49.31299pt too wide) in paragraph at lines 306--307
+[][][][][][][][][][][][][][][][][][][][][][][][][][][] 
+ []
+
+
+Overfull \hbox (69.02315pt too wide) in paragraph at lines 307--308
 [][][][][][][][][][][][][][][][][][][][][][][][][][] 
  []
 
 
-Overfull \hbox (41.64816pt too wide) in paragraph at lines 96--97
-[][][][][][][][][][][][][][][][][][][][][][][][][] 
+Overfull \hbox (9.89267pt too wide) in paragraph at lines 309--310
+[][][][][][][][][][][][][][][][][][][][][] 
  []
 
-[19]
-Overfull \hbox (67.92838pt too wide) in paragraph at lines 123--124
-[][][][][][][][][][][][][][][][][][][][][][][][][][][] 
+
+Overfull \hbox (95.30336pt too wide) in paragraph at lines 334--335
+[][][][][][][][][][][][][][][][][][][][][][][][][][][][] 
  []
 
-) [20]
+[30]) [31]
 \openout2 = implementation.aux
  (./implementation.tex
-<images/secret_split.png, id=79, 804.00375pt x 684.5575pt>
+<images/system-architecture.png, id=524, 598.09656pt x 436.11208pt>
+File: images/system-architecture.png Graphic file (type png)
+<use images/system-architecture.png>
+Package luatex.def Info: images/system-architecture.png  used on input line 8.
+(luatex.def)             Requested size: 299.04755pt x 218.0555pt.
+
+Underfull \hbox (badness 10000) in paragraph at lines 2--11
+
+ []
+
+<images/secret_split.png, id=525, 804.00375pt x 865.2325pt>
 File: images/secret_split.png Graphic file (type png)
 <use images/secret_split.png>
-Package luatex.def Info: images/secret_split.png  used on input line 9.
-(luatex.def)             Requested size: 402.0009pt x 342.27791pt.
-<images/recovery_process.png, id=80, 804.00375pt x 483.8075pt>
+Package luatex.def Info: images/secret_split.png  used on input line 22.
+(luatex.def)             Requested size: 402.0009pt x 432.61519pt.
+[32
+
+
+<./images/system-architecture.png>] [33<./images/secret_split.png>]
+<images/recovery_process.png, id=544, 804.00375pt x 653.44125pt>
 File: images/recovery_process.png Graphic file (type png)
 <use images/recovery_process.png>
-Package luatex.def Info: images/recovery_process.png  used on input line 18.
-(luatex.def)             Requested size: 402.0009pt x 241.90315pt.
- [21
+Package luatex.def Info: images/recovery_process.png  used on input line 41.
+(luatex.def)             Requested size: 402.0009pt x 326.71982pt.
+ [34]
+Underfull \hbox (badness 10000) in paragraph at lines 49--50
 
+ []
 
-<./images/secret_split.png>]
-Underfull \hbox (badness 10000) in paragraph at lines 24--33
+[35<./images/recovery_process.png>] [36]
+Underfull \hbox (badness 10000) in paragraph at lines 90--99
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 24--33
+Underfull \hbox (badness 10000) in paragraph at lines 90--99
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 24--33
+Underfull \hbox (badness 10000) in paragraph at lines 90--99
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 24--33
+Underfull \hbox (badness 10000) in paragraph at lines 90--99
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 24--33
+Underfull \hbox (badness 10000) in paragraph at lines 90--99
 
  []
 
-[22<./images/recovery_process.png>]
-Underfull \hbox (badness 10000) in paragraph at lines 35--40
+[37]
+Underfull \hbox (badness 10000) in paragraph at lines 101--106
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 35--40
+Underfull \hbox (badness 10000) in paragraph at lines 101--106
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 35--40
+Underfull \hbox (badness 10000) in paragraph at lines 101--106
 
  []
 
-
-Underfull \hbox (badness 10000) in paragraph at lines 44--45
+[38]
+Underfull \hbox (badness 10000) in paragraph at lines 114--115
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 46--47
+Underfull \hbox (badness 10000) in paragraph at lines 116--117
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 48--49
+Underfull \hbox (badness 10000) in paragraph at lines 118--119
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 51--54
+Underfull \hbox (badness 10000) in paragraph at lines 121--124
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 51--54
+Underfull \hbox (badness 10000) in paragraph at lines 121--124
 
  []
 
-[23]
-Underfull \hbox (badness 10000) in paragraph at lines 60--61
+[39]
+Underfull \hbox (badness 10000) in paragraph at lines 134--135
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 62--63
+Underfull \hbox (badness 10000) in paragraph at lines 136--137
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 64--65
+Underfull \hbox (badness 10000) in paragraph at lines 138--139
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 66--67
+Underfull \hbox (badness 10000) in paragraph at lines 140--141
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 68--69
+Underfull \hbox (badness 10000) in paragraph at lines 142--143
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 75--76
+Underfull \hbox (badness 10000) in paragraph at lines 144--145
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 77--78
+Underfull \hbox (badness 10000) in paragraph at lines 151--152
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 81--82
+Underfull \hbox (badness 10000) in paragraph at lines 153--154
 
  []
 
-[24]
-Underfull \hbox (badness 10000) in paragraph at lines 87--88
 
- []
+Underfull \hbox (badness 10000) in paragraph at lines 157--158
 
+ []
 
-Underfull \hbox (badness 10000) in paragraph at lines 89--90
+[40]
+Underfull \hbox (badness 10000) in paragraph at lines 167--168
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 91--92
+Underfull \hbox (badness 10000) in paragraph at lines 169--170
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 93--94
+Underfull \hbox (badness 10000) in paragraph at lines 171--172
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 95--96
+Underfull \hbox (badness 10000) in paragraph at lines 173--174
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 97--98
+Underfull \hbox (badness 10000) in paragraph at lines 175--176
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 99--100
+Underfull \hbox (badness 10000) in paragraph at lines 177--178
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 101--102
+Underfull \hbox (badness 10000) in paragraph at lines 179--180
 
  []
 
-
-Underfull \hbox (badness 10000) in paragraph at lines 120--121
-
+[41]
+Overfull \hbox (88.7333pt too wide) in paragraph at lines 205--206
+[][][][][][][][][][][][][][][][][][][][] 
  []
 
-[25]
-Underfull \hbox (badness 10000) in paragraph at lines 122--123
 
+Overfull \hbox (3.1387pt too wide) in paragraph at lines 211--212
+[]\TU/lmr/bx/n/10.95 en-crypted_re-cov-ery_doc-u-ment\TU/lmr/m/n/10.95 : The en
+-crypted re-cov-ery doc-u-ment which con-
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 124--125
+Underfull \hbox (badness 10000) in paragraph at lines 211--212
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 126--129
+Underfull \hbox (badness 10000) in paragraph at lines 213--214
 
  []
 
 
-Overfull \hbox (41.64816pt too wide) in paragraph at lines 135--136
-[][][][][][][][][][][][][][][][][][][] 
+Overfull \hbox (16.46272pt too wide) in paragraph at lines 224--225
+[][][][][][][][][][][][][][][][][][][][] 
  []
 
 
-Overfull \hbox (5.39865pt too wide) in paragraph at lines 138--139
-\TU/lmr/m/n/10.95 the pur-pose code TALER_SIG-NA-TURE_ANAS-TA-SIS_POL-ICY_UP-LO
-AD (1400) (see
+Overfull \hbox (69.02315pt too wide) in paragraph at lines 225--226
+[][][][][][][][][][][][][][][][][][][][] 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 138--139
+Underfull \hbox (badness 10000) in paragraph at lines 228--229
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 140--141
+Underfull \hbox (badness 10000) in paragraph at lines 230--231
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 142--145
+Underfull \hbox (badness 10000) in paragraph at lines 232--235
 
  []
 
-
-Overfull \hbox (54.78827pt too wide) in paragraph at lines 147--148
+[42]
+Overfull \hbox (23.03278pt too wide) in paragraph at lines 236--237
 [][][][][][][][][][][][][][][][][][][][] 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 150--151
-
+Overfull \hbox (82.16325pt too wide) in paragraph at lines 237--238
+[][][][][][][][][][][][][][][][][][][][][] 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 152--153
+Underfull \hbox (badness 10000) in paragraph at lines 240--241
 
  []
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 154--155
+Underfull \hbox (badness 10000) in paragraph at lines 242--243
 
  []
 
-[26]) [27]
-\openout2 = business_model.aux
- (./business_model.tex
-
-LaTeX Warning: Citation 'global_data_index' on page 28 undefined on input line 
2
-2.
-
-
-LaTeX Warning: Citation 'millions_lost' on page 28 undefined on input line 23.
 
+Underfull \hbox (badness 10000) in paragraph at lines 244--245
 
-LaTeX Warning: Citation 'forgot_my_pin' on page 28 undefined on input line 23.
+ []
 
-[28
+) [43]
+\openout2 = business_model.aux
+ (./business_model.tex [44
 
 
-] [29] [30]
-<images/project_plan.png, id=114, 609.27625pt x 265.99374pt>
+] [45] [46]
+<images/project_plan.png, id=708, 609.27625pt x 265.99374pt>
 File: images/project_plan.png Graphic file (type png)
 <use images/project_plan.png>
 Package luatex.def Info: images/project_plan.png  used on input line 60.
 (luatex.def)             Requested size: 396.02486pt x 172.89388pt.
- [31<./images/project_plan.png>]) [32]
+) [47] [48<./images/project_plan.png>]
 \openout2 = conclusion.aux
- (./conclusion.tex)
-[33
+ (./conclusion.tex) [49
 
 
 ]
+Overfull \hbox (11.12428pt too wide) in paragraph at lines 71--71
+[]\TU/lmr/m/n/10.95 S. Ra-manu-jam and M. Karup-piah, ``De-sign-ing an al-go-ri
+thm with high avalanche
+ []
 
-LaTeX Warning: Empty bibliography on input line 63.
 
-No file thesis.lof.
-\tf@lof=\write5
+Overfull \hbox (9.64967pt too wide) in paragraph at lines 71--71
+[]\TU/lmr/m/n/10.95 H. Krawczyk, ``Cryp-to-graphic ex-trac-tion and key deriva-
+tion: The hkdf scheme,''
+ []
 
-\openout5 = thesis.lof
-No file thesis.lot.
-\tf@lot=\write6
+[50
 
-\openout6 = thesis.lot
+]
+Overfull \hbox (1.21692pt too wide) in paragraph at lines 71--71
+\TU/lmr/m/n/10.95 se-cret shar-ing,'' in \TU/lmr/m/it/10.95 An-nual in-ter-na-t
+ional cryp-tol-ogy con-fer-ence\TU/lmr/m/n/10.95 , Springer, 1991,
+ []
+
+
+Overfull \hbox (1.21692pt too wide) in paragraph at lines 71--71
+\TU/lmr/m/n/10.95 se-cret shar-ing,'' in \TU/lmr/m/it/10.95 An-nual in-ter-na-t
+ional cryp-tol-ogy con-fer-ence\TU/lmr/m/n/10.95 , Springer, 1991,
+ []
+
+
+Overfull \hbox (0.70107pt too wide) in paragraph at lines 71--71
+\TU/lmr/m/n/10.95 Chal-lenges and di-rec-tions,'' \TU/lmr/m/it/10.95 Se-cu-rity
+ and Com-mu-ni-ca-tion Net-works\TU/lmr/m/n/10.95 , vol. 2017,
+ []
+
+[51]
+Overfull \hbox (17.65053pt too wide) in paragraph at lines 71--71
+[]\TU/lmr/m/n/10.95 (2020). ``Post-gresql: The world’s most ad-vanced open so
+urce re-la-tional database,''
+ []
+
+(./thesis.lof)
+\tf@lof=\write6
+
+\openout6 = thesis.lof
+ (./thesis.lot)
+\tf@lot=\write7
+
+\openout7 = thesis.lot
 The property list \polyglossia@langsetup contains the pairs (without outer
 braces):
 >  {latex/script}  =>  {latin}
@@ -1722,56 +1945,64 @@ braces):
 >  {english/babelname}  =>  {american}
 >  {english/localnumeral}  =>  {polyglossia@C@localnumeral}
 >  {english/Localnumeral}  =>  {polyglossia@C@localnumeral}.
-[34
-
-] (./thesis.aux
-LaTeX Info: Redefining \rmfamily on input line 7.
-LaTeX Info: Redefining \sffamily on input line 7.
-LaTeX Info: Redefining \ttfamily on input line 7.
- (./abstract.aux) (./motivation.aux)
-(./project_management.aux) (./related_work.aux) (./design.aux)
-(./server_architecture.aux) (./client_architecture.aux) (./implementation.aux)
-(./business_model.aux) (./conclusion.aux))
 
-LaTeX Warning: There were undefined references.
 
+! LaTeX Error: \begin{itemize} on input line 214 ended by \end{document}.
 
-LaTeX Warning: Label(s) may have changed. Rerun to get cross-references right.
+See the LaTeX manual or LaTeX Companion for explanation.
+Type  H <return>  for immediate help.
+ ...                                              
+                                                  
+l.74 \end{document}
+                 
+? x
 
 
-Package biblatex Warning: Please (re)run Biber on the file:
-(biblatex)                thesis
-(biblatex)                and rerun LaTeX afterwards.
-
-Package logreq Info: Writing requests to 'thesis.run.xml'.
-
-\openout1 = thesis.run.xml
-)
-
 Here is how much of LuaTeX's memory you used:
- 20779 strings out of 481351
- 100000,1373583 words of node,token memory allocated
- 623 words of node memory still in use:
-   6 hlist, 2 vlist, 2 rule, 2 glue, 4 kern, 1 glyph, 7 attribute, 79 
glue_spec,
- 7 attribute_list, 1 write nodes
-   avail lists: 
1:2,2:1941,3:236,4:105,5:465,6:43,7:6569,8:3,9:1540,10:27,11:500
-,12:1
- 36958 multiletter control sequences out of 65536+600000
- 106 fonts using 9509163 bytes
- 46i,10n,78p,10119b,1934s stack positions out of 
5000i,500n,10000p,200000b,100000s
-</usr/share/texmf/fonts/opentype/public/lm/lmmonolt10-bold.otf></usr/share/texmf
-/fonts/opentype/public/lm/lmmono10-regular.otf></usr/share/texmf/fonts/opentype/
-public/lm/lmmono10-italic.otf></usr/share/texmf/fonts/opentype/public/lm/lmroman
-10-italic.otf></usr/share/texmf/fonts/opentype/public/lm/lmroman8-regular.otf></
-usr/share/texmf/fonts/opentype/public/lm/lmroman10-bold.otf></usr/share/texmf/fo
-nts/opentype/public/lm/lmroman10-regular.otf></usr/share/texmf/fonts/opentype/pu
-blic/lm/lmmono12-regular.otf></usr/share/texmf/fonts/opentype/public/lm/lmroman1
-2-regular.otf></usr/share/texmf/fonts/opentype/public/lm/lmsans10-bold.otf></usr
-/share/texlive/texmf-dist/fonts/type1/public/kpfonts/jkpsy.pfb>
-Output written on thesis.pdf (34 pages, 257779 bytes).
-
-PDF statistics: 196 PDF objects out of 1000 (max. 8388607)
- 117 compressed objects within 2 object streams
- 0 named destinations out of 1000 (max. 131072)
+ 28767 strings out of 481351
+ 100000,1648299 words of node,token memory allocated 16644 words of node 
memory still in use:
+   51 hlist, 1 vlist, 2 rule, 62 disc, 9 local_par, 1 dir, 14 math, 406 glue, 
46
+ kern, 139 penalty, 1423 glyph, 266 attribute, 89 glue_spec, 266 
attribute_list,
+ 1 if_stack, 1 shape, 7 pdf_start_link, 7 pdf_end_link, 9 pdf_dest, 11 
pdf_actio
+n, 18 pdf_colorstack nodes
+   avail lists: 
1:2,2:1626,3:118,4:30,5:511,6:73,7:4728,8:133,9:1492,10:25,11:43
+3,12:1
+ 44277 multiletter control sequences out of 65536+600000
+ 132 fonts using 11461499 bytes
+ 46i,8n,78p,10119b,1546s stack positions out of 
5000i,500n,10000p,200000b,100000s
+
+warning  (pdf backend): unreferenced destination with name 
'cite.0@forgot_my_pin
+'
+
+warning  (pdf backend): unreferenced destination with name 
'cite.0@global_data_i
+ndex'
+
+warning  (pdf backend): unreferenced destination with name 
'cite.0@libmicrohttpd
+'
+
+warning  (pdf backend): unreferenced destination with name 'cite.0@libcurl'
+
+warning  (pdf backend): unreferenced destination with name 'cite.0@postgresql'
+
+warning  (pdf backend): unreferenced destination with name 'cite.0@gnu_taler'
+
+warning  (pdf backend): unreferenced destination with name 
'cite.0@millions_lost
+'
+</usr/share/texmf/fonts/opentype/public/lm/lmromancaps10-regular.otf></usr/share
+/texmf/fonts/opentype/public/lm/lmmono10-italic.otf></usr/share/texmf/fonts/open
+type/public/lm/lmmono10-regular.otf></usr/share/texmf/fonts/opentype/public/lm/l
+mmonolt10-bold.otf></usr/share/texmf/fonts/opentype/public/lm/lmroman10-italic.o
+tf></usr/share/texmf/fonts/opentype/public/lm/lmmono9-regular.otf></usr/share/te
+xmf/fonts/opentype/public/lm/lmroman8-regular.otf></usr/share/texmf/fonts/openty
+pe/public/lm/lmroman10-bold.otf></usr/share/texmf/fonts/opentype/public/lm/lmrom
+an10-regular.otf></usr/share/texmf/fonts/opentype/public/lm/lmmono12-regular.otf
+></usr/share/texmf/fonts/opentype/public/lm/lmroman12-regular.otf></usr/share/te
+xmf/fonts/opentype/public/lm/lmsans10-bold.otf></usr/share/texlive/texmf-dist/fo
+nts/type1/public/kpfonts/jkpsy.pfb>
+Output written on thesis.pdf (55 pages, 732590 bytes).
+
+PDF statistics: 856 PDF objects out of 1000 (max. 8388607)
+ 730 compressed objects within 8 object streams
+ 464 named destinations out of 1000 (max. 131072)
  1 words of extra memory for PDF output out of 10000 (max. 100000000)
 
diff --git a/doc/thesis/thesis.lot b/doc/thesis/thesis.lot
index 1a53ee5..e69de29 100644
--- a/doc/thesis/thesis.lot
+++ b/doc/thesis/thesis.lot
@@ -1,3 +0,0 @@
-\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse 
{pagetracker}\boolfalse {backtracker}\relax 
-\defcounter {refsection}{0}\relax 
-\selectlanguage *{english}
diff --git a/doc/thesis/thesis.synctex.gz b/doc/thesis/thesis.synctex.gz
deleted file mode 100644
index 6a57e81..0000000
Binary files a/doc/thesis/thesis.synctex.gz and /dev/null differ

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]