ssme-thesis/Thesis.tex

500 lines
29 KiB
TeX
Raw Normal View History

2018-06-27 21:49:31 +02:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% I, the copyright holder of this work, release this work into the
%% public domain. This applies worldwide. In some countries this may
%% not be legally possible; if so: I grant anyone the right to use
%% this work for any purpose, without any conditions, unless such
%% conditions are required by law.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[
2018-06-29 16:38:17 +02:00
printed, %% This option enables the default options for the
2018-06-27 21:49:31 +02:00
%% digital version of a document. Replace with `printed`
%% to enable the default options for the printed version
%% of a document.
table, %% Causes the coloring of tables. Replace with `notable`
%% to restore plain tables.
2018-06-29 16:38:17 +02:00
nolof, %% Prints the List of Figures. Replace with `nolof` to
2018-06-27 21:49:31 +02:00
%% hide the List of Figures.
2018-06-29 16:38:17 +02:00
nolot, %% Prints the List of Tables. Replace with `nolot` to
2018-06-27 21:49:31 +02:00
%% hide the List of Tables.
2018-06-29 16:38:17 +02:00
oneside, color
2018-06-27 21:49:31 +02:00
%% More options are listed in the user guide at
%% <http://mirrors.ctan.org/macros/latex/contrib/fithesis/guide/mu/fi.pdf>.
]{fithesis3}
%% The following section sets up the locales used in the thesis.
\usepackage[resetfonts]{cmap} %% We need to load the T2A font encoding
\usepackage[T1,T2A]{fontenc} %% to use the Cyrillic fonts with Russian texts.
\usepackage[
2018-07-15 23:39:27 +02:00
main=english, %% By using `czech` or `slovak` as the main locale
2018-06-27 21:49:31 +02:00
%% instead of `english`, you can typeset the thesis
%% in either Czech or Slovak, respectively.
2018-07-15 23:39:27 +02:00
german, russian, czech, slovak %% The additional keys allow
2018-06-27 21:49:31 +02:00
]{babel} %% foreign texts to be typeset as follows:
%%
%% \begin{otherlanguage}{german} ... \end{otherlanguage}
%% \begin{otherlanguage}{russian} ... \end{otherlanguage}
%% \begin{otherlanguage}{czech} ... \end{otherlanguage}
%% \begin{otherlanguage}{slovak} ... \end{otherlanguage}
%%
%% For non-Latin scripts, it may be necessary to load additional
%% fonts:
\usepackage{paratype}
\def\textrussian#1{{\usefont{T2A}{PTSerif-TLF}{m}{rm}#1}}
%%
%% The following section sets up the metadata of the thesis.
\thesissetup{
date = \the\year/\the\month/\the\day,
university = mu,
faculty = fi,
2018-06-29 16:38:17 +02:00
type = mgr,
author = Bc. Radim Lipovčan,
gender = m,
advisor = RNDr. Vlasta Šťavová,
2018-07-15 23:39:27 +02:00
title = {Monero usage and mining from usable security view},
TeXtitle = {Monero usage and mining from usable security view},
2018-06-29 16:38:17 +02:00
keywords = {Monero, usable security, cryptocurrency, mining, pool, blockchain},
TeXkeywords = {Monero, usable security, cryptocurrency, mining, pool, blockchain},
2018-06-27 21:49:31 +02:00
}
\thesislong{abstract}{
This is the abstract of my thesis, which can
span multiple paragraphs.
}
\thesislong{thanks}{
This is the acknowledgement for my thesis, which can
span multiple paragraphs.
}
%% The following section sets up the bibliography.
\usepackage{csquotes}
\usepackage[ %% When typesetting the bibliography, the
backend=biber, %% `numeric` style will be used for the
style=numeric, %% entries and the `numeric-comp` style
citestyle=numeric-comp, %% for the references to the entries. The
sorting=none, %% entries will be sorted in cite order.
sortlocale=auto %% For more unformation about the available
]{biblatex} %% `style`s and `citestyles`, see:
%% <http://mirrors.ctan.org/macros/latex/contrib/biblatex/doc/biblatex.pdf>.
\addbibresource{Thesis.bib} %% The bibliograpic database within
%% the file `example.bib` will be used.
\usepackage{makeidx} %% The `makeidx` package contains
\makeindex %% helper commands for index typesetting.
%% These additional packages are used within the document:
\usepackage{paralist}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amsfonts}
\usepackage{url}
\usepackage{menukeys}
2018-06-29 23:26:35 +02:00
%packages
\usepackage{float}
2018-07-03 10:44:26 +02:00
\usepackage{hyperref}
\usepackage[strings]{underscore}
%timeline
\usepackage{xcolor}
\newcommand\ytl[2]{
2018-07-03 13:50:09 +02:00
\parbox[b]{8em}{\hfill{\color{cyan}\bfseries\sffamily #1}~$\cdots\cdots$~}\makebox[0pt][c]{$\bullet$}\vrule\quad \parbox[c]{.7\linewidth}{\vspace{7pt}\color{red!40!black!80}\raggedright\sffamily #2.\\[7pt]}\\[-3pt]}
2018-07-03 10:44:26 +02:00
2018-07-04 16:04:00 +02:00
%caption
\usepackage{caption}
2018-07-10 23:21:47 +02:00
%branches
\usepackage{tikz}
%
\usetikzlibrary{trees}
2018-06-27 21:49:31 +02:00
\begin{document}
2018-07-17 08:05:21 +02:00
\chapter{Introduction}
2018-07-10 23:22:28 +02:00
%% Komentář Vlasta 10.7.: tady někde (možná samostatná kapitola) bude nutné nadefinovat pojmy. Nazvat to "Kryptoměny" a popsat tam myšlenku, z čeho se skládají, co je blockchain, co to znamená fork... a tak.
%% Komentář Vlasta 10.7.: Nechceš to psát anglicky? Myslím, že by sis tím ušetřil hromadu práce s překlady. Dotazník bude v jakém jazyce?
2018-07-10 21:53:33 +02:00
2018-07-13 11:26:12 +02:00
%% Komentář Radim 13.07: Kapitola s pojmy - udělám zvlášť krátkou, ve které popíšu tyto základní principy, ještě tedy před Monero Cryptocurrency kapitolou. Monero specific věci pak budou popsány už pod Monerem.
%% Komentář Radim 13.07: Po domluvě mailem tedy začnu psát Anglicky. Dotazníky budou ve dvou jazykových mutacích - ENG a CZ. Hlavně kvůli CZ komunitě těžařů a pool operátorům - https://bohemianpool.com/#/home bych dal i tu češtinu.
2018-07-17 08:05:21 +02:00
\chapter{Cryptocurrency}
2018-07-17 22:02:07 +02:00
\textbf{Cryptocurrency} is a digital currency that is designed to use cryptography to secure and verify its transactions. Cryptocurrencies are decentralized as opposed to traditional money transaction systems used in the banks. Decentralisation is established by using distributed blockchain that functions as a transaction database within the currency. First cryptocurrency available was Bitcoin \cite{farell2015analysis}.
2018-07-17 08:05:21 +02:00
\textbf{Altcoin} is a term used for every cryptocurrency that is not Bitcoin as it is a direct concurrent for the first of the cryptocurrency.
2018-07-17 22:02:07 +02:00
The \textbf{fork} happens when developers create a copy of existing project codebase and start their individual path of development with it.
2018-07-17 08:05:21 +02:00
\textbf{Market Cap} is a total value of cryptocurrency that refers to the total number of emitted coins multiplied by the value of the coin.
\textbf{The blockchain} is a technology responsible for storing every transaction that has ever been processed in the cryptocurrency, also often called as a ledger. The main purpose of the blockchain is to ensure the validity of completed transactions.
2018-07-17 22:02:07 +02:00
\textbf{Transactions} within cryptocurrency are processed together as blocks that are verified by miners and then added to the blockchain as a new mined block.
2018-07-17 08:05:21 +02:00
2018-07-17 22:02:07 +02:00
\textbf{The wallet} is a storage medium that holds private and public keys by which user can access, send and receive funds. Wallet effectively does not have the coins but is rather a key to access them from the blockchain.
2018-07-17 08:05:21 +02:00
\textbf{Node} is a computer connected to the cryptocurrency network. Node is often referred to as a full node which means that the computer maintains a full copy of blockchain. This results in node downloading every block and transaction and checking them against cryptocurrency rules, especially whether the transaction has correct signatures, data format and the right number of emitted coins per block.
2018-07-17 22:02:07 +02:00
\textbf{Mining} process done by miners that verifies transactions on the network and adds them to the blockchain together in form of a block which results in new coins being emitted as a reward for block solving.
\textbf{Mining in pools} is the way how individual miners pool their computational resources. Due to resources pooling, there is a higher chance of solving the block thus gaining the reward of newly emitted coins. %After solving each block, the reward is distributed equally to miners connected to the pool according to PPS or PPLNS system.
2018-07-13 11:26:12 +02:00
\chapter{Monero Cryptocurrency}
%Monero je opensource kryptoměnou, která je vyvíjená v rámci Monero projektu za účelem vytvoření decentralizované a anonymní měny. Hlavním cílem je dát uživateli plnou kontrolu nad předstředky, kterými disponuje.
Monero is an open-source cryptocurrency that is developed under the Monero project in order to create a decentralized and anonymous currency. Its main goal is to make the user the one who has complete control over own funds.
%Znamná to tedy, že jednotlivé digitální transakce a počet peněz v pěněžence nelze dohledat bez vygenerování pohledu uživatelem \cite{moneroprojectgithub}.Hlavními body, kterými se Monero oproti jiným kryptoměnám liší, jsou:
Meaning that every single digital transaction and the exact number of coins in users wallet cannot be traced back to the user without sharing the view key of the transaction \cite{moneroprojectgithub}. Main distinctive points compared to other cryptocurrencies are:
%\begin{itemize}\itemsep0em
%\item Blockchain je veřejný, většina jeho částí je ovšem šifrována, více v kapitole o blockchainu \ref{sec:blockchain}.
%\item Odesílatel transakce je skrytý díky Ring Signatures, které jsou popsány v kapitole \ref{sec:ringsignatures}.
%\item Množství odesílané měny je šifrováno pomocí RingCT popsaném v \ref{sec:ringct}.
%\item Transakční historie a příjemce je neveřejný použitím skrytých adres (stealth addresses), kterým se věnuje kapitola \ref{sec:stealthaddresses}.
%\end{itemize}
2018-07-10 21:53:33 +02:00
\begin{itemize}\itemsep0em
2018-07-13 11:26:12 +02:00
\item The blockchain is public, but a large part of it is encrypted - more at chapter \ref{sec:blockchain}.
\item The sender of the transaction is hidden by using Ring Signatures explained in chapter \ref{sec:ringsignatures}.
\item The exact amount of transferred coins is encrypted using RingCT as described in \ref{sec:ringct}.
\item Transaction history and receiving party is hidden by the usage of stealth addresses that are referenced in chapter \ref{sec:stealthaddresses}.
2018-07-10 21:53:33 +02:00
\end{itemize}
2018-07-13 11:49:25 +02:00
2018-07-13 11:26:12 +02:00
\section{Origin and main focus}
2018-07-13 11:49:25 +02:00
Monero started its way by forking from Bytecoin, which was proof-of-concept cryptocurrency that used as first of its kind protocol called CryptoNote. CryptoNote was published by the start of the year 2014 \cite{githubbytecoin}.
%Cesta vzniku samotného Monera je složená z několika forků a předcházejících projektů. Prvním z nich byl Bytecoin jakožto proof-of-concept kryptoměna používající jako první protokol CryptoNote, který byl publikován na začátku roku 2014 \cite{githubbytecoin}
2018-07-02 20:33:08 +02:00
% CryptoNote implementace ByteCoin -> https://github.com/monero-project/monero/commit/296ae46ed8f8f6e5f986f978febad302e3df231a
2018-07-03 10:44:26 +02:00
2018-07-13 11:49:25 +02:00
%Bytecoin měl ovšem problém s tzv. preminem, tedy stavem, kdy kryptoměna publikovaná na veřejnost má již velkou část peněz předem vytěženou. Zde se jednalo o vytěžení 82\% mincí před zveřejněním této měny \cite{fluffyponyonbytecoin}.
2018-07-02 20:33:08 +02:00
% Duvod forku https://coinmetrics.io/papers/dissertation.pdf premine xx procent
2018-07-13 11:49:25 +02:00
Although Bytecoin had a promising protocol aimed at privacy, there was a problem with premine, meaning that cryptocurrency at the time of publishing had already 82\% of the coins already emitted \cite{fluffyponyonbytecoin}.
%Toto byl důvod pro komunitu okolo anonymních kryptoměn, aby udělali hardfork a tím vytvořili kryptoměnu novou, BitMonero \cite{bitmonero}.
2018-07-02 20:33:08 +02:00
% Fork Bytecoin -> BitMonero https://github.com/monero-project/monero/commit/1a8f5ce89a990e54ec757affff01f27d449640bc
2018-07-13 11:49:25 +02:00
That was the reason why people interested in anonymous cryptocurrencies decided to create a Bytecoin fork under the name of BitMonero \cite{bitmonero}.
%Důležitou změnou bylo oddělení hlavní části vývojářů a vytvoření samostatného forku s názvem Monero dne 23.06.2014 . Tím vznikla kryptoměna, která měla od počátku veřejně známý blockchain, jasně definovaný cíl a motivovaný tým vývojářů \cite{monerofork}.
2018-07-03 10:44:26 +02:00
% Fork BitMonero -> Monero https://github.com/monero-project/monero/commit/003b1f909d416ab2c869b76176380c5f133bdad4#diff-c47c7c7383225ab55ff591cb59c41e6b
2018-07-04 16:04:00 +02:00
% \begin{table}
%\centering
%\begin{minipage}[t]{\linewidth}
2018-07-13 11:49:25 +02:00
Next important moment was when a significant part of the developers decided to abandon the project in favor of creating a new fork named Monero in 23.06.2014. By this action, Monero cryptocurrency was created with publicly known blockchain from the start, strictly defined goals and motivated team of developers \cite{monerofork}.
2018-07-10 23:22:28 +02:00
%% Komentář Vlasta 10.7.: Návrh: v téhle kapitole by bylo moc hezká nějaká přehledová tabulka cca 5 největších kryptoměn, kde bys je porovnal podle vybraných kriterii. Třeba kriterium "Množství odesílané měny je šifrováno" by bylo v sloupečku a v pro každou kryptoměnu na řádek vyznačil, zda to splňuje nebo ne. Bylo by pak přehledně vidět čím je Monero tak vyjimečné a jak jsou na tom v těhle kriteriích ostatní kryptoměny.
2018-07-03 10:44:26 +02:00
2018-07-13 11:49:25 +02:00
\subsection{Current development}
%Vývoj Monera je postaven na vydáních, která jsou plánovány na každých 6 měsíců. Přitom na rozdíl od jiných kryptoměn jde o pravidelné aktualizace, které vývojáři nechtějí spojovat s termínem hardfork.
2018-07-10 23:22:28 +02:00
%% Komentář Vlasta 10.7.: Trochu popiš jak moc je Monero rozšířené. Pro představu v porovnání s dalšími kryptoměnami. Aby bylo jasné, že to není nějaká obskurní kryptoměna.
2018-07-13 11:49:25 +02:00
Monero development cycle is based upon planned network updates that occur every six months. By this developers want to encourage work on the project with regular updates in contrast to other cryptocurrencies that don't want any new hard forks in the future as it brings the danger of splitting the coin into several versions.
2018-07-04 16:04:00 +02:00
2018-07-03 10:44:26 +02:00
% Monero attack https://lab.getmonero.org/pubs/MRL-0002.pdf
2018-07-13 11:49:25 +02:00
%Hlavními důvody pro tento způsob vývojového cyklu jsou:
%\begin{itemize}\itemsep0em
%\item Komunita očekává pravidelné aktualizace.
%\item Možnost upravovat mining algoritmus pro ASIC-resistance.
%\item Prostor pro pravidelná vylepšení.
%\end{itemize}
2018-07-03 10:44:26 +02:00
\begin{itemize}\itemsep0em
2018-07-13 11:49:25 +02:00
\item The community knows that updating is the way forward.
\item Enhanced ASIC resistance by changing the mining algorithm.
\item There is always an opportunity to push updated code and improvements in a biannual cycle.
2018-07-03 10:44:26 +02:00
\end{itemize}
2018-07-03 13:50:09 +02:00
2018-07-13 11:49:25 +02:00
%\begin{figure}[H]
%\center
%\color{gray}
%\rule{\linewidth}{1pt}
%\ytl{03.03.2014}{ByteCoin - publikování na GitHub}
%\ytl{17.04.2014}{Fork ByteCoinu - vznik BitMonero kryptoměny}
%\ytl{23.07.2014}{Fork BitMonera - vznik Monero kryptoměny}
%\ytl{22.03.2016}{Monero v2 - úprava ringsize, čas bloku 120 sekund}
%\ytl{21.09.2016}{Monero v3 - rozdělení transakce na více částek}
%\ytl{05.01.2017}{Monero v4 - souběh normálních a RingCT transakcí}
%\ytl{15.04.2017}{Monero v5 - aktualizace velikosti bloku a algoritmu pro poplatky}
%\ytl{16.09.2017}{Monero v6 - vynucení RingCT transakcí s ringsize =>5}
%\ytl{06.04.2018}{Monero v7 - změna CryptoNight algoritmu kvůli ASIC, ringsize =>7}
%\ytl{--.10.2018}{Příští aktualizace sítě}
%\bigskip
%\rule{\linewidth}{1pt}%
%\end{minipage}%
%\color{black}\caption{Vývoj Monera}
%\end{table}
%\color{black}\caption{Časová osa vývoje Monera}
%\label{monero-timeline}
%\end{figure} \newpage
2018-07-04 16:04:00 +02:00
\begin{figure}[H]
\center
2018-07-03 10:44:26 +02:00
\color{gray}
\rule{\linewidth}{1pt}
2018-07-15 23:39:27 +02:00
\ytl{03.03.2014}{Bytecoin - published on GitHub}
\ytl{17.04.2014}{ByteCoin fork - the creation of BitMonero cryptocurrency}
\ytl{23.07.2014}{BitMonero Fork - the creation of Monero cryptocurrency}
\ytl{22.03.2016}{Monero v2 - ring size change, block time set to 120 seconds}
\ytl{21.09.2016}{Monero v3 - transactions are split into smaller amounts}
2018-07-03 13:50:09 +02:00
\ytl{05.01.2017}{Monero v4 - souběh normálních a RingCT transakcí}
2018-07-15 23:39:27 +02:00
\ytl{15.04.2017}{Monero v5 - block size update and fee algorithm adjustments}
\ytl{16.09.2017}{Monero v6 - RingCT forced on the network with ring size => 5}
\ytl{06.04.2018}{Monero v7 - change of CryptoNight mining algorithm to prevent ASIC on the network, ring size set to =>7}
\ytl{--.10.2018}{Future network update}
2018-07-03 10:44:26 +02:00
\bigskip
\rule{\linewidth}{1pt}%
2018-07-04 16:04:00 +02:00
%\end{minipage}%
%\color{black}\caption{Vývoj Monera}
%\end{table}
2018-07-13 11:49:25 +02:00
\color{black}\caption{Monero development timeline.}
2018-07-04 16:04:00 +02:00
\label{monero-timeline}
2018-07-10 23:21:47 +02:00
\end{figure} \newpage
2018-07-13 11:49:25 +02:00
2018-07-15 23:39:27 +02:00
%Zároveň je s těmito vydáními spojena řada chyb, které jsou průběžně opravovány. Mezi známé problémy Monera v minulosti patřily:
Updates are meant to improve and enhance the already established codebase as well as fixing already existing bugs that are continuously being resolved. Known problems in Monero history were:
%\begin{itemize}
%\item \textbf{Spam attack}
%\begin{itemize}
%\item Šlo o zahlcení sítě při posílání transakcí kvůli poplatku za transakci 0.005 XMR. Rychlou opravou bylo úprava poplatku na 0.1XMR. Toto vedlo k implementaci dynamického poplatku za transakci, který je založený na zvolené prioritě platby \cite{monerospamattack}.
%zdroj https://bitcointalk.org/index.php?topic=583449.msg8519146#msg8519146
%\end{itemize}
%\item \textbf{Split chain attack}
%\begin{itemize}
%\item Cílené využití zranitelnosti ve výpočtu základu Merkle tree vedla k vytvoření dvou bloků se stejnou výškou a hashem na síti, lišily se ovšem 2 transakcemi na konci bloků \cite{macheta2014counterfeiting}. Tím vznikly dva různé chainy Monera. Chyba se týkala celého protokolu Cryptonote a všech kryptoměn na něm založených, v případě Monera komunita zastavila pohyb transakcí na burzách do dalšího dne, kdy byla vydána oprava \cite{cryptonotemerkletree}.
%\end{itemize}
%\item \textbf{Analýza transakcí v blockchainu Monera}
%\begin{itemize}
%\item Výzkum provedený v roce 2017 ukázal z pohledu anonymity problémy se systémem, jakým probíhají transakce. Nejdůležitějším z nich bylo objevení faktu, že při nastavení velikosti ring signature na nule můžeme v blockchainu vysledovat částku na výstupu transakce.
%\item Tento problém byl vyřešen vývojovým týmem záhy díky nasazení technologie RingCT při kterých zároveň nastavili na síti podmínku, při které velikost ring signature musí být
%\end{itemize}
%zdroj https://eprint.iacr.org/2017/338.pdf
%\end{itemize}
%zdroj https://getmonero.org/2017/05/17/disclosure-of-a-major-bug-in-cryptonote-based-currencies.html
2018-07-04 16:04:00 +02:00
\begin{itemize}
2018-07-15 23:39:27 +02:00
\item \textbf{Spam attack}
2018-07-04 16:04:00 +02:00
\begin{itemize}
2018-07-15 23:39:27 +02:00
\item Was aimed to oversaturate the Moneros network by sending very small transactions and leveraging cheap transaction fee of 0.005 XMR. Immediate fix was established by raising the fee to 0.1 XMR. This problem led to the implementation of dynamic transaction fee based on chosen transaction priority \cite{monerospamattack}.
2018-07-04 16:04:00 +02:00
%zdroj https://bitcointalk.org/index.php?topic=583449.msg8519146#msg8519146
\end{itemize}
2018-07-10 23:21:47 +02:00
\item \textbf{Split chain attack}
2018-07-04 16:04:00 +02:00
\begin{itemize}
2018-07-15 23:39:27 +02:00
\item The successful exploit of Merkle root calculation vulnerability led to the creation of two blocks of the same height and hash, but with two different transactions on the end of the block \cite{macheta2014counterfeiting}. By this, two separate Monero chains were created. Exploit was applicable to all CryptoNote based cryptocurrencies. In the case of Monero, all transactions were stopped on exchanges until next day, when the fix was issued \cite{cryptonotemerkletree}.
2018-07-04 16:04:00 +02:00
\end{itemize}
2018-07-15 23:39:27 +02:00
\item \textbf{Transaction analysis in Monero blockchain}
2018-07-10 21:53:33 +02:00
\begin{itemize}
2018-07-15 23:39:27 +02:00
\item Research published in 2017 uncovered past and present problems in anonymity with Monero transaction system. The most significant discovery was that a large portion of transactions used a ring signature of zero which caused traceability of the amount of coin in the transaction output on the blockchain.
\item This issue was resolved by Monero team already in 2016 with Monero v2, where ring signature was set to =>3. Soon after the paper was released, Monero got its v6 update with the mandatory usage of RingCT in transactions.
2018-07-10 21:53:33 +02:00
\end{itemize}
%zdroj https://eprint.iacr.org/2017/338.pdf
2018-07-04 16:04:00 +02:00
\end{itemize}
%zdroj https://getmonero.org/2017/05/17/disclosure-of-a-major-bug-in-cryptonote-based-currencies.html
2018-07-10 23:21:47 +02:00
\newpage
2018-07-15 23:39:27 +02:00
\subsection{Monero competitors}
%Mimo Monero se snaží o anonymní vlastnosti měny i řada dalších projektů. Nejblíže Moneru je ByteCoin, ze kterého Monero vychází, má ovšem špatné jméno v krypto komunitě kvůli 82\% premine měny. Alternativu k Moneru se zachováním řady vlastností nabízí jeho fork Aeon, který využívá méně náročnou implementaci za cenu nižšího stupně anonymity.
Monero is not the only one cryptocurrency that aims at privacy and anonymity features, there are many privacy coins already in existence. Most similar to Monero is ByteCoin from which Monero was forked, but is overall unpopular due to 82\% premine. A viable alternative to Monero offers its fork Aeon that is more lightweight as opposed to Monero with slightly fewer privacy features.
%\begin{figure}[H]
%\centering
%\begin{tabular}{p{0.1\linewidth}p{0.16\linewidth}p{0.1\linewidth}p{0.15\linewidth}p{0.15\linewidth}p{0.15\linewidth}}
%\textbf{Název} & \textbf{Protokol} & \textbf{Block Time {[}s{]}} & \textbf{Stealth Address } & \textbf{Anonymní transakce} & \textbf{Podpis transakce} \\
%Aeon & CryptoNote-Light & 240 & Ano & Ano & Ring Signature \\
%Byte-Coin & CryptoNote & 120 & Ano & Ano & Ring Signature \\
%DASH & X11 & 150 & Ne & Ne zcela & Ano \\
%Monero (XMR) & CryptoNote & 120 & Ano & Ano & RingCT \\
%PIVX & Zerocoin & 60 & Ne přímo & Ano & x \\
%Verge (XVG) & Scrypt & 150 & Ano & Ne, TOR\&I2P & RingCT WIP \\
%Zcash (ZEC) & Zerocash & 150 & Vlastní shielded address & Ano pomocí SNARKS & x \\
%Zcoin (XZC) & Lyra2 =\textgreater MTP & 600 & Ano & Ano, mint \& spend & Ring Signature
%\end{tabular}
%\captionof{table}{Přehled kryptoměn se zaměřením na anonymitu}
%\label{table:monero-alternatives}
2018-07-03 23:44:27 +02:00
%dash https://bitcointalk.org/index.php?topic=1562109.0
%ďash https://docs.dash.org/en/latest/introduction/information.html
%pivx https://github.com/PIVX-Project/PIVX
%pivx https://www.reddit.com/r/pivx/comments/7gjjyw/what_are_the_benefits_of_multisig_addresses/
%zcoin https://github.com/zcoinofficial/zcoin/wiki/Information-for-exchanges
%zcoin https://zcoin.io/zcoins-privacy-technology-compares-competition/
2018-07-04 16:04:00 +02:00
2018-07-15 23:39:27 +02:00
\begin{figure}[H]
\centering
\begin{tabular}{p{0.1\linewidth}p{0.16\linewidth}p{0.1\linewidth}p{0.15\linewidth}p{0.15\linewidth}p{0.15\linewidth}}
\textbf{Name} & \textbf{Protocol} & \textbf{Block Time {[}s{]}} & \textbf{Stealth Address } & \textbf{Anonymous transactions} & \textbf{Transaction signing} \\
Aeon & CryptoNote-Light & 240 & Yes & Yes & Ring Signature \\
Byte-Coin & CryptoNote & 120 & Yes & Yes & Ring Signature \\
DASH & X11 & 150 & No & Not fully & Yes \\
Monero (XMR) & CryptoNote & 120 & Yes & Yes & RingCT \\
PIVX & Zerocoin & 60 & Only partially & Yes & x \\
Verge (XVG) & Scrypt & 150 & Yes & Ne, TOR\&I2P & RingCT WIP \\
Zcash (ZEC) & Zerocash & 150 & Shielded addresses & Yes by SNARKS & x \\
Zcoin (XZC) & Lyra2 =\textgreater MTP & 600 & Yes & Yes by minting \& spending & Ring Signature
\end{tabular}
\captionof{table}{Comparison of Anonymous Cryptocurrencies and their features.}
\label{table:monero-alternatives}
2018-07-10 23:21:47 +02:00
\end{figure}
2018-07-15 23:39:27 +02:00
Information sources used in table \ref{table:monero-alternatives} and in the picture \ref{pict:monero-alternatives-codebase}:\\
2018-07-12 08:56:33 +02:00
Aeon \cite{moneroalternativeaeon}, ByteCoin \cite{moneroalternativebytecoin}, Dash \cite{moneroalternativedash,moneroalternativedashdev}, Monero \cite{moneroprojectgithub}, Pivx \cite{moneroalternativepivx}, Verge \cite{moneroalternativeverge}, Zcash \cite{moneroalternativezcash}, Zcoin \cite{moneroalternativezcoin}.
2018-07-10 23:21:47 +02:00
\begin{figure}[H]
\centering
\begin{tikzpicture}[sibling distance=10em,
every node/.style = {shape=rectangle, rounded corners,
draw, align=center,
top color=white, bottom color=blue!20}]]
\node {Bytecoin}
child { node {DASH}
child { node {PIVX}}}
child { node {BitMonero}
child { node {Monero}
child { node {AEON} } } };
\node[xshift=21mm]{Verge};
\node[xshift=4cm] {Bitcoin}
child[xshift=25mm] { node {Zcash}}
child[xshift=0cm] { node {Zcoin}};
\end{tikzpicture}
2018-07-15 23:39:27 +02:00
\caption{Codebase overview of the selected cryptocurrencies.}
2018-07-10 23:21:47 +02:00
\label{pict:monero-alternatives-codebase}
2018-07-03 13:50:09 +02:00
\end{figure}
2018-07-04 16:04:00 +02:00
2018-07-10 23:21:47 +02:00
%verge ma svoji codebase "non-bitcoin coin" viz prvni commit https://github.com/PIVX-Project/PIVX/commit/4405b78d6059e536c36974088a8ed4d9f0f29898
2018-07-10 21:53:33 +02:00
%\section{CryptoNote protokol}
%\subsection{Verzování a aktualizace}
%\subsection{Proof-of-Work}
2018-07-15 23:39:27 +02:00
\section{Monero Network Structure}
2018-07-10 21:53:33 +02:00
Síť zajišťující fungování Monera jako kryptoměny s transakcemi má decentralizovanou podobu zajištěnou
2018-07-17 08:05:21 +02:00
2018-07-10 21:53:33 +02:00
2018-06-29 16:38:17 +02:00
\section{Adresování v síti}
\subsection{Typy adres}
\subsection{Transakční adresa}
\subsection{View klíč}
\section{Transakce}
\subsection{Struktura}
2018-07-10 21:53:33 +02:00
\subsection{PoW}
2018-06-29 16:38:17 +02:00
\subsection{Vstupy, výstupy, mixing}
\subsection{Průběh transakce}
\subsection{Sledování transakcí na síti}
2018-07-03 13:50:09 +02:00
\subsection{Kovri}
2018-07-10 21:53:33 +02:00
\section{Technologie}
\subsection{Stealth Address}
\label{sec:stealthaddresses}
\subsection{Ring Signatures}
\label{sec:ringsignatures}
\subsection{RingCT}
%zdroje https://eprint.iacr.org/2015/1098.pdf https://getmonero.org/resources/moneropedia/ringCT.html
\label{sec:ringct}
2018-06-29 16:38:17 +02:00
\chapter{Používání monera}
\section{Pěněženky}
\subsection{Hot wallet}
\subsection{Cold wallet}
\subsection{View only wallet}
\subsection{Možnosti útoků na peněženku}
\subsection{Přehled bezpečnosti úložných způsobů}
\section{Software pro práci s kryptopenězi}
\subsection{Vytvoření peněženky}
\subsection{Fullnode, remote node}
\subsection{Multisig}
\subsection{Srovnání wallet softwaru}
\subsection{Exchanges}
\section{Scamy v prostředí kryptoměny}
\subsection{Online portály}
\subsection{Mining pooly}
\subsection{Cílený malware}
\subsection{Delivery chain}
2018-06-29 22:19:51 +02:00
\section{Monero usecase}
2018-06-29 16:38:17 +02:00
\subsection{Darknet Markety}
2018-06-29 22:19:51 +02:00
\subsection{Monero Markety}
\subsection{Úskalí tradingu anonymní měny}
\subsection{Srovnání s ostatními kryptoměnami}
2018-06-29 16:38:17 +02:00
2018-06-29 22:19:51 +02:00
\section{Anonymita při užívání}
2018-06-29 16:38:17 +02:00
\chapter{Výzkum uživatelů kryptoměny}
\section{Definice, výzkumné otázky}
\section{Na jakém vzorku}
\section{Vyhodnocení international, CZ}
\chapter{Best practices pro usage a storage Monera}
\section{Návrh bezpečného úložného systému}
\section{Návrh pro používání kryptoměny}
\section{Portál nabízející služby pro bezpečné používání kryptoměny}
\chapter{Získávání Monera a zajištění chodu sítě}
\section{PoW Monera}
\section{Mining pooly, solo mining}
\section{Web mining, botnet mining}
2018-07-03 10:44:26 +02:00
% Web mining: https://arxiv.org/pdf/1806.01994.pdf
2018-06-29 16:38:17 +02:00
\section{Cloud mining}
\section{Systémy pro těžbu - ASIC, dodávané}
\section{Software používaný k těžbě}
\section{Srovnání způsobů pro získávání kryptoměny}
\chapter{Průzkum způsobů těžby}
\section{Definice, výzkumné otázky}
\section{Na jakém vzorku}
\section{Vyhodnocení international, CZ}
\chapter{Průzkum operátorů sítě}
\section{Definice, výzkumné otázky}
\section{Na jakém vzorku}
\section{Vyhodnocení international, CZ}
2018-06-29 22:19:51 +02:00
2018-06-29 16:38:17 +02:00
\chapter{Mining malware}
\section{Prevence, detekce a recovery}
\subsection{Server část}
2018-07-04 16:04:00 +02:00
%kitty https://www.incapsula.com/blog/crypto-me0wing-attacks-kitty-cashes-in-on-monero.html
2018-06-29 16:38:17 +02:00
\subsection{Běžní uživatelé}
\chapter{Návrh bezpečného těžebního systému}
\section{Linux-based řešení}
Ansible, Centos 7
\section{Windows-based řešení}
Windows 10 ISO unattended install, Powershell scripty, stažení a instalace Stak XMR
2018-06-29 23:26:35 +02:00
\chapter{Plán}
\begin{figure}[H]
\center
\begin{tabular}{ll}
Měsíc & Task \\
1.7.2018 & Kryptoměna Monero; Používání Monera \\
1.8.2018 & Návrh výzkumu uživatelů;Průzkumu těžby;Operátorů \\
1.9.2018 & Sběr dat; Získávání Monera a zajištění chodu sítě \\
1.10.2018 & Vyhodnocení dat \\
1.11.2018 & Best practices pro usage a storage \\
1.12.2018 & Mining malware; Vytvoření těžebního systému \\
1.1.2019 & Cryptocore.cz jako výstup poznatků \\
1.2.2019 & Rezerva \\
1.3.2019 & Měsíc na odladění \\
1.4.2019 & Finální verze + tisk
\end{tabular}
\caption{Plán práce na diplomce}
\label{ssme-thesis-plan}
\end{figure}
2018-06-29 16:38:17 +02:00
\printbibliography[heading=bibintoc]
2018-07-04 16:04:00 +02:00
\appendix %% Start the appendices.
2018-07-10 23:21:47 +02:00
%\chapter{Zdroje k tabulce 2.2}
%dash https://bitcointalk.org/index.php?topic=1562109.0
%dash https://docs.dash.org/en/latest/introduction/information.html
2018-07-12 08:56:33 +02:00
%pivx https://github.com/PIVX-Project/PIVX
%pivx https://www.reddit.com/r/pivx/comments/7gjjyw/what_are_the_benefits_of_multisig_addresses/
%zcoin https://github.com/zcoinofficial/zcoin/wiki/Information-for-exchanges
%zcoin https://zcoin.io/zcoins-privacy-technology-compares-competition/
2018-06-27 21:49:31 +02:00
\end{document}