Uses of Class
votingSystem.Vote

Packages that use Vote
bb   
ds   
remoteInterfaces   
voter   
votingSystem   
 

Uses of Vote in bb
 

Methods in bb that return Vote
 Vote[] BulletinBoard_Impl.getVotes()
          Gets the Votes in the case of a single candidate election
 

Methods in bb with parameters of type Vote
 void BulletinBoard_Impl.postVote(Vote v)
          Posts a Vote to the bulletin board
 

Uses of Vote in ds
 

Methods in ds with parameters of type Vote
 DecryptedShare Server.shareDecrypt(Vote[] votes)
          The method for decrypting the results of the election with the secret KeyShare
 

Uses of Vote in remoteInterfaces
 

Methods in remoteInterfaces that return Vote
 Vote[] BulletinBoard.getVotes()
          Gets the Votes in the case of a single candidate election
 

Methods in remoteInterfaces with parameters of type Vote
 void BulletinBoard.postVote(Vote v)
          Posts a Vote to the bulletin board
 

Uses of Vote in voter
 

Methods in voter that return Vote
 Vote Voter.encryptVote(int candidate)
          The method for encrypting a Vote and creating the proof of correctness in the case of 1-out-of-L elections
 

Uses of Vote in votingSystem
 

Methods in votingSystem that return Vote
 Vote[] MultipleVotes.getVotes()
           
 

Methods in votingSystem with parameters of type Vote
 boolean Validator.checkProof(Vote v)
          The code for checking if a Vote is of the correct form.
 

Constructors in votingSystem with parameters of type Vote
MultipleVotes(Vote[] votes, java.math.BigInteger[][] ea, java.math.BigInteger[][] eb, java.math.BigInteger[][] ec, java.math.BigInteger[][] ed, java.math.BigInteger[][] edb, java.math.BigInteger[][] e, java.math.BigInteger[][] f, java.math.BigInteger[][] z1, java.math.BigInteger[][] z2, int id)