1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567 |
- #include <iostream>
- #include "server.hpp"
- /********************
- * PUBLIC FUNCTIONS *
- ********************/
- /*
- * CONSTRUCTORS
- */
- // Used to generate the first server; instantiates BGN for the first time
- PrsonaServer::PrsonaServer(size_t numServers)
- : numServers(numServers)
- {
- currentSeed.set_random();
- }
- // Used for all other servers, so they have the same BGN parameters
- PrsonaServer::PrsonaServer(size_t numServers, const BGN& otherBgn)
- : numServers(numServers), bgnSystem(otherBgn)
- {
- currentSeed.set_random();
- }
- /*
- * BASIC PUBLIC SYSTEM INFO GETTERS
- */
- BGNPublicKey PrsonaServer::get_bgn_public_key() const
- {
- return bgnSystem.get_public_key();
- }
- size_t PrsonaServer::get_num_clients() const
- {
- return currentPseudonyms.size();
- }
- size_t PrsonaServer::get_num_servers() const
- {
- return numServers;
- }
- /*
- * FRESH GENERATOR CALCULATION
- */
- // To calculate the current epoch's generator, start from the base generator,
- // then have every server call this function on it iteratively (in any order).
- Curvepoint PrsonaServer::add_curr_seed_to_generator(
- std::vector<Proof>& pi,
- const Curvepoint& currGenerator) const
- {
- pi.push_back(add_to_generator_proof(currGenerator, currentSeed));
- return currGenerator * currentSeed;
- }
- // To calculate the next epoch's generator, start from the base generator,
- // then have every server call this function on it iteratively (in any order).
- Curvepoint PrsonaServer::add_next_seed_to_generator(
- std::vector<Proof>& pi,
- const Curvepoint& currGenerator) const
- {
- pi.push_back(add_to_generator_proof(currGenerator, nextSeed));
- return currGenerator * nextSeed;
- }
- /*
- * ENCRYPTED DATA GETTERS
- */
- /* Call this in order to get the current encrypted votes cast by a given user
- * (who is identified by their short term public key).
- * In practice, this is intended for clients,
- * who need to know their current votes in order to rerandomize them. */
- std::vector<CurveBipoint> PrsonaServer::get_current_votes_by(
- Proof& pi, const Curvepoint& shortTermPublicKey) const
- {
- std::vector<CurveBipoint> retval;
- size_t voteSubmitter = binary_search(shortTermPublicKey);
- retval = voteMatrix[voteSubmitter];
- pi = generate_valid_vote_row_proof(retval);
- return retval;
- }
- std::vector<std::vector<CurveBipoint>> PrsonaServer::get_all_current_votes(
- Proof& pi) const
- {
- pi = generate_valid_vote_matrix_proof(voteMatrix);
- return voteMatrix;
- }
- /* Call this in order to get the current encrypted tally of a given user
- * (who is identified by their short term public key).
- * In practice, this is intended for clients, so that the servers vouch
- * for their ciphertexts being valid as part of their reputation proofs. */
- EGCiphertext PrsonaServer::get_current_user_encrypted_tally(
- Proof& pi, const Curvepoint& shortTermPublicKey) const
- {
- EGCiphertext retval;
- size_t tallyOwner = binary_search(shortTermPublicKey);
- retval = currentUserEncryptedTallies[tallyOwner];
-
- pi = generate_valid_user_tally_proof(retval);
- return retval;
- }
- TwistBipoint PrsonaServer::get_current_server_encrypted_tally(
- Proof& pi, const Curvepoint& shortTermPublicKey) const
- {
- TwistBipoint retval;
- size_t tallyOwner = binary_search(shortTermPublicKey);
- retval = previousVoteTallies[tallyOwner];
-
- pi = generate_valid_server_tally_proof(retval);
- return retval;
- }
- std::vector<Curvepoint> PrsonaServer::get_current_pseudonyms(Proof& pi) const
- {
- pi = generate_valid_pseudonyms_proof(currentPseudonyms);
- return currentPseudonyms;
- }
- /*
- * PROOF COMMITMENT GETTERS
- */
- Proof PrsonaServer::get_vote_row_commitment(const Curvepoint& request) const
- {
- size_t requestID = binary_search(request);
- return generate_valid_vote_row_proof(voteMatrix[requestID]);
- }
- Proof PrsonaServer::get_vote_matrix_commitment() const
- {
- return generate_valid_vote_matrix_proof(voteMatrix);
- }
- Proof PrsonaServer::get_user_tally_commitment(const Curvepoint& request) const
- {
- size_t requestID = binary_search(request);
- return generate_valid_user_tally_proof(currentUserEncryptedTallies[requestID]);
- }
- Proof PrsonaServer::get_server_tally_commitment(const Curvepoint& request) const
- {
- size_t requestID = binary_search(request);
- return generate_valid_server_tally_proof(previousVoteTallies[requestID]);
- }
- Proof PrsonaServer::get_pseudonyms_commitment() const
- {
- return generate_valid_pseudonyms_proof(currentPseudonyms);
- }
- /*
- * CLIENT INTERACTIONS
- */
- /* Add a new client (who is identified only by their short term public key)
- * One server will do this, then ask all other servers to import their
- * (proven) exported data. */
- void PrsonaServer::add_new_client(
- std::vector<Proof>& proofOfValidAddition,
- const Proof& proofOfValidKey,
- const Curvepoint& shortTermPublicKey)
- {
- if (!verify_ownership_proof(
- proofOfValidKey, currentFreshGenerator, shortTermPublicKey))
- {
- std::cerr << "Could not verify proof of valid key." << std::endl;
- return;
- }
- currentPseudonyms.push_back(shortTermPublicKey);
- // The first epoch's score for a new user will be low,
- // but will typically converge on an average score quickly
- Scalar tallySeed;
- TwistBipoint encryptedDefaultTally =
- bgnSystem.get_public_key().twistEncrypt(tallySeed, DEFAULT_TALLY);
- previousVoteTallies.push_back(encryptedDefaultTally);
- Scalar seedForUserTally;
- seedForUserTally.set_random();
- EGCiphertext newUserEncryptedTally;
- newUserEncryptedTally.mask = shortTermPublicKey * seedForUserTally;
- newUserEncryptedTally.encryptedMessage =
- currentFreshGenerator * seedForUserTally +
- elGamalBlindGenerator * DEFAULT_TALLY;
- currentUserEncryptedTallies.push_back(newUserEncryptedTally);
- // Users are defaulted to casting a neutral vote for others.
- CurveBipoint encryptedDefaultVote, encryptedSelfVote;
- Scalar currDefaultSeed, currSelfSeed;
- encryptedDefaultVote =
- bgnSystem.get_public_key().curveEncrypt(currDefaultSeed, DEFAULT_VOTE);
- encryptedSelfVote =
- bgnSystem.get_public_key().curveEncrypt(currSelfSeed, Scalar(MAX_ALLOWED_VOTE));
- std::vector<CurveBipoint> newRow;
- std::vector<Scalar> userVoteSeeds;
- std::vector<Scalar> otherVoteSeeds;
- for (size_t i = 0; i < voteMatrix.size(); i++)
- {
- Scalar addedSeed;
- encryptedDefaultVote = bgnSystem.get_public_key().rerandomize(addedSeed, encryptedDefaultVote);
- currDefaultSeed = currDefaultSeed + addedSeed;
- otherVoteSeeds.push_back(Scalar());
- otherVoteSeeds[i] = currDefaultSeed;
-
- voteMatrix[i].push_back(encryptedDefaultVote);
- encryptedDefaultVote = bgnSystem.get_public_key().rerandomize(addedSeed, encryptedDefaultVote);
- currDefaultSeed = currDefaultSeed + addedSeed;
- userVoteSeeds.push_back(Scalar());
- userVoteSeeds[i] = currDefaultSeed;
- newRow.push_back(encryptedDefaultVote);
- }
-
- // Because we are adding the new user to the end (and then sorting it),
- // this last element (bottom right corner) is always the self vote.
- userVoteSeeds.push_back(Scalar());
- userVoteSeeds[newRow.size()] = currSelfSeed;
-
- otherVoteSeeds.push_back(Scalar());
- otherVoteSeeds[newRow.size()] = currSelfSeed;
- newRow.push_back(encryptedSelfVote);
- voteMatrix.push_back(newRow);
- std::vector<size_t> sortOrder = order_data();
- std::vector<Scalar> newUserVoteSeeds;
- std::vector<Scalar> newOtherVoteSeeds;
- for (size_t i = 0; i < sortOrder.size(); i++)
- {
- newUserVoteSeeds.push_back(userVoteSeeds[sortOrder[i]]);
- newOtherVoteSeeds.push_back(otherVoteSeeds[sortOrder[i]]);
- }
- proofOfValidAddition = generate_proof_of_added_user(
- tallySeed,
- seedForUserTally,
- newUserVoteSeeds,
- newOtherVoteSeeds);
- }
- // Receive a new vote row from a user (identified by short term public key).
- bool PrsonaServer::receive_vote(
- const std::vector<Proof>& pi,
- const std::vector<CurveBipoint>& newVotes,
- const Curvepoint& shortTermPublicKey)
- {
- size_t voteSubmitter = binary_search(shortTermPublicKey);
- std::vector<CurveBipoint> oldVotes = voteMatrix[voteSubmitter];
- if (!verify_vote_proof(pi, oldVotes, newVotes, shortTermPublicKey))
- return false;
- voteMatrix[voteSubmitter] = newVotes;
- return true;
- }
- /*********************
- * PRIVATE FUNCTIONS *
- *********************/
- /*
- * CONSTRUCTOR HELPERS
- */
- const BGN& PrsonaServer::get_bgn_details() const
- {
- return bgnSystem;
- }
- bool PrsonaServer::initialize_fresh_generator(
- const std::vector<Proof>& pi,
- const Curvepoint& firstGenerator)
- {
- if (!verify_generator_proof(pi, firstGenerator, numServers))
- {
- std::cerr << "Could not verify generator proof, aborting." << std::endl;
- return false;
- }
- currentFreshGenerator = firstGenerator;
- return true;
- }
- // To calculate the blind generator for ElGamal, start from the base generator,
- // then have every server call this function on it iteratively (in any order).
- Curvepoint PrsonaServer::add_rand_seed_to_generator(
- std::vector<Proof>& pi,
- const Curvepoint& currGenerator) const
- {
- Scalar lambda;
- lambda.set_random();
- pi.push_back(add_to_generator_proof(currGenerator, lambda));
- return currGenerator * lambda;
- }
- bool PrsonaServer::set_EG_blind_generator(
- const std::vector<Proof>& pi,
- const Curvepoint& currGenerator)
- {
- return PrsonaBase::set_EG_blind_generator(pi, currGenerator, numServers);
- }
- /*
- * SCORE TALLYING
- */
- /* Calculate scores homomorphically (as an individual server would normally)
- * and then decrypt them (which the servers would normally work together to do).
- *
- * Note that since these calculations are just for us, we don't need to do any
- * expensive rerandomizations of intermediate values. */
- std::vector<Scalar> PrsonaServer::tally_scores()
- {
- std::vector<Quadripoint> BGNEncryptedTallies;
- std::vector<Scalar> decryptedTallies;
- for (size_t i = 0; i < voteMatrix.size(); i++)
- {
- std::vector<Quadripoint> weightedVotes;
- // ZIP
- for (size_t j = 0; j < previousVoteTallies.size(); j++)
- {
- Quadripoint curr =
- bgnSystem.homomorphic_multiplication_no_rerandomize(
- voteMatrix[j][i], previousVoteTallies[j]);
- weightedVotes.push_back(curr);
- }
- // FOLDL
- Quadripoint currEncryptedTally = weightedVotes[0];
- for (size_t j = 1; j < weightedVotes.size(); j++)
- {
- currEncryptedTally =
- bgnSystem.homomorphic_addition_no_rerandomize(
- currEncryptedTally, weightedVotes[j]);
- }
- // DECRYPT
- decryptedTallies.push_back(bgnSystem.decrypt(currEncryptedTally));
- }
- return decryptedTallies;
- }
- /* Calculate what the maximum possible score this round was (that is,
- * given the current user weights, what was the highest possible score?).
- *
- * As with individual scores, this also does the decryption that servers
- * would ordinarily work together to form. */
- Scalar PrsonaServer::get_max_possible_score()
- {
- // FOLDL
- TwistBipoint currEncryptedVal = previousVoteTallies[0];
- for (size_t i = 1; i < previousVoteTallies.size(); i++)
- {
- currEncryptedVal =
- bgnSystem.homomorphic_addition_no_rerandomize(
- currEncryptedVal, previousVoteTallies[i]);
- }
- // DECRYPT
- Scalar retval = bgnSystem.decrypt(currEncryptedVal);
- return retval;
- }
- /*
- * EPOCH ROUNDS
- */
- // The first round, going from A_0 to A_0.5
- void PrsonaServer::build_up_midway_pseudonyms(
- std::vector<std::vector<std::vector<Proof>>>& pi,
- std::vector<std::vector<std::vector<Curvepoint>>>& permutationCommits,
- std::vector<std::vector<std::vector<Curvepoint>>>& freshPseudonymCommits,
- std::vector<std::vector<std::vector<Curvepoint>>>& freshPseudonymPowerCommits,
- std::vector<std::vector<std::vector<Curvepoint>>>& freshPseudonymSeedCommits,
- std::vector<std::vector<std::vector<TwistBipoint>>>& serverTallyCommits,
- std::vector<std::vector<std::vector<std::vector<std::vector<CurveBipoint>>>>>& voteMatrixCommits,
- Curvepoint& nextGenerator)
- {
- nextSeed.set_random();
- std::vector<std::vector<Curvepoint>> currPermutationCommits;
- std::vector<std::vector<Curvepoint>> currFreshPseudonymCommits;
- std::vector<std::vector<Curvepoint>> currFreshPseudonymPowerCommits;
- std::vector<std::vector<Curvepoint>> currFreshPseudonymSeedCommits;
- std::vector<std::vector<TwistBipoint>> currServerTallyCommits;
- std::vector<std::vector<std::vector<std::vector<CurveBipoint>>>> currVoteMatrixCommits;
- std::vector<std::vector<std::vector<Curvepoint>>> currUserTallyCommits;
- std::vector<std::vector<Curvepoint>> currUserTallyMaskPowerCommits;
- std::vector<std::vector<Curvepoint>> currUserTallyMaskSeedCommits;
- pi.push_back(epoch_calculations(
- currPermutationCommits,
- currFreshPseudonymCommits,
- currFreshPseudonymPowerCommits,
- currFreshPseudonymSeedCommits,
- currServerTallyCommits,
- currVoteMatrixCommits,
- currUserTallyCommits,
- currUserTallyMaskPowerCommits,
- currUserTallyMaskSeedCommits,
- nextSeed,
- false));
- permutationCommits.push_back(currPermutationCommits);
- freshPseudonymCommits.push_back(currFreshPseudonymCommits);
- freshPseudonymPowerCommits.push_back(currFreshPseudonymPowerCommits);
- freshPseudonymSeedCommits.push_back(currFreshPseudonymSeedCommits);
- serverTallyCommits.push_back(currServerTallyCommits);
- voteMatrixCommits.push_back(currVoteMatrixCommits);
- pi[0][0].push_back(
- add_to_generator_proof(nextGenerator, nextSeed));
- nextGenerator = nextGenerator * nextSeed;
- }
- // In between these rounds, scores are tallied, decrypted,
- // and encrypted to fresh user pseudonyms (possible through weird math)
- // The second round, going from A_0.5 to A_1
- void PrsonaServer::break_down_midway_pseudonyms(
- std::vector<Proof>& generatorProof,
- std::vector<std::vector<std::vector<Proof>>>& pi,
- std::vector<std::vector<std::vector<Curvepoint>>>& permutationCommits,
- std::vector<std::vector<std::vector<Curvepoint>>>& freshPseudonymCommits,
- std::vector<std::vector<std::vector<Curvepoint>>>& freshPseudonymPowerCommits,
- std::vector<std::vector<std::vector<Curvepoint>>>& freshPseudonymSeedCommits,
- std::vector<std::vector<std::vector<TwistBipoint>>>& serverTallyCommits,
- std::vector<std::vector<std::vector<std::vector<std::vector<CurveBipoint>>>>>& voteMatrixCommits,
- std::vector<std::vector<std::vector<std::vector<Curvepoint>>>>& userTallyCommits,
- std::vector<std::vector<std::vector<Curvepoint>>>& userTallyMaskPowerCommits,
- std::vector<std::vector<std::vector<Curvepoint>>>& userTallyMaskSeedCommits,
- const Curvepoint& nextGenerator)
- {
- if (!initialize_fresh_generator(generatorProof, nextGenerator))
- {
- std::cerr << "New fresh generator could not be verified." << std::endl;
- return;
- }
- Scalar inverseSeed = currentSeed.curveMultInverse();
- std::vector<std::vector<Curvepoint>> currPermutationCommits;
- std::vector<std::vector<Curvepoint>> currFreshPseudonymCommits;
- std::vector<std::vector<Curvepoint>> currFreshPseudonymPowerCommits;
- std::vector<std::vector<Curvepoint>> currFreshPseudonymSeedCommits;
- std::vector<std::vector<TwistBipoint>> currServerTallyCommits;
- std::vector<std::vector<std::vector<std::vector<CurveBipoint>>>> currVoteMatrixCommits;
- std::vector<std::vector<std::vector<Curvepoint>>> currUserTallyCommits;
- std::vector<std::vector<Curvepoint>> currUserTallyMaskPowerCommits;
- std::vector<std::vector<Curvepoint>> currUserTallyMaskSeedCommits;
- pi.push_back(epoch_calculations(
- currPermutationCommits,
- currFreshPseudonymCommits,
- currFreshPseudonymPowerCommits,
- currFreshPseudonymSeedCommits,
- currServerTallyCommits,
- currVoteMatrixCommits,
- currUserTallyCommits,
- currUserTallyMaskPowerCommits,
- currUserTallyMaskSeedCommits,
- inverseSeed,
- true));
- permutationCommits.push_back(currPermutationCommits);
- freshPseudonymCommits.push_back(currFreshPseudonymCommits);
- freshPseudonymPowerCommits.push_back(currFreshPseudonymPowerCommits);
- freshPseudonymSeedCommits.push_back(currFreshPseudonymSeedCommits);
- serverTallyCommits.push_back(currServerTallyCommits);
- voteMatrixCommits.push_back(currVoteMatrixCommits);
- userTallyCommits.push_back(currUserTallyCommits);
- userTallyMaskPowerCommits.push_back(currUserTallyMaskPowerCommits);
- userTallyMaskSeedCommits.push_back(currUserTallyMaskSeedCommits);
- currentSeed = nextSeed;
- }
- /*
- * EPOCH HELPERS
- */
- std::vector<std::vector<Proof>> PrsonaServer::epoch_calculations(
- std::vector<std::vector<Curvepoint>>& permutationCommits,
- std::vector<std::vector<Curvepoint>>& freshPseudonymCommits,
- std::vector<std::vector<Curvepoint>>& freshPseudonymPowerCommits,
- std::vector<std::vector<Curvepoint>>& freshPseudonymSeedCommits,
- std::vector<std::vector<TwistBipoint>>& serverTallyCommits,
- std::vector<std::vector<std::vector<std::vector<CurveBipoint>>>>& voteMatrixCommits,
- std::vector<std::vector<std::vector<Curvepoint>>>& userTallyCommits,
- std::vector<std::vector<Curvepoint>> & userTallyMaskPowerCommits,
- std::vector<std::vector<Curvepoint>> & userTallyMaskSeedCommits,
- const Scalar& power,
- bool doUserTallies)
- {
- std::vector<std::vector<Proof>> retval;
- std::vector<Curvepoint> nextPseudonyms;
- for (size_t i = 0; i < currentPseudonyms.size(); i++)
- nextPseudonyms.push_back(currentPseudonyms[i] * power);
- std::vector<size_t> order = sort_data(nextPseudonyms);
- for (size_t i = 0; i < currentPseudonyms.size(); i++)
- nextPseudonyms[i] = currentPseudonyms[order[i]] * power;
- // std::cout << "Generating permutation matrix." << std::endl;
- std::vector<std::vector<Scalar>> permutations =
- generate_permutation_matrix(power);
- // std::cout << "Generating permutation commitment matrix." << std::endl;
- std::vector<std::vector<Scalar>> permutationSeeds;
- permutationCommits.clear();
- permutationCommits =
- generate_commitment_matrix(permutations, permutationSeeds);
- // std::cout << "Generating permutation proof." << std::endl;
- retval.push_back(generate_valid_permutation_proof(
- permutations, permutationSeeds, permutationCommits));
- // std::cout << "Generating pseudonym matrix." << std::endl;
- std::vector<std::vector<Scalar>> freshPseudonymSeeds;
- freshPseudonymSeedCommits.clear();
- freshPseudonymPowerCommits.clear();
- freshPseudonymCommits =
- generate_pseudonym_matrix(
- permutations,
- power,
- freshPseudonymSeeds,
- freshPseudonymPowerCommits,
- freshPseudonymSeedCommits);
- // for (size_t i = 0; i < freshPseudonymCommits.size(); i++)
- // {
- // Curvepoint sum = freshPseudonymCommits[i][0];
- // for (size_t j = 1; j < freshPseudonymCommits[i].size(); j++)
- // sum = sum + freshPseudonymCommits[i][j];
- // std::cout << "Fresh pseudonym commit row " << i + 1 << " of " << permutationCommits.size()
- // << (sum == nextPseudonyms[i] ? ": PASS" : ": FAIL") << std::endl;
- // }
- // std::cout << (pseudonyms_sorted(nextPseudonyms) ? "PASS" : "FAIL") << std::endl;
- // std::cout << "Generating pseudonym proof." << std::endl;
- retval.push_back(
- generate_proof_of_reordering_plus_power(
- permutations,
- power,
- permutationSeeds,
- freshPseudonymSeeds,
- currentPseudonyms,
- permutationCommits,
- freshPseudonymCommits,
- freshPseudonymPowerCommits,
- freshPseudonymSeedCommits));
- // std::cout << "Generating server tally matrix." << std::endl;
- std::vector<std::vector<Scalar>> serverTallySeeds;
- serverTallyCommits.clear();
- serverTallyCommits =
- generate_server_tally_matrix(
- permutations,
- serverTallySeeds);
- // std::cout << "Generating server tally proof." << std::endl;
- retval.push_back(
- generate_proof_of_reordering<TwistBipoint>(
- permutations,
- permutationSeeds,
- serverTallySeeds,
- previousVoteTallies,
- permutationCommits,
- serverTallyCommits,
- bgnSystem.get_public_key().get_bipoint_twistgen(),
- bgnSystem.get_public_key().get_bipoint_twist_subgroup_gen(),
- false));
- // std::cout << "Doing V * P^T." << std::endl;
- std::vector<std::vector<std::vector<Scalar>>> firstVoteMatrixSeeds;
- std::vector<std::vector<std::vector<Scalar>>> secondVoteMatrixSeeds;
- voteMatrixCommits.push_back(
- generate_vote_tensor(
- permutations,
- voteMatrix,
- firstVoteMatrixSeeds,
- false));
- // std::cout << "Finishing V * P^T calculation." << std::endl;
- std::vector<std::vector<CurveBipoint>> partialVoteMatrix =
- calculate_next_vote_matrix(voteMatrixCommits[0]);
- // std::cout << "Doing P * (V * P^T)." << std::endl;
- voteMatrixCommits.push_back(
- generate_vote_tensor(
- permutations,
- partialVoteMatrix,
- secondVoteMatrixSeeds,
- true));
- // std::cout << "Proving V * P^T." << std::endl;
- generate_vote_tensor_proofs(
- retval,
- permutations,
- permutationSeeds,
- firstVoteMatrixSeeds,
- voteMatrix,
- permutationCommits,
- voteMatrixCommits[0],
- false);
- // std::cout << "Proving P * (V * P^T)." << std::endl;
- generate_vote_tensor_proofs(
- retval,
- permutations,
- permutationSeeds,
- secondVoteMatrixSeeds,
- partialVoteMatrix,
- permutationCommits,
- voteMatrixCommits[1],
- true);
- if (doUserTallies)
- {
- // std::cout << "Generating user tally matrix." << std::endl;
- std::vector<Curvepoint> userTallyMasks;
- std::vector<std::vector<Scalar>> userTallyMaskSeeds;
- userTallyMaskPowerCommits.clear();
- userTallyMaskSeedCommits.clear();
- std::vector<Curvepoint> userTallyMessages;
- std::vector<std::vector<Scalar>> userTallyMessageSeeds;
- userTallyCommits =
- generate_user_tally_matrix(
- permutations,
- power,
- userTallyMasks,
- userTallyMessages,
- userTallyMaskSeeds,
- userTallyMaskPowerCommits,
- userTallyMaskSeedCommits,
- userTallyMessageSeeds);
- // std::cout << "Proving user tally mask matrix." << std::endl;
- retval.push_back(
- generate_proof_of_reordering_plus_power(
- permutations,
- power,
- permutationSeeds,
- userTallyMaskSeeds,
- userTallyMasks,
- permutationCommits,
- userTallyCommits[0],
- userTallyMaskPowerCommits,
- userTallyMaskSeedCommits));
- // std::cout << "Proving user tally message matrix." << std::endl;
- retval.push_back(
- generate_proof_of_reordering<Curvepoint>(
- permutations,
- permutationSeeds,
- userTallyMessageSeeds,
- userTallyMessages,
- permutationCommits,
- userTallyCommits[1],
- EL_GAMAL_GENERATOR,
- elGamalBlindGenerator,
- false));
- }
- else
- {
- userTallyMaskPowerCommits.clear();
- userTallyMaskSeedCommits.clear();
- userTallyCommits.push_back(std::vector<std::vector<Curvepoint>>());
- userTallyCommits.push_back(std::vector<std::vector<Curvepoint>>());
- }
- // std::cout << "Giving self updates." << std::endl;
- // Replace internal values
- update_data(
- freshPseudonymPowerCommits,
- serverTallyCommits,
- voteMatrixCommits[1],
- userTallyMaskPowerCommits,
- userTallyCommits[1]);
- if (!doUserTallies)
- userTallyCommits.clear();
- return retval;
- }
- bool PrsonaServer::accept_epoch_updates(
- const std::vector<std::vector<Proof>>& pi,
- const std::vector<std::vector<Curvepoint>>& permutationCommits,
- const std::vector<std::vector<Curvepoint>>& freshPseudonymCommits,
- const std::vector<std::vector<Curvepoint>>& freshPseudonymPowerCommits,
- const std::vector<std::vector<Curvepoint>>& freshPseudonymSeedCommits,
- const std::vector<std::vector<TwistBipoint>>& serverTallyCommits,
- const std::vector<std::vector<std::vector<std::vector<CurveBipoint>>>>& voteMatrixCommits,
- const std::vector<std::vector<std::vector<Curvepoint>>>& userTallyCommits,
- const std::vector<std::vector<Curvepoint>>& userTallyMaskPowerCommits,
- const std::vector<std::vector<Curvepoint>>& userTallyMaskSeedCommits,
- bool doUserTallies)
- {
- bool verification;
- if ((userTallyCommits.empty() && doUserTallies) || (!userTallyCommits.empty() && !doUserTallies))
- {
- std::cerr << "user tallies are not in expected state." << std::endl;
- return false;
- }
- if (pi.empty())
- return false;
- verification =
- verify_valid_permutation_proof(pi[0], permutationCommits);
- if (!verification)
- {
- std::cerr << "Could not verify valid permutation matrix." << std::endl;
- return false;
- }
- verification =
- verify_proof_of_reordering_plus_power(
- pi[1],
- currentPseudonyms,
- permutationCommits,
- freshPseudonymCommits,
- freshPseudonymPowerCommits,
- freshPseudonymSeedCommits);
- if (!verification)
- {
- std::cerr << "Could not verify valid pseudonym vector." << std::endl;
- return false;
- }
- verification =
- verify_proof_of_reordering<TwistBipoint>(
- pi[2],
- previousVoteTallies,
- permutationCommits,
- serverTallyCommits,
- bgnSystem.get_public_key().get_bipoint_twistgen(),
- bgnSystem.get_public_key().get_bipoint_twist_subgroup_gen(),
- false);
- if (!verification)
- {
- std::cerr << "Could not verify valid server tally vector." << std::endl;
- return false;
- }
- size_t currOffset = 3;
- verification = verify_vote_tensor_proofs(
- pi,
- currOffset,
- voteMatrix,
- permutationCommits,
- voteMatrixCommits[0],
- false);
- if (!verification)
- {
- std::cerr << "Could not verify first half vote matrix." << std::endl;
- return false;
- }
- std::vector<std::vector<CurveBipoint>> partialVoteMatrix =
- calculate_next_vote_matrix(voteMatrixCommits[0]);
- currOffset += voteMatrix.size();
- verification = verify_vote_tensor_proofs(
- pi,
- currOffset,
- partialVoteMatrix,
- permutationCommits,
- voteMatrixCommits[1],
- true);
- if (!verification)
- {
- std::cerr << "Could not verify second half vote matrix." << std::endl;
- return false;
- }
- currOffset += voteMatrix.size();
- std::vector<std::vector<Curvepoint>> inputMasks;
- std::vector<std::vector<Curvepoint>> inputMessages;
- if (doUserTallies)
- {
- std::vector<Curvepoint> userTallyMasks;
- std::vector<Curvepoint> userTallyMessages;
- for (size_t i = 0; i < currentUserEncryptedTallies.size(); i++)
- {
- userTallyMasks.push_back(currentUserEncryptedTallies[i].mask);
- userTallyMessages.push_back(currentUserEncryptedTallies[i].encryptedMessage);
- }
- verification = verify_proof_of_reordering_plus_power(
- pi[currOffset],
- userTallyMasks,
- permutationCommits,
- userTallyCommits[0],
- userTallyMaskPowerCommits,
- userTallyMaskSeedCommits);
- if (!verification)
- {
- std::cerr << "Could not verify user tally masks." << std::endl;
- return false;
- }
- currOffset++;
- verification = verify_proof_of_reordering<Curvepoint>(
- pi[currOffset],
- userTallyMessages,
- permutationCommits,
- userTallyCommits[1],
- EL_GAMAL_GENERATOR,
- elGamalBlindGenerator,
- false);
- if (!verification)
- {
- std::cerr << "Could not verify user tally messages." << std::endl;
- return false;
- }
- inputMasks = userTallyMaskPowerCommits;
- inputMessages = userTallyCommits[1];
- }
- verification = update_data(
- freshPseudonymPowerCommits,
- serverTallyCommits,
- voteMatrixCommits[1],
- inputMasks,
- inputMessages);
- return verification;
- }
- std::vector<std::vector<Scalar>> PrsonaServer::generate_permutation_matrix(
- const Scalar& reorderSeed) const
- {
- std::vector<std::vector<Scalar>> retval;
- for (size_t i = 0; i < currentPseudonyms.size(); i++)
- {
- std::vector<Scalar> currRow;
- for (size_t j = 0; j < currentPseudonyms.size(); j++)
- currRow.push_back(Scalar(0));
- retval.push_back(currRow);
- }
- std::vector<Curvepoint> nextPseudonyms;
- for (size_t i = 0; i < currentPseudonyms.size(); i++)
- nextPseudonyms.push_back(currentPseudonyms[i] * reorderSeed);
- std::vector<size_t> order = sort_data(nextPseudonyms);
- for (size_t i = 0; i < order.size(); i++)
- retval[order[i]][i] = Scalar(1);
- std::cout << "[";
- for (size_t i = 0; i < order.size(); i++)
- {
- std::cout << "[";
- for (size_t j = 0; j < order.size(); j++)
- {
- std::cout << retval[i][j] << (j == order.size() - 1 ? "]" : " ");
- }
- std::cout << (i == order.size() - 1 ? "]" : " ") << std::endl << (i == order.size() - 1 ? "" : " ");
- }
- return retval;
- }
- std::vector<std::vector<Curvepoint>> PrsonaServer::generate_commitment_matrix(
- const std::vector<std::vector<Scalar>>& permutations,
- std::vector<std::vector<Scalar>>& seeds) const
- {
- std::vector<std::vector<Curvepoint>> retval;
- Curvepoint g = EL_GAMAL_GENERATOR;
- Curvepoint h = elGamalBlindGenerator;
- seeds.clear();
- for (size_t i = 0; i < permutations.size(); i++)
- {
- std::vector<Scalar> currSeeds;
- for (size_t j = 0; j < permutations[i].size(); j++)
- currSeeds.push_back(Scalar(0));
- seeds.push_back(currSeeds);
- }
- for (size_t i = 0; i < permutations.size(); i++)
- {
- std::vector<Curvepoint> currRow;
- size_t last = permutations[i].size() - 1;
- for (size_t j = 0; j < permutations[i].size(); j++)
- {
- Curvepoint element;
- if (j != last)
- {
- seeds[i][j].set_random();
- seeds[i][last] = seeds[i][last] - seeds[i][j];
- }
- element = encrypt<Curvepoint>(g, h, permutations[i][j], seeds[i][j]);
- currRow.push_back(element);
- }
- retval.push_back(currRow);
- }
- return retval;
- }
- std::vector<std::vector<Curvepoint>> PrsonaServer::generate_pseudonym_matrix(
- const std::vector<std::vector<Scalar>>& permutations,
- const Scalar& power,
- std::vector<std::vector<Scalar>>& seeds,
- std::vector<std::vector<Curvepoint>>& powerCommits,
- std::vector<std::vector<Curvepoint>>& seedCommits) const
- {
- return generate_reordered_plus_power_matrix<Curvepoint>(
- permutations,
- power,
- currentPseudonyms,
- seeds,
- powerCommits,
- seedCommits,
- elGamalBlindGenerator);
- }
- std::vector<std::vector<TwistBipoint>> PrsonaServer::generate_server_tally_matrix(
- const std::vector<std::vector<Scalar>>& permutations,
- std::vector<std::vector<Scalar>>& seeds) const
- {
- return generate_reordered_matrix<TwistBipoint>(
- permutations,
- previousVoteTallies,
- seeds,
- bgnSystem.get_public_key().get_bipoint_twist_subgroup_gen(),
- false,
- false);
- }
- std::vector<std::vector<std::vector<CurveBipoint>>> PrsonaServer::generate_vote_tensor(
- const std::vector<std::vector<Scalar>>& permutations,
- const std::vector<std::vector<CurveBipoint>>& currVoteMatrix,
- std::vector<std::vector<std::vector<Scalar>>>& seeds,
- bool inverted) const
- {
- std::vector<std::vector<std::vector<CurveBipoint>>> retval;
- for (size_t i = 0; i < currVoteMatrix.size(); i++)
- {
- std::vector<std::vector<Scalar>> currSeeds;
- std::vector<CurveBipoint> inputRow;
- if (inverted)
- {
- for (size_t j = 0; j < currVoteMatrix.size(); j++)
- inputRow.push_back(currVoteMatrix[j][i]);
- }
- else
- {
- inputRow = currVoteMatrix[i];
- }
-
- retval.push_back(generate_reordered_matrix<CurveBipoint>(
- permutations,
- inputRow,
- currSeeds,
- bgnSystem.get_public_key().get_bipoint_curve_subgroup_gen(),
- true,
- false));
- seeds.push_back(currSeeds);
- }
- return retval;
- }
- std::vector<std::vector<CurveBipoint>> PrsonaServer::calculate_next_vote_matrix(
- const std::vector<std::vector<std::vector<CurveBipoint>>>& voteTensor) const
- {
- std::vector<std::vector<CurveBipoint>> retval;
- for (size_t i = 0; i < voteTensor.size(); i++)
- {
- std::vector<CurveBipoint> currRow;
- for (size_t j = 0; j < voteTensor[i].size(); j++)
- {
- CurveBipoint sum = voteTensor[i][j][0];
-
- for (size_t k = 1; k < voteTensor[i][j].size(); k++)
- sum = sum + voteTensor[i][j][k];
- currRow.push_back(sum);
- }
- retval.push_back(currRow);
- }
- return retval;
- }
- void PrsonaServer::generate_vote_tensor_proofs(
- std::vector<std::vector<Proof>>& pi,
- const std::vector<std::vector<Scalar>>& permutations,
- const std::vector<std::vector<Scalar>>& permutationSeeds,
- const std::vector<std::vector<std::vector<Scalar>>>& matrixSeeds,
- const std::vector<std::vector<CurveBipoint>>& currMatrix,
- const std::vector<std::vector<Curvepoint>>& permutationCommits,
- const std::vector<std::vector<std::vector<CurveBipoint>>>& matrixCommits,
- bool inverted) const
- {
- for (size_t i = 0; i < currMatrix.size(); i++)
- {
- std::vector<CurveBipoint> inputRow;
- if (inverted)
- {
- for (size_t j = 0; j < currMatrix.size(); j++)
- inputRow.push_back(currMatrix[j][i]);
- }
- else
- {
- inputRow = currMatrix[i];
- }
-
- pi.push_back(generate_proof_of_reordering<CurveBipoint>(
- permutations,
- permutationSeeds,
- matrixSeeds[i],
- inputRow,
- permutationCommits,
- matrixCommits[i],
- bgnSystem.get_public_key().get_bipoint_curvegen(),
- bgnSystem.get_public_key().get_bipoint_curve_subgroup_gen(),
- true));
- }
- }
- bool PrsonaServer::verify_vote_tensor_proofs(
- const std::vector<std::vector<Proof>>& pi,
- size_t start_offset,
- const std::vector<std::vector<CurveBipoint>>& currMatrix,
- const std::vector<std::vector<Curvepoint>>& permutationCommits,
- const std::vector<std::vector<std::vector<CurveBipoint>>>& matrixCommits,
- bool inverted) const
- {
- bool retval = true;
- for (size_t i = 0; i < currMatrix.size(); i++)
- {
- std::vector<CurveBipoint> inputRow;
- if (inverted)
- {
- for (size_t j = 0; j < currMatrix.size(); j++)
- inputRow.push_back(currMatrix[j][i]);
- }
- else
- {
- inputRow = currMatrix[i];
- }
- size_t whichProof = i + start_offset;
- retval = retval && verify_proof_of_reordering<CurveBipoint>(
- pi[whichProof],
- inputRow,
- permutationCommits,
- matrixCommits[i],
- bgnSystem.get_public_key().get_bipoint_curvegen(),
- bgnSystem.get_public_key().get_bipoint_curve_subgroup_gen(),
- true);
- }
- return retval;
- }
- std::vector<std::vector<std::vector<Curvepoint>>> PrsonaServer::generate_user_tally_matrix(
- const std::vector<std::vector<Scalar>>& permutations,
- const Scalar& power,
- std::vector<Curvepoint>& masks,
- std::vector<Curvepoint>& messages,
- std::vector<std::vector<Scalar>>& maskSeeds,
- std::vector<std::vector<Curvepoint>>& maskPowerCommits,
- std::vector<std::vector<Curvepoint>>& maskSeedCommits,
- std::vector<std::vector<Scalar>>& messageSeeds) const
- {
- std::vector<std::vector<std::vector<Curvepoint>>> retval;
- masks.clear();
- messages.clear();
- for (size_t i = 0; i < currentUserEncryptedTallies.size(); i++)
- {
- masks.push_back(currentUserEncryptedTallies[i].mask);
- messages.push_back(currentUserEncryptedTallies[i].encryptedMessage);
- }
- retval.push_back(
- generate_reordered_plus_power_matrix<Curvepoint>(
- permutations,
- power,
- masks,
- maskSeeds,
- maskPowerCommits,
- maskSeedCommits,
- elGamalBlindGenerator));
- retval.push_back(
- generate_reordered_matrix<Curvepoint>(
- permutations,
- messages,
- messageSeeds,
- elGamalBlindGenerator,
- false,
- false));
- return retval;
- }
- template <typename T>
- std::vector<std::vector<T>> PrsonaServer::generate_reordered_plus_power_matrix(
- const std::vector<std::vector<Scalar>>& permutations,
- const Scalar& power,
- const std::vector<T>& oldValues,
- std::vector<std::vector<Scalar>>& seeds,
- std::vector<std::vector<T>>& powerCommits,
- std::vector<std::vector<Curvepoint>>& seedCommits,
- const T& h) const
- {
- std::vector<std::vector<Scalar>> permutation_plus_power;
- std::vector<std::vector<T>> retval;
- seedCommits.clear();
- powerCommits.clear();
- for (size_t i = 0; i < permutations.size(); i++)
- {
- std::vector<Scalar> currPermutations;
- std::vector<Curvepoint> currSeedCommits;
- std::vector<T> currRetvalRow;
- for (size_t j = 0; j < permutations[i].size(); j++)
- {
- currPermutations.push_back(permutations[i][j] * power);
- currSeedCommits.push_back(Curvepoint());
- currRetvalRow.push_back(T());
- }
- permutation_plus_power.push_back(currPermutations);
- seedCommits.push_back(currSeedCommits);
- retval.push_back(currRetvalRow);
- }
- powerCommits =
- generate_reordered_matrix<T>(
- permutation_plus_power,
- oldValues,
- seeds,
- h,
- false,
- true);
- Scalar inversePower = power.curveMultInverse();
- for (size_t i = 0; i < permutations.size(); i++)
- {
- for (size_t j = 0; j < permutations[i].size(); j++)
- {
- seedCommits[i][j] = EL_GAMAL_GENERATOR * seeds[i][j];
- seeds[i][j] = seeds[i][j] * inversePower;
- retval[i][j] = powerCommits[i][j] * inversePower;
- }
- }
-
- return retval;
- }
- template <typename T>
- std::vector<std::vector<T>> PrsonaServer::generate_reordered_matrix(
- const std::vector<std::vector<Scalar>>& permutations,
- const std::vector<T>& oldValues,
- std::vector<std::vector<Scalar>>& seeds,
- const T& h,
- bool inverted,
- bool cancelOut) const
- {
- std::vector<std::vector<T>> retval;
- seeds.clear();
- for (size_t i = 0; i < permutations.size(); i++)
- {
- std::vector<Scalar> currSeeds;
- for (size_t j = 0; j < permutations[i].size(); j++)
- currSeeds.push_back(Scalar(0));
- seeds.push_back(currSeeds);
- }
- for (size_t i = 0; i < permutations.size(); i++)
- {
- std::vector<T> currRow;
- T g = oldValues[i];
- size_t last =
- (inverted ?
- permutations[i].size() - 1 :
- permutations.size() - 1);
- for (size_t j = 0; j < permutations[i].size(); j++)
- {
- T element;
- if (!cancelOut)
- {
- seeds[i][j].set_random();
- }
- else if (inverted && j != last)
- {
- seeds[i][j].set_random();
- seeds[i][last] = seeds[i][last] - seeds[i][j];
- }
- else if (!inverted && i != last)
- {
- seeds[i][j].set_random();
- seeds[last][j] = seeds[last][j] - seeds[i][j];
- }
- element = encrypt<T>(g, h, permutations[i][j], seeds[i][j]);
- currRow.push_back(element);
- }
- retval.push_back(currRow);
- }
- /* We have to transpose here, because the way we calculate things
- * is transposed of the actual result we want
- * (where you can fold a row into the correct value,
- * instead of folding a column).
- * "inverted" is true when we need this transposed version
- * (right multiplication by P^T, or left multiplication by P) */
- if (!inverted)
- {
- retval = transpose_matrix<T>(retval);
- seeds = transpose_matrix<Scalar>(seeds);
- }
- return retval;
- }
- template <typename T>
- std::vector<std::vector<T>> PrsonaServer::transpose_matrix(
- const std::vector<std::vector<T>>& input) const
- {
- std::vector<std::vector<T>> retval;
- for (size_t i = 0; i < input.size(); i++)
- {
- std::vector<T> currRow;
- for (size_t j = 0; j < input[i].size(); j++)
- currRow.push_back(input[j][i]);
- retval.push_back(currRow);
- }
- return retval;
- }
- std::vector<size_t> PrsonaServer::sort_data(const std::vector<Curvepoint>& inputs) const
- {
- std::vector<size_t> retval;
- // SortingType's index member allows us to replicate the "sort" across
- std::vector<SortingType> sortTracker;
- for (size_t i = 0; i < inputs.size(); i++)
- {
- SortingType curr;
-
- curr.pseudonym = inputs[i];
- curr.index = i;
- sortTracker.push_back(curr);
- }
- std::sort(sortTracker.begin(), sortTracker.end());
- for (size_t i = 0; i < inputs.size(); i++)
- retval.push_back(sortTracker[i].index);
- return retval;
- }
- template <typename T>
- T PrsonaServer::encrypt(
- const T& g, const T& h, const Scalar& plaintext, const Scalar& lambda) const
- {
- return g * plaintext + h * lambda;
- }
- bool PrsonaServer::update_data(
- const std::vector<std::vector<Curvepoint>>& freshPseudonymCommits,
- const std::vector<std::vector<TwistBipoint>>& serverTallyCommits,
- const std::vector<std::vector<std::vector<CurveBipoint>>>& voteMatrixCommits,
- const std::vector<std::vector<Curvepoint>>& userTallyMaskCommits,
- const std::vector<std::vector<Curvepoint>>& userTallyMessageCommits)
- {
- std::vector<Curvepoint> newPseudonyms;
- std::vector<TwistBipoint> newVoteTallies;
- std::vector<EGCiphertext> newUserTallies;
- for (size_t i = 0; i < freshPseudonymCommits.size(); i++)
- {
- Curvepoint pseudonymSum = freshPseudonymCommits[i][0];
- TwistBipoint voteTallySum = serverTallyCommits[i][0];
- Curvepoint userTallyMask, userTallyMessage;
- if (!userTallyMaskCommits.empty())
- {
- userTallyMask = userTallyMaskCommits[i][0];
- userTallyMessage = userTallyMessageCommits[i][0];
- }
- for (size_t j = 1; j < freshPseudonymCommits[i].size(); j++)
- {
- pseudonymSum = pseudonymSum + freshPseudonymCommits[i][j];
- voteTallySum = voteTallySum + serverTallyCommits[i][j];
- if (!userTallyMaskCommits.empty())
- {
- userTallyMask = userTallyMask +
- userTallyMaskCommits[i][j];
- userTallyMessage = userTallyMessage +
- userTallyMessageCommits[i][j];
- }
- }
- newPseudonyms.push_back(pseudonymSum);
- newVoteTallies.push_back(voteTallySum);
- if (!userTallyMaskCommits.empty())
- {
- newUserTallies.push_back(
- EGCiphertext(userTallyMask, userTallyMessage));
- }
- }
- if (!pseudonyms_sorted(newPseudonyms))
- {
- std::cerr << "Pseudonyms not sorted correctly." << std::endl;
- return false;
- }
- currentPseudonyms = newPseudonyms;
- previousVoteTallies = newVoteTallies;
- voteMatrix = calculate_next_vote_matrix(voteMatrixCommits);
- currentUserEncryptedTallies = newUserTallies;
- return true;
- }
- bool PrsonaServer::pseudonyms_sorted(
- const std::vector<Curvepoint> newPseudonyms) const
- {
- bool retval = true;
-
- for (size_t i = 0; i < newPseudonyms.size() - 1; i++)
- retval = retval && (newPseudonyms[i] < newPseudonyms[i + 1]);
- return retval;
- }
- /*
- * DATA MAINTENANCE
- */
- bool PrsonaServer::import_new_user_update(
- const std::vector<Proof>& pi,
- const std::vector<TwistBipoint>& otherPreviousVoteTallies,
- const std::vector<Curvepoint>& otherCurrentPseudonyms,
- const std::vector<EGCiphertext>& otherCurrentUserEncryptedTallies,
- const std::vector<std::vector<CurveBipoint>>& otherVoteMatrix)
- {
- size_t newIndex = 0;
- if (!currentPseudonyms.empty())
- while (otherCurrentPseudonyms[newIndex] == currentPseudonyms[newIndex])
- newIndex++;
- Curvepoint shortTermPublicKey = otherCurrentPseudonyms[newIndex];
- bool flag = verify_proof_of_added_user(
- pi,
- currentFreshGenerator,
- shortTermPublicKey,
- bgnSystem.get_public_key().get_bipoint_curvegen(),
- bgnSystem.get_public_key().get_bipoint_curve_subgroup_gen(),
- bgnSystem.get_public_key().get_bipoint_twistgen(),
- bgnSystem.get_public_key().get_bipoint_twist_subgroup_gen(),
- newIndex,
- otherCurrentUserEncryptedTallies[newIndex],
- otherPreviousVoteTallies[newIndex],
- otherVoteMatrix);
- if (!flag)
- {
- std::cerr << "Other server added new user invalidly, aborting." << std::endl;
- return false;
- }
- for (size_t i = 0; i < otherCurrentPseudonyms.size(); i++)
- {
- if (i == newIndex)
- continue;
- size_t otherI = (i > newIndex ? i - 1 : i);
- flag = flag && otherCurrentPseudonyms[i] ==
- currentPseudonyms[otherI];
- flag = flag && otherCurrentUserEncryptedTallies[i] ==
- currentUserEncryptedTallies[otherI];
- flag = flag && otherPreviousVoteTallies[i] ==
- previousVoteTallies[otherI];
- for (size_t j = 0; j < otherCurrentPseudonyms.size(); j++)
- {
- if (j == newIndex)
- continue;
- size_t otherJ = (j > newIndex ? j - 1 : j);
- flag = flag && otherVoteMatrix[i][j] ==
- voteMatrix[otherI][otherJ];
- }
- }
- if (!flag)
- {
- std::cerr << "Other server illicitly changed other value during new user add." << std::endl;
- return false;
- }
- previousVoteTallies = otherPreviousVoteTallies;
- currentPseudonyms = otherCurrentPseudonyms;
- currentUserEncryptedTallies = otherCurrentUserEncryptedTallies;
- voteMatrix = otherVoteMatrix;
- return true;
- }
- /*
- * DATA SAFEKEEPING
- */
- /* This is what powers the "shuffle"; really, as pseudonyms get updated,
- * the pseudonyms are no longer in the order prescribed by operator<().
- * So, we put them (and everything else) back into that order,
- * effectively shuffling them (and making lookups easier later on). */
- std::vector<size_t> PrsonaServer::order_data()
- {
- std::vector<size_t> retval = sort_data(currentPseudonyms);
- // Order all other data in the same way, for consistency
- std::vector<Curvepoint> newPseudonyms;
- std::vector<TwistBipoint> newVoteTallies;
- std::vector<EGCiphertext> newUserEncryptedTallies;
- std::vector<std::vector<CurveBipoint>> newVoteMatrix;
- for (size_t i = 0; i < retval.size(); i++)
- {
- newPseudonyms.push_back(currentPseudonyms[retval[i]]);
- newVoteTallies.push_back(previousVoteTallies[retval[i]]);
-
- if (!currentUserEncryptedTallies.empty())
- {
- newUserEncryptedTallies.push_back(
- currentUserEncryptedTallies[retval[i]]);
- }
- std::vector<CurveBipoint> currNewRow;
- for (size_t j = 0; j < currentPseudonyms.size(); j++)
- {
- currNewRow.push_back(
- voteMatrix[retval[i]][retval[j]]);
- }
- newVoteMatrix.push_back(currNewRow);
- }
- previousVoteTallies = newVoteTallies;
- currentPseudonyms = newPseudonyms;
- currentUserEncryptedTallies = newUserEncryptedTallies;
- voteMatrix = newVoteMatrix;
- return retval;
- }
- /*
- * BINARY SEARCH
- */
- // Completely normal binary search
- size_t PrsonaServer::binary_search(const Curvepoint& index) const
- {
- return PrsonaBase::binary_search(currentPseudonyms, index);
- }
- /*
- * VALID VOTE PROOFS
- */
- bool PrsonaServer::verify_vote_proof(
- const std::vector<Proof>& pi,
- const std::vector<CurveBipoint>& oldVotes,
- const std::vector<CurveBipoint>& newVotes,
- const Curvepoint& shortTermPublicKey) const
- {
- const BGNPublicKey& pubKey = bgnSystem.get_public_key();
- return PrsonaBase::verify_vote_proof(
- pubKey.get_bipoint_curvegen(),
- pubKey.get_bipoint_curve_subgroup_gen(),
- pi,
- oldVotes,
- newVotes,
- currentFreshGenerator,
- shortTermPublicKey);
- }
- void PrsonaServer::print_scores(const std::vector<TwistBipoint>& scores)
- {
- std::cout << "[";
- for (size_t i = 0; i < scores.size(); i++)
- {
- std::cout << bgnSystem.decrypt(scores[i])
- << (i == scores.size() - 1 ? "]" : " ");
- }
- std::cout << std::endl;
- }
|