aboutsummaryrefslogtreecommitdiff
path: root/internals.h
diff options
context:
space:
mode:
authorMarkus Teich <markus.teich@stusta.mhn.de>2016-09-11 20:52:11 +0200
committerMarkus Teich <markus.teich@stusta.mhn.de>2016-09-11 20:52:21 +0200
commit658cb968460233a04e77d37558275a894e9d345c (patch)
tree978e0b9e753003dd208039dd28a1323e5b4ec594 /internals.h
parentde5ea20b5557870119332842ce3a31d608e0e66c (diff)
public firstprice auction working in test_brandt
Diffstat (limited to 'internals.h')
-rw-r--r--internals.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/internals.h b/internals.h
index 5290110..2b88b6f 100644
--- a/internals.h
+++ b/internals.h
@@ -154,8 +154,10 @@ struct BRANDT_Auction {
gcry_mpi_point_t **phi2; /** phi2, for public outcome, size: n*k */
gcry_mpi_point_t ***phi3; /** phi3, for private outcome, size: n*n*k */
- /** proofs for the correctnes of the phi values for private outcomes,
- * size: n*n*k */
+ /** proofs for the correctnes of the phi values, size: n*k */
+ struct proof_2dle ***phiproofs2;
+
+ /** proofs for the correctnes of the phi values, size: n*n*k */
struct proof_2dle ***phiproofs3;
gcry_mpi_point_t *tmpa1; /** used for temporary storage, size: k */