Pure-Python implementation of a threshold secure multi-party computation (MPC) network.
Project description
Pure-Python implementation of a comparison algorithm based on secure multi-party computation (MPC).
Installation and Usage
This library is available as a package on PyPI:
python -m pip install tinybgw
The library can be imported in the usual way:
import tinybgw
from tinybgw import *
Basic Example
This implementation includes the emulation of a network comprised of computing nodes. We can either deploy a network with any Galois field we want. In this example, we will show an example with 3 nodes and security threshold set to 1.
>>> N = 3; T = 1; field = Field(65267)
To kick things off, let’s initialize the network:
>>> network = Network(N, T, field)
We can share a secret 7 named “my_secret”:
>>> network.share([7], "my_secret")
For a deeper dive, please check the demos folder.
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 ../src && 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
Style conventions are enforced using Pylint:
python -m pip install .[lint]
python -m pylint src/tinybgw
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file tinybgw-0.1.0.tar.gz
.
File metadata
- Download URL: tinybgw-0.1.0.tar.gz
- Upload date:
- Size: 16.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63ad05371a6946208aac422750f7974d00e32cee43e592410f5f1ca9f5d50c75 |
|
MD5 | cdae37dc152f15e9537f9d3bc417882c |
|
BLAKE2b-256 | ea24803151f2bec3322a8672fd36f119c65cea3091dc213020b890c6b7d174f8 |
File details
Details for the file tinybgw-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: tinybgw-0.1.0-py3-none-any.whl
- Upload date:
- Size: 20.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5f4e7243c125815ba62c13c0d82b3a4584f68ae801a9905e92ad2b17c94c59d1 |
|
MD5 | 67ccb2e92dd557eea6fbc3eb55555b44 |
|
BLAKE2b-256 | cc4c61bd202a5aa1aec26567a55f1d9ac1e90c66b9dc9928da217e4a7c800175 |