[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-donau] branch master updated: added initial DONAU protocol overvi
From: |
gnunet |
Subject: |
[taler-donau] branch master updated: added initial DONAU protocol overview |
Date: |
Tue, 26 Sep 2023 18:28:04 +0200 |
This is an automated email from the git hooks/post-receive script.
johannes-casaburi pushed a commit to branch master
in repository donau.
The following commit(s) were added to refs/heads/master by this push:
new 39efb81 added initial DONAU protocol overview
39efb81 is described below
commit 39efb81568456f700e8ed5b378eeb432071b707b
Author: Casaburi Johannes <johannes.casaburi@students.bfh.ch>
AuthorDate: Tue Sep 26 18:27:07 2023 +0200
added initial DONAU protocol overview
---
doc/protocol/.gitignore | 39 +++++++++++++++++++++++++++++++++++++++
doc/protocol/Makefile | 13 +++++++++++++
doc/protocol/overview.tex | 32 ++++++++++++++++++++++++++++++++
3 files changed, 84 insertions(+)
diff --git a/doc/protocol/.gitignore b/doc/protocol/.gitignore
new file mode 100644
index 0000000..6688ce4
--- /dev/null
+++ b/doc/protocol/.gitignore
@@ -0,0 +1,39 @@
+*.pdf
+
+## Core latex/pdflatex auxiliary files:
+*.aux
+*.lof
+*.log
+*.lot
+*.fls
+*.out
+*.toc
+*.fmt
+*.fot
+*.cb
+*.cb2
+.*.lb
+
+## Bibliography auxiliary files (bibtex/biblatex/biber):
+*.bbl
+*.bcf
+*.blg
+*-blx.aux
+*-blx.bib
+*.run.xml
+
+# beamer
+*.nav
+*.pre
+*.snm
+*.vrb
+
+# hyperref
+*.brf
+
+# pax
+*.pax
+
+*.idx
+*.ilg
+*.ind
diff --git a/doc/protocol/Makefile b/doc/protocol/Makefile
new file mode 100644
index 0000000..46b8c8f
--- /dev/null
+++ b/doc/protocol/Makefile
@@ -0,0 +1,13 @@
+SOURCES = $(wildcard *.tex)
+BASENAME = $(patsubst %.tex,%,$(SOURCES))
+
+.PHONY: pdf default open clean
+
+pdf default:
+ pdflatex $(SOURCES)
+
+open: pdf
+ zathura --fork $(BASENAME).pdf
+
+clean:
+ rm -f *.nav *.snm *.toc *.pdf *.log *.aux *.out *.dvi *.bbl *.blg
diff --git a/doc/protocol/overview.tex b/doc/protocol/overview.tex
new file mode 100644
index 0000000..a65b0cd
--- /dev/null
+++ b/doc/protocol/overview.tex
@@ -0,0 +1,32 @@
+\documentclass{article}
+
+\usepackage[english]{babel}
+\usepackage[utf8]{inputenc}
+\usepackage{amsmath,amssymb}
+\usepackage{parskip}
+\usepackage{graphicx}
+
+% Margins
+\usepackage[top=2.5cm, left=3cm, right=3cm, bottom=4.0cm]{geometry}
+% Colour table cells
+\usepackage[table]{xcolor}
+
+\title{DONAU protocol overview}
+\author{Johannes Casaburi \and Pius Losli \and Lukas Matiya}
+\date{\today}
+
+\begin{document}
+\maketitle
+
+\section{Definitions}
+\section{Overview}
+% Insert DONAU overview.png
+\section{Step 1: Donor donates to charity}
+To donate 3 Euro the donor has to generate 2 coins (1 Euro and 2 Euro coin).
The messages $M_1$ and $M_2$ are blinded using the blinding factor and sent as
$M_1'$ and $M_2'$ to the charity.
+
+\begin{align}
+ M_1 = \langle H(TAXID, SALT), NONCE_1 \rangle \\
+ M_2 = \langle H(TAXID, SALT), NONCE_2 \rangle
+\end{align}
+
+\end{document}
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [taler-donau] branch master updated: added initial DONAU protocol overview,
gnunet <=