Eos/README.md

37 lines
3.0 KiB
Markdown
Raw Normal View History

2017-11-22 23:30:13 +11:00
# Eos: Modular verifiable elections
2017-09-27 23:56:00 +10:00
2018-01-08 22:07:54 +11:00
Work in progress – Both API and GUI are sufficiently complete to have seen experimental use
2017-09-27 23:56:00 +10:00
## Comparison with competitors
| | Helios | Eos
--- | --- | ---
2017-11-24 00:22:04 +11:00
Usable | Yes | Kinda
Good | Yes | Not really
Eye Candy | No | Yes!
![Screenshot](https://raw.githubusercontent.com/RunasSudo/Eos/master/docs/screenshot.png)
**Why create Eos?** – Read [here](docs/essay.md) for some background.
2017-09-27 23:56:00 +10:00
## Cryptographic details and references
Eos aims to be implementation-agnostic with respect to cryptographic details. The included *eos.psr* package provides an example implementation with the following particulars:
* ElGamal encryption
2017-09-28 12:31:47 +10:00
* MENEZES, Alfred J., Paul C. VAN OORSCHOT and Scott A. VANSTONE. *Handbook of Applied Cryptography*. CRC Press, 2001. Fifth printing. ISBN 978-0-8493-8523-0. Available from: http://cacr.uwaterloo.ca/hac/
2017-11-22 23:30:13 +11:00
* Distributed threshold ElGamal due to **P**edersen (1991)
* PEDERSEN, Torben Pryds. ‘A Threshold Cryptosystem without a Trusted Party’. In: D.W. Davies, ed. *Advances in Cryptology — EUROCRYPT '91*. Berlin: Springer, 1991. pp. 522–526. Lecture Notes in Computer Science, vol. 547. ISBN 978-3-540-46416-7. Available from: https://doi.org/10.1007/3-540-46416-6_47
2017-09-28 12:31:47 +10:00
* **S**igned ElGamal due to Schnorr and Jakobsson (2000)
* SCHNORR, Claus Peter and Markus JAKOBSSON. ‘Security of Signed ElGamal Encryption’. In: T. OKAMOTO, ed. *Advances in Cryptology – ASIACRYPT 2000*. Berlin: Springer-Verlag, 2000. pp. 73–89. Lecture Notes in Computer Science, vol. 1976. ISBN 978-3-540-44448-0. Available from: https://doi.org/10.1007/3-540-44448-3_7
2017-09-27 23:56:00 +10:00
* **R**andomised partial checking (RPC) due to Jakobsson, Juels and Rivest (2002)
2017-09-28 12:31:47 +10:00
* JAKOBSSON, Markus, Ari JUELS and Ronald L. RIVEST. ‘Making Mix Nets Robust For Electronic Voting By Randomized Partial Checking’. In: *Proceedings of the 11th USENIX Security Symposium*. pp. 339–353. Berkeley: USENIX Association, 2002. Available from: https://www.usenix.org/event/sec02/full_papers/jakobsson/jakobsson.pdf
* Taking note of points raised by Khazaei and Wikström (2013)
* KHAZAEI, Shahram and Douglas WIKSTRÖM. ‘Randomized Partial Checking Revisited’. In: E. DAWSON, ed. *Topics in Cryptology – CT-RSA 2013*. Berlin: Springer-Verlag, 2013. pp. 115–128. Lecture Notes in Computer Science, vol. 7779. ISBN 978-3-642-36095-4. Available from: https://doi.org/10.1007/978-3-642-36095-4_8
2017-09-27 23:56:00 +10:00
2017-09-28 12:31:47 +10:00
## Mother of all disclaimers
2017-09-27 23:56:00 +10:00
This is a fun side-project of mine, and should in no way be considered to be a serious attempt to build a production-ready election system suitable for real world deployment. Not even crypto experts are quite up to the task, and I am most certainly not a crypto expert, nor am I anything resembling a professional in any field even tangentially related to cryptographic elections.
I cannot guarantee the security of this implementation whatsoever. In fact, I would go so far as to guarantee that this software has so many holes it gives Swiss cheese a run for its money. That said, please feel free to roast Eos on the issue tracker!