diff options
| author | Dennis Brentjes <d.brentjes@gmail.com> | 2018-06-10 14:24:29 +0200 |
|---|---|---|
| committer | Dennis Brentjes <d.brentjes@gmail.com> | 2018-06-10 15:12:01 +0200 |
| commit | e8f1b85d7441a09fa30f27c720e5dff4f2b1aa71 (patch) | |
| tree | 766cb6124ad82d6c446b96bc51fe824a12ce401f /libcmix/cmix.h | |
| parent | 4ae87e3ce2dd1ff326af38561740bd62315b51ba (diff) | |
| download | cmix-e8f1b85d7441a09fa30f27c720e5dff4f2b1aa71.tar.gz cmix-e8f1b85d7441a09fa30f27c720e5dff4f2b1aa71.tar.bz2 cmix-e8f1b85d7441a09fa30f27c720e5dff4f2b1aa71.zip | |
Diffstat (limited to 'libcmix/cmix.h')
| -rw-r--r-- | libcmix/cmix.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libcmix/cmix.h b/libcmix/cmix.h index d35b23f..028089c 100644 --- a/libcmix/cmix.h +++ b/libcmix/cmix.h @@ -47,12 +47,12 @@ struct CMixContext { GroupElement network_key; ///< The network key (called d in the paper). size_t nr_mixes; ///< The amount of mixes to do simultanuous size_t nr_participants; ///< The number of mix participants. - GroupElement** r; ///< An array of random values (R in the paper). - GroupElement** s; ///< An array of random values (S in the paper). - unsigned int** permutation; ///< a permutation (Pi in the paper (called Pi in source)). - GroupElement** decryption_shares; ///< The decryption share for each slot. - GroupElement** EPiRS; ///< stores the current Pi(R) * S for this node. Only usfull for the last node. - GroupElement** PiMRS; ///< stores the current Pi(M * R) * S for this node. Only usefull for the last node. + GroupElement* r; ///< An array of random values (R in the paper). + GroupElement* s; ///< An array of random values (S in the paper). + unsigned int* permutation; ///< a permutation (Pi in the paper (called Pi in source)). + GroupElement* decryption_shares; ///< The decryption share for each slot. + GroupElement* EPiRS; ///< stores the current Pi(R) * S for this node. Only usfull for the last node. + GroupElement* PiMRS; ///< stores the current Pi(M * R) * S for this node. Only usefull for the last node. }; /*! |
