Skip to main content

Minimal pure-Python library that demonstrates a basic encrypted voting workflow by leveraging a secure multi-party computation (MPC) protocol.

Project description

Minimal pure-Python library that demonstrates a basic encrypted voting workflow by leveraging a secure multi-party computation (MPC) protocol.

PyPI version and link. Read the Docs documentation status. GitHub Actions status. Coveralls test coverage summary.

Purpose

This library demonstrates how a functionality can be implemented using a secure multi-party computation (MPC) protocol for evaluating arithmetic sum-of-products expressions (as implemented in tinynmc). The approach used in this library can serve as a template for any workflow that relies on multiple simultaneous instances of such a protocol.

Installation and Usage

This library is available as a package on PyPI:

python -m pip install tinyvote

The library can be imported in the usual way:

import tinyvote
from tinyvote import *

Basic Example

Suppose that a secure decentralized voting workflow is supported by three parties. The node objects would be instantiated locally by each of these three parties:

>>> nodes = [node(), node(), node()]

The preprocessing workflow that the nodes must execute can be simulated. The number of voters that the workflow supports must be known, and it is assumed that all permitted choices are integers greater than or equal to 0 and strictly less than a fixed maximum value. The number of voters and the number of distinct choices can be supplied to the preprocessing simulation:

>>> preprocess(nodes, votes=4, choices=2)

Each voter must submit a request for the opportunity to submit a vote. Below, each of the four voters creates such a request:

>>> request_zero = request(identifier=0)
>>> request_one = request(identifier=1)
>>> request_two = request(identifier=2)
>>> request_three = request(identifier=3)

Each voter can deliver a request to each node, and each node can then locally generate masks that can be returned to the requesting voter:

>>> masks_zero = [node.masks(request_zero) for node in nodes]
>>> masks_one = [node.masks(request_one) for node in nodes]
>>> masks_two = [node.masks(request_two) for node in nodes]
>>> masks_three = [node.masks(request_three) for node in nodes]

Each voter can then generate locally a vote instance (i.e., a masked vote choice):

>>> vote_zero = vote(masks_zero, 0)
>>> vote_one = vote(masks_one, 1)
>>> vote_two = vote(masks_two, 1)
>>> vote_three = vote(masks_three, 1)

Every voter can broadcast its masked vote choice to all the nodes. Each node can locally assemble these as they arrive. Once a node has received all masked votes, it can determine its shares of the overall tally of the votes:

>>> shares = [
...     node.outcome([vote_zero, vote_one, vote_two, vote_three])
...     for node in nodes
... ]

The overall outcome can be reconstructed from the shares by the voting workflow operator. The outcome is represented as a list in which each entry contains the tally for the choice corresponding to the entry’s index:

>>> reveal(shares)
[1, 3]

Development

All installation and development dependencies are fully specified in pyproject.toml. The project.optional-dependencies object is used to specify optional requirements for various development tasks. This makes it possible to specify additional options (such as docs, lint, and so on) when performing installation using pip:

python -m pip install .[docs,lint]

Documentation

The documentation can be generated automatically from the source files using Sphinx:

python -m pip install .[docs]
cd docs
sphinx-apidoc -f -E --templatedir=_templates -o _source .. && make html

Testing and Conventions

All unit tests are executed and their coverage is measured when using pytest (see the pyproject.toml file for configuration details):

python -m pip install .[test]
python -m pytest

Alternatively, all unit tests are included in the module itself and can be executed using doctest:

python src/tinyvote/tinyvote.py -v

Style conventions are enforced using Pylint:

python -m pip install .[lint]
python -m pylint src/tinyvote

Contributions

In order to contribute to the source code, open an issue or submit a pull request on the GitHub page for this library.

Versioning

The version number format for this library and the changes to the library associated with version number increments conform with Semantic Versioning 2.0.0.

Publishing

This library can be published as a package on PyPI by a package maintainer. First, install the dependencies required for packaging and publishing:

python -m pip install .[publish]

Ensure that the correct version number appears in pyproject.toml, and that any links in this README document to the Read the Docs documentation of this package (or its dependencies) have appropriate version numbers. Also ensure that the Read the Docs project for this library has an automation rule that activates and sets as the default all tagged versions. Create and push a tag for this version (replacing ?.?.? with the version number):

git tag ?.?.?
git push origin ?.?.?

Remove any old build/distribution files. Then, package the source into a distribution archive:

rm -rf build dist src/*.egg-info
python -m build --sdist --wheel .

Finally, upload the package distribution archive to PyPI:

python -m twine upload dist/*

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tinyvote-0.1.2.tar.gz (9.0 kB view details)

Uploaded Source

Built Distribution

tinyvote-0.1.2-py3-none-any.whl (7.9 kB view details)

Uploaded Python 3

File details

Details for the file tinyvote-0.1.2.tar.gz.

File metadata

  • Download URL: tinyvote-0.1.2.tar.gz
  • Upload date:
  • Size: 9.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.2

File hashes

Hashes for tinyvote-0.1.2.tar.gz
Algorithm Hash digest
SHA256 5a692f65e32c3c2c9442f249d14f0e3357e09944421a9ad8f36d9fedd26df38f
MD5 992a89876c025299c970bbdc564fade9
BLAKE2b-256 c1bd6bc91b028ad1d1b6181b99de4d61b4821d56ac289a186451fe5cea69f032

See more details on using hashes here.

File details

Details for the file tinyvote-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: tinyvote-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 7.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.2

File hashes

Hashes for tinyvote-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 d6a567ac58a23efb0522286bfc60f8ad29a0fd9dd0cc19093fb3958680d08a18
MD5 801f37964e0a5a3370bc676b3c682f45
BLAKE2b-256 0b251e4eb28d36102c9e90c44311a7cf802962a56957628efe69fcf9e3e24afd

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page