diff options
author | Markus Teich <markus.teich@stusta.mhn.de> | 2016-09-29 10:22:00 +0200 |
---|---|---|
committer | Markus Teich <markus.teich@stusta.mhn.de> | 2016-09-29 10:22:00 +0200 |
commit | 656aa465530452eed934bc430b5ecbaa72a90a10 (patch) | |
tree | 3f228145b2d2fc807b066c3d801a72510ab960f9 | |
parent | e52b751b87ecf4feaa1c3af323fc753fba5f87b3 (diff) |
Revert "union"
This reverts commit 20714489cf94f48a5ca7a9d58c44544d6811ca11.
-rw-r--r-- | internals.h | 31 |
1 files changed, 12 insertions, 19 deletions
diff --git a/internals.h b/internals.h index 2568dbc..2b88b6f 100644 --- a/internals.h +++ b/internals.h @@ -147,25 +147,18 @@ struct BRANDT_Auction { gcry_mpi_point_t **alpha; /** alphas, size: n*k */ gcry_mpi_point_t **beta; /** betas, size: n*k */ - union { - - struct { - gcry_mpi_point_t **gamma2; /** gamma2, for public outcome, size: n*k */ - gcry_mpi_point_t **delta2; /** delta2, for public outcome, size: n*k */ - gcry_mpi_point_t **phi2; /** phi2, for public outcome, size: n*k */ - /** proofs for the correctnes of the phi values, size: n*k */ - struct proof_2dle ***phiproofs2; - }; - - struct { - gcry_mpi_point_t ***gamma3; /** gamma3, for private outcome, size: n*n*k */ - gcry_mpi_point_t ***delta3; /** delta3, for private outcome, size: n*n*k */ - gcry_mpi_point_t ***phi3; /** phi3, for private outcome, size: n*n*k */ - - /** proofs for the correctnes of the phi values, size: n*n*k */ - struct proof_2dle ***phiproofs3; - }; - }; + gcry_mpi_point_t **gamma2; /** gamma2, for public outcome, size: n*k */ + gcry_mpi_point_t ***gamma3; /** gamma3, for private outcome, size: n*n*k */ + gcry_mpi_point_t **delta2; /** delta2, for public outcome, size: n*k */ + gcry_mpi_point_t ***delta3; /** delta3, for private outcome, size: n*n*k */ + 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, 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 */ gcry_mpi_point_t *tmpb1; /** used for temporary storage, size: k */ |