https://github.com/keyan/e2e_voting
Simulated end-to-end verifiable secure election protocol
https://github.com/keyan/e2e_voting
cryptography elections voting
Last synced: about 1 year ago
JSON representation
Simulated end-to-end verifiable secure election protocol
- Host: GitHub
- URL: https://github.com/keyan/e2e_voting
- Owner: keyan
- License: mit
- Created: 2020-11-21T03:49:56.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-11T17:53:51.000Z (over 5 years ago)
- Last Synced: 2025-02-09T00:43:23.706Z (over 1 year ago)
- Topics: cryptography, elections, voting
- Language: Python
- Homepage:
- Size: 448 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# e2e_voting
A limited implementation of Rabin and Rivest end-to-end verifiable electronic voting as described in [their paper](https://people.csail.mit.edu/rivest/pubs/RR14b.pdf).
The high level system architecture looks like:

## Requirements
Install necessary packages in a virtualenv:
```
pip install -r requirements.txt
```
## Usage
```
⫸ python3 -m src.main --help
usage: main.py [-h] [-v NUM_VOTERS]
Run simulated electronic elections
optional arguments:
-h, --help show this help message and exit
-v NUM_VOTERS, --voters NUM_VOTERS
number of voters to use, set randomly if not specified
```
For example:
```
# Automated simulation mode
make run
```