Practical Quantum Electronic Voting

Revision as of 21:51, 15 December 2021 by Chirag (talk | contribs) (Created page with "<!-- This is a comment. You can erase them or write below --> <!-- Intro: brief description of the protocol --> This [https://arxiv.org/abs/2107.14719 example protocol] achi...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


This example protocol achieves the functionality of Quantum Electronic Voting. In this protocol, an untrusted multipartite entanglement source can be used to carry out an election without any election authorities.


Assumptions

Outline

  • In the first phase of the protocol, each agent is assigned a secret unique random index
  • Next, we perform multiple rounds of voting, one for each agent. In each round, the following steps are carried out:
    • The agent with the same index as the round number is designated the voter for that round
    • The source distributes one qubit of a GHZ state to each agent. The voting agent randomly chooses to either verify the GHZ state or vote with a certain probability. This step, including state distribution, is repeated until the voter chooses to vote. Once voting is chosen, the voter anonymously transmits their vote to all agents.
  • Finally, all the votes are tallied. All agents have the votes for each round and can thus verify the final tally.

Notation

  •  : Number of agents
  •  : The votes
  •  : Security parameter
  •  : Distance from the perfect GHZ state
  •  : Threshold for verification
  •  : Probability of failure of verification
  • B: Bulletin board -   x   binary matrix. Each row corresponds to one round of voting, and each column contains the output of a single voter across all rounds
  • E: Vote vector - The list of votes across   rounds. Each element is computed as the parity of a row from B
  • T: Final tally


Protocol Description

Protocol 1 : Quantum e-voting

Inputs:   - Set of votes;   - Security parameter;   - Distance from the perfect GHZ state;   - Threshold for verification;   Probability of failure of verification

Output: The candidate with majority votes or Abort

Resources: Classical communication, random numbers, N-qubit GHZ source, quantum channels

  • Phase 1 [getting unique secret indices]
    • Agents perform UniqueIndex until each agent has a secret unique random index  
  • Phase 2 [casting votes]
    • For   to  
      • The voting agent is the agent   with  
      • Repeat until Voting is announced
        • The source distributes to each of the N agents one qubit of the GHZ source
        • All agents   set rejections  trials 
        • The voting agent tosses log ln 
        • The agents perform LogicalOR, where output 1 indicates Verification and output 0 indicates Voting. Everyone except the voting agent inputs 0; if the coin toss is 'all heads' the voting agent also inputs 0, otherwise the voting agent inputs 1
        • If Verification is chosen, the agents perform RandomAgent and the voting agent anonymously picks an agent   to be the verifier. Agent   updates trials  and if Verification outputs reject: rejections 
      • If for any  , the protocol Aborts
      • Perform Voting. The outcome is one row of the Bulletin Board B. The parity of the row gives one entry in the vote vector E.
    • Given the votes E, the tally T can be computed.
  • Phase 3 [Verification of results]:
    • All agents perform LogicalOR with security parameter  , and input 1 if their vote is not the same as the entry in E for the round in which they voted, and 0 otherwise.
    • If LogicalOR outputs 1, Abort the protocol. Else output the candidate with the most votes according to the tally T.

Protocol 2 : LogicalOR

Inputs:   agents,   boolean variables  , security parameter  

Output:  

Resources: Classical communication and random numbers

  1. Decide   random orderings, such that each voter is the last once. For each ordering repeat \Sigma times the following.
  2. Each voter   gives an input  
  3. If  , set  , otherwise toss   coins and set   to   if the result is ‘all heads’ and to   otherwise
  4. Then each voter generates uniformly at random an  -bit string  , such that  
  5. Voter   sends   to voter   for all  , keeping  
  6. Each voter sums the received bits and broadcasts the parity   according to the ordering.
  7. Compute the parity of the original bits  
  8. From this everyone can also compute the parity of all other inputs except their own  
  9. Repeat   times from step 4: each time repeat with   as new inputs
  10. If at least once in the   repetitions for the various orderings  , this is the output of the protocol, otherwise it is  


Protocol 3 : RandomBit

Input: Security parameter S to be used in LogicalOR, voting agent: probability distribution D.

Output: The voting agent anonymously announces a random bit according to D.

Resources: Classical communication and random numbers.

  • Perform LogicalOR with security parameter S where the voting agent inputs a random bit according to D and the other agents input 0.

Protocol 4 : RandomAgent

Input: Security parameter S to be used in RandomBit, voting agent: probability distribution D.

Output: The voting agent anonymously chooses a random agent according to D.

Resources: Classical communication and random numbers.

Protocol 5 : UniqueIndex

Input: Security parameter   to be used in LogicalOR,  random boolean variables  .

Output: Each agent   has a secret unique index  .

Resources: Classical communication and random numbers.

  1. Beginning of round R = 1
  2. Agents perform LogicalOR with inputs   if they already have an index and   if they do not.
  3. If  , repeat from step 2
  4. If an agent   has a bit   and   they know they are the only one and has been assigned the secret index corresponding to the round  , otherwise there is a collision.
  5. \[notification\] Everybody performs a LogicalOR with input 0, unless they received the index in this round, in which case they input 1.
  6. If the output of LogicalOR is 0, no index was assigned and we repeat from step 2.
  7. If the output of LogicalOR is 1, the index was assigned and we repeat from step 2 with R+ = 1.
  8. Repeat from step 2 until all indices have been assigned.

Protocol 6 : Verification

Input: A quantum state distributed and shared by   parties, security parameter   for RandomAgent.

Output: If the state is a GHZ state   YES.

Resources: Classical communication, random numbers, quantum state source, quantum channels.

  1. Everyone executes RandomAgent to choose uniformly at random one of the voters to be the verifier.
  2. The verifier generates random angles   for all agents including themselves, such that the sum is a multiple of  . The angles are then sent out to all the agents.

Protocol 7 : Voting

Properties

Further Information

References