Created
April 30, 2025 11:04
-
-
Save ruescasd/31842298c6eff530bc2153a8f8a7cf70 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Voter casts: | |
b = (g^r, m*h^r) | |
pc_1 = g^c1*h^r_c1 | |
EA computes: | |
pc_2 = g^c2*h^r_c2 | |
Voter, EA post | |
(b, E(pc_1), E(pc_2)) | |
In person: | |
Voter reveals: | |
c_1, r_c1 | |
EA reveals to voter: | |
c_2, r_c2 | |
Voter submits | |
c_1 + c_2, r_c1 + r_c2 | |
eg in paper. | |
Tally: | |
pc = E(pc_1) * E(pc_2) | |
Shuffle in parallel b, pc | |
(b, pc) | |
Discard b where Dec(pc) = g^(c_1 + c_2) * h^(r_c1 + r_c2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment