Hacker News new | ask | show | jobs
by solidasparagus 2520 days ago
How does computation on encrypted data relate to voting systems?
2 comments

Homomorphic encryption would allow tallying the ballots without decrypting them.

Helios [1], for instance uses an homomorphic scheme.

There are alternatives to it though which preserve voter privacy but allow vote tallying. Shuffling is one of them. Cothority [2] implements an e-voting scheme based on Neff Shuffles

1. https://heliosvoting.org/ 2. https://github.com/dedis/cothority/tree/master/evoting

P.S. I contributed to the latter

It’s possible that OP meant multiparty computation.