2016-06-10 16:48:50 +02:00
\documentclass { article}
\usepackage [a4paper, margin=2cm] { geometry}
\usepackage { amsmath}
2016-06-19 17:45:52 +02:00
\usepackage { amsfonts}
2016-06-10 16:48:50 +02:00
\begin { document}
2016-06-11 09:44:06 +02:00
\section { first price auction with tie breaking and private outcome (EC-Version)}
\subsection { Zero Knowledge Proofs}
2016-06-20 20:48:43 +02:00
\subsubsection { Proof 1: Knowledge of an ECDL}
2016-06-11 09:44:06 +02:00
2016-06-22 22:43:34 +02:00
Alice and Bob know $ V $ , $ G $ and $ q = |G| $ , but only Alice knows $ x $ , so that
$ V = xG $ .
2016-06-11 09:44:06 +02:00
\begin { enumerate}
2016-06-22 22:43:34 +02:00
\item Alice chooses $ z \bmod q $ at random and calculates $ A = zG $ .
\item Alice computes $ c = HASH ( G,V,A ) \bmod q $ .
\item Alice sends $ G, V, A $ and $ r = ( z + cx ) \bmod q $ to Bob.
\item Bob computes $ c $ as above and checks that $ rG = A + cV $ .
2016-06-11 09:44:06 +02:00
\end { enumerate}
2016-06-20 20:48:43 +02:00
\begin { tabular} { r l}
Prover only knowledge: & $ x $ \\
2016-06-22 22:43:34 +02:00
Common knowledge: & $ V, G $ \\
Proof: & $ r, A $
2016-06-20 20:48:43 +02:00
\end { tabular}
\subsubsection { Proof 2: Equality of two ECDL}
2016-06-11 09:44:06 +02:00
2016-06-22 22:43:34 +02:00
Alice and Bob know $ V $ , $ W $ , $ G _ 1 $ and $ G _ 2 $ , but only Alice knows $ x $ , so that
$ V = xG _ 1 $ and $ W = xG _ 2 $ .
2016-06-11 09:44:06 +02:00
\begin { enumerate}
2016-06-22 22:43:34 +02:00
\item Alice chooses $ z \bmod q $ at random and calculates $ A = zG _ 1 $ and $ B = zG _ 2 $ .
\item Alice computes $ c = HASH ( G _ 1 ,G _ 2 ,V,W,A,B ) \bmod q $ .
\item Alice sends $ V, W, G _ 1 , G _ 2 , A, B $ and $ r = ( z + cx ) \bmod q $ to Bob.
\item Bob computes $ c $ as above and checks that $ rG _ 1 = A + cV $ and $ rG _ 2 = B + cW $ .
2016-06-11 09:44:06 +02:00
\end { enumerate}
2016-06-20 20:48:43 +02:00
\begin { tabular} { r l}
Prover only knowledge: & $ x $ \\
2016-06-22 22:43:34 +02:00
Common knowledge: & $ V, W, G _ 1 , G _ 2 $ \\
Proof: & $ r, A, B $
2016-06-20 20:48:43 +02:00
\end { tabular}
\subsubsection { Proof 3: An encrypted value is one out of two values}
2016-06-11 09:44:06 +02:00
2016-06-22 22:43:34 +02:00
Alice proves that an El Gamal encrypted value $ ( \alpha , \beta ) = ( M + rY, rG ) $
either decrypts to $ 0 $ or to the fixed value $ G $ without revealing which is the
case, in other words, it is shown that $ M \in \{ 0 , G \} $ . \\
2016-06-12 15:35:05 +02:00
2016-06-22 22:43:34 +02:00
\noindent If $ M = 0 $ :
2016-06-12 15:35:05 +02:00
\begin { enumerate}
2016-06-22 22:43:34 +02:00
\item Alice chooses $ r _ 1 , d _ 1 , w \bmod q $ at random and calculates $ A _ 1 = r _ 1 G + d _ 1 \beta $ , $ B _ 1 = r _ 1 Y + d _ 1 ( \alpha - G ) $ , $ A _ 2 = wG $ and $ B _ 2 = wY $ .
\item Alice computes $ c = HASH ( G, \alpha , \beta ,A _ 1 ,B _ 1 ,A _ 2 ,B _ 2 ) \bmod q $ .
\item Alice chooses $ d _ 2 = c - d _ 1 \bmod q $ and $ r _ 2 = w - rd _ 2 \bmod q $ .
2016-06-12 15:35:05 +02:00
\end { enumerate}
2016-06-22 22:43:34 +02:00
\noindent If $ M = G $ :
2016-06-12 15:35:05 +02:00
\begin { enumerate}
2016-06-22 22:43:34 +02:00
\item Alice chooses $ r _ 2 , d _ 2 , w \bmod q $ at random and calculates $ A _ 1 = wG $ , $ B _ 1 = wY $ , $ A _ 2 = r _ 2 G + d _ 2 \beta $ and $ B _ 2 = r _ 2 Y + d _ 2 \alpha $ .
\item Alice computes $ c = HASH ( G, \alpha , \beta ,A _ 1 ,B _ 1 ,A _ 2 ,B _ 2 ) \bmod q $ .
\item Alice chooses $ d _ 1 = c - d _ 2 \bmod q $ and $ r _ 1 = w - rd _ 1 \bmod q $ .
2016-06-12 15:35:05 +02:00
\end { enumerate}
2016-06-22 22:43:34 +02:00
\noindent Then regardless of the value of $ M $ :
2016-06-12 15:35:05 +02:00
\begin { enumerate}
2016-06-22 22:43:34 +02:00
\item Alice sends $ G, ( \alpha , \beta ) , A _ 1 , B _ 1 , A _ 2 , B _ 2 , d _ 1 , d _ 2 , r _ 1 , r _ 2 $ to Bob.
\item Bob computes $ c $ as above and checks that $ c = d _ 1 + d _ 2 \bmod q $ , $ A _ 1 = r _ 1 G + d _ 1 \beta $ , $ B _ 1 = r _ 1 Y + d _ 1 ( \alpha - G ) $ , $ A _ 2 = r _ 2 G + d _ 2 \beta $ and $ B _ 2 = r _ 2 Y + d _ 2 \alpha $ .
2016-06-12 15:35:05 +02:00
\end { enumerate}
2016-06-16 00:08:49 +02:00
2016-06-20 20:48:43 +02:00
\begin { tabular} { r l}
Prover only knowledge: & $ r, x $ \\
Common knowledge: & $ \alpha , \beta $ \\
2016-06-22 22:43:34 +02:00
Proof: & $ A _ 1 , A _ 2 , B _ 1 , B _ 2 , d _ 1 , d _ 2 , r _ 1 , r _ 2 $
2016-06-20 20:48:43 +02:00
\end { tabular}
2016-06-16 00:08:49 +02:00
\subsection { Protocol}
2016-06-19 17:45:52 +02:00
Let $ n $ be the number of participating bidders/agents in the protocol and $ k $ be
2016-06-22 22:43:34 +02:00
the amount of possible valuations/prices for the sold good. Let $ G $ be the
base point of Ed25519 and $ q = ord ( G ) $ the order of it. $ 0 $ is the neutral point
2016-06-19 17:45:52 +02:00
for addition on Ed25519. $ a \in \left \{ 1 , 2 , \dots ,n \right \} $ is the index of the
agent executing the protocol, while $ i, h \in \left \{ 1 , 2 , \dots , n \right \} $ are
other agent indizes. $ j, b _ a \in \left \{ 1 , 2 , \dots ,k \right \} $ with $ b _ a $ denoting
the price $ p _ { b _ a } $ bidder $ a $ is willing to pay. $ \forall j: p _ j < p _ { j + 1 } $ .
2016-06-16 00:08:49 +02:00
\subsubsection { Generate public key}
\begin { enumerate}
2016-06-28 16:19:52 +02:00
\item Choose $ x _ { + a } \in \mathbb { Z } _ q $ and $ \forall i,j: m _ { ij } ^ { + a } , r _ { aj } \bmod q $ at random.
2016-06-22 22:43:34 +02:00
\item Publish $ Y _ { \times a } = { x _ { + a } } G $ along with Proof 1 of $ Y _ { \times a } $ 's ECDL.
\item Compute $ Y = \sum _ { i = 1 } ^ nY _ { \times i } $ .
2016-06-16 00:08:49 +02:00
\end { enumerate}
\subsubsection { Round 1: Encrypt bid}
2016-06-20 01:38:16 +02:00
The message has $ k $ parts, each consisting of $ 10 $ Points plus an additional $ 3 $
Points for the last proof. Therefore the message is $ 10 k * 32 + 3 * 32 = 320 k + 96 $
bytes large.
2016-06-16 00:08:49 +02:00
\begin { enumerate}
2016-06-22 22:43:34 +02:00
\item $ \forall j: $ Set $ B _ { aj } = \begin { cases } G & \mathrm { if } \quad j = b _ a \\ 0 & \mathrm { else } \end { cases } $ and publish $ \alpha _ { aj } = B _ { aj } + r _ { aj } Y $ and $ \beta _ { aj } = r _ { aj } G $ .
\item $ \forall j: $ Use Proof 3 to show that $ ( \alpha _ { aj } , \beta _ { aj } ) $ decrypts to either $ 0 $ or $ G $ .
\item Use Proof 2 to show that $ ECDL _ Y \left ( \left ( \sum _ { j = 1 } ^ k \alpha _ { aj } \right ) - G \right ) = ECDL _ G \left ( \sum _ { j = 1 } ^ k \beta _ { aj } \right ) $ .
2016-06-16 00:08:49 +02:00
\end { enumerate}
\subsubsection { Round 2: Compute outcome}
2016-06-20 01:38:16 +02:00
The message has $ nk $ parts, each consisting of $ 5 $ Points. Therefore the message
is $ 5 nk * 32 = 160 nk $ bytes large.
2016-06-20 20:48:43 +02:00
$ \forall i,j: $ Compute and publish \\ [2.0ex]
$ \gamma _ { ij } ^ { \times a } = m _ { ij } ^ { + a } \displaystyle \left ( \left ( \sum _ { h = 1 } ^ n \sum _ { d = j + 1 } ^ k \alpha _ { hd } \right ) + \left ( \sum _ { d = 1 } ^ { j - 1 } \alpha _ { id } \right ) + \left ( \sum _ { h = 1 } ^ { i - 1 } \alpha _ { hj } \right ) \right ) $ and \\ [2.0ex]
$ \delta _ { ij } ^ { \times a } = m _ { ij } ^ { + a } \displaystyle \left ( \left ( \sum _ { h = 1 } ^ n \sum _ { d = j + 1 } ^ k \beta _ { hd } \right ) + \left ( \sum _ { d = 1 } ^ { j - 1 } \beta _ { id } \right ) + \left ( \sum _ { h = 1 } ^ { i - 1 } \beta _ { hj } \right ) \right ) $ \\ [2.0ex]
with a corresponding Proof 2 for $ ECDL ( \gamma _ { ij } ^ { \times a } ) = ECDL ( \delta _ { ij } ^ { \times a } ) $ .
2016-06-16 00:08:49 +02:00
\subsubsection { Round 3: Decrypt outcome}
2016-06-20 20:48:43 +02:00
$ \forall i,j: $ Send $ \varphi _ { ij } ^ { \times a } =
2016-06-28 16:51:55 +02:00
x_ { +a} \left (\sum _ { h=1} ^ n\delta _ { ij} ^ { \times h} \right )$ with a Proof 2 showing
2016-06-22 22:43:34 +02:00
$ ECDL ( \varphi _ { ij } ^ { \times a } ) = ECDL ( Y _ { \times a } ) $ to the seller who publishes
2016-06-20 20:48:43 +02:00
all $ \varphi _ { ij } ^ { \times h } $ and the corresponding proofs of correctness for
each $ i, j $ and $ h \neq i $ after having received all of them.
2016-06-16 00:08:49 +02:00
\subsubsection { Epilogue: Outcome determination}
\begin { enumerate}
2016-06-22 22:43:34 +02:00
\item $ \forall j: $ Compute $ V _ { aj } = \sum _ { i = 1 } ^ n \gamma _ { aj } ^ { \times i } - \sum _ { i = 1 } ^ n \varphi _ { aj } ^ { \times i } $ .
2016-06-28 17:26:33 +02:00
\item If $ \exists w: V _ { aw } = 0 $ , then bidder $ a $ is the winner of the auction. $ p _ w $ is the selling price.
2016-06-16 00:08:49 +02:00
\end { enumerate}
2016-06-11 09:44:06 +02:00
2016-06-10 16:48:50 +02:00
\section { first price auction with tie breaking and private outcome}
\begin { align}
v_ { aj} & = \frac { \prod _ { i=1} ^ n \gamma _ { aj} ^ { \times i} } { \prod _ { i=1} ^ n \varphi _ { aj} ^ { \times i} } \\ [2.0ex]
& = \frac { \prod _ { i=1} ^ n \gamma _ { aj} ^ { \times i} } { \prod _ { i=1} ^ n \left (\prod _ { h=1} ^ n \delta _ { aj} ^ { \times h} \right )^ { x_ { +i} } } \\ [2.0ex]
& = \frac { \prod _ { i=1} ^ n \left (\left (\prod _ { h=1} ^ n \prod _ { d=j+1} ^ k \alpha _ { hd} \right )\cdot \left (\prod _ { d=1} ^ { j-1} \alpha _ { ad} \right )\cdot \left (\prod _ { h=1} ^ { a-1} \alpha _ { hj} \right )\right )^ { m_ { aj} ^ { +i} } } { \prod _ { i=1} ^ n \left (\prod _ { h=1} ^ n \left (\left (\prod _ { s=1} ^ n \prod _ { d=j+1} ^ k \beta _ { sd} \right )\cdot \left (\prod _ { d=1} ^ { j-1} \beta _ { ad} \right )\cdot \left (\prod _ { s=1} ^ { a-1} \beta _ { sj} \right )\right )^ { m_ { aj} ^ { +h} } \right )^ { x_ { +i} } } \\ [2.0ex]
& = \frac { \prod _ { i=1} ^ n \left (\left (\prod _ { h=1} ^ n \prod _ { d=j+1} ^ k b_ { hd} y^ { r_ { hd} } \right )\cdot \left (\prod _ { d=1} ^ { j-1} b_ { ad} y^ { r_ { ad} } \right )\cdot \left (\prod _ { h=1} ^ { a-1} b_ { hj} y^ { r_ { hj} } \right )\right )^ { m_ { aj} ^ { +i} } } { \prod _ { i=1} ^ n \left (\prod _ { h=1} ^ n \left (\left (\prod _ { s=1} ^ n \prod _ { d=j+1} ^ k g^ { r_ { sd} } \right )\cdot \left (\prod _ { d=1} ^ { j-1} g^ { r_ { ad} } \right )\cdot \left (\prod _ { s=1} ^ { a-1} g^ { r_ { sj} } \right )\right )^ { m_ { aj} ^ { +h} } \right )^ { x_ { +i} } } \\ [2.0ex]
& = \frac { \prod _ { i=1} ^ n \left (\left (\prod _ { h=1} ^ n \prod _ { d=j+1} ^ k b_ { hd} \left (\prod _ { t=1} ^ n g^ { x_ { +t} } \right )^ { r_ { hd} } \right )\cdot \left (\prod _ { d=1} ^ { j-1} b_ { ad} \left (\prod _ { t=1} ^ n g^ { x_ { +t} } \right )^ { r_ { ad} } \right )\cdot \left (\prod _ { h=1} ^ { a-1} b_ { hj} \left (\prod _ { t=1} ^ n g^ { x_ { +t} } \right )^ { r_ { hj} } \right )\right )^ { m_ { aj} ^ { +i} } } { \prod _ { i=1} ^ n \left (\prod _ { h=1} ^ n \left (\left (\prod _ { s=1} ^ n \prod _ { d=j+1} ^ k g^ { r_ { sd} } \right )\cdot \left (\prod _ { d=1} ^ { j-1} g^ { r_ { ad} } \right )\cdot \left (\prod _ { s=1} ^ { a-1} g^ { r_ { sj} } \right )\right )^ { m_ { aj} ^ { +h} } \right )^ { x_ { +i} } }
\end { align}
\subsection { outcome function}
\begin { align}
v_ a & = \left ((2U-I)\sum _ { i=1} ^ n b_ i-(2M+1)\mathbf { e} +(2M+2)Lb_ a\right )R_ a^ * \\ [2.0ex]
v_ { aj} & = \left (\sum _ { i=1} ^ n \left (\sum _ { d=j} ^ k b_ { id} + \sum _ { d=j+1} ^ k b_ { id} \right )-(2M+1)+(2M+2)\sum _ { d=1} ^ j b_ { ad} \right )R_ a^ * \\ [2.0ex]
& \text { switch from additive finite group to multiplicative finite group} \\ [2.0ex]
v_ { aj} & = \left (\frac { \displaystyle \prod _ { i=1} ^ n \left (\prod _ { d=j} ^ k b_ { id} \cdot \prod _ { d=j+1} ^ k b_ { id} \right ) \cdot \left (\prod _ { d=1} ^ j b_ { ad} \right )^ { 2M+2} } { (2M+1)g} \right )R_ a^ * \\ [2.0ex]
\end { align}
\subsection { fixes to step 5 in (M+1)st Price auction from the 2003 paper pages 9 an 10}
\begin { align}
\gamma _ { ij} = & \frac { \prod _ { h=1} ^ n \prod _ { d=j} ^ k (\alpha _ { hd} \alpha _ { h,d+1} )\left (\prod _ { d=1} ^ j \alpha _ { id} \right )^ { 2M+2} } { (2M+1)Y} \\
\text { changed to} & \frac { \prod _ { h=1} ^ n \left (\prod _ { d=j} ^ k \alpha _ { hd} \cdot \prod _ { d=j+1} ^ k \alpha _ { hd} \right )\left (\prod _ { d=1} ^ j \alpha _ { id} \right )^ { 2M+2} } { Y^ { 2M+1} } \\ [2.0ex]
\delta _ { ij} = & \prod _ { h=1} ^ n \prod _ { d=j} ^ k (\beta _ { hd} \beta _ { h,d+1} )\left (\prod _ { d=1} ^ j \beta _ { id} \right )^ { 2M+2} \\
\text { changed to} & \prod _ { h=1} ^ n \left (\prod _ { d=j} ^ k \beta _ { hd} \prod _ { d=j+1} ^ k \beta _ { hd} \right )\left (\prod _ { d=1} ^ j \beta _ { id} \right )^ { 2M+2}
\end { align}
\end { document}