MPyC supports secure m-party computation tolerating a dishonest minority of up to t passively corrupt parties, where m ≥ 1 and 0 ≤ t < m/2. The underlying protocols are based on threshold secret sharing over finite fields (using Shamir's threshold scheme as well as pseudorandom secret sharing).
The details of the secure computation protocols are mostly transparent due to the use of sophisticated operator overloading combined with asynchronous evaluation of the associated protocols.
See the MPyC homepage for more info and background.
Click the "launch binder" badge above to view the entire repository and try out its notebooks in the demos directory without any install.
Just run: python setup.py install (pure Python, no dependencies).
See demos for usage examples and MPyC docs for pydoc-based documentation.
-
Python 3.6+ (Python 3.5 or lower is not sufficient).
-
Installing package
gmpy2is optional, but will considerably enhance the performance ofmpyc. If you use the conda package and environment manager,conda install gmpy2should do the job. Otherwise,pip install gmpy2can be used on Linux (first runningapt install libmpc-devmay be necessary too), but on Windows, this may fail with compiler errors. Fortunately, ready-to-go Python wheels forgmpy2can be downloaded from Christoph Gohlke's excellent Unofficial Windows Binaries for Python Extension Packages webpage. Use, for example,pip install gmpy2-2.0.8-cp36-cp36m-win_amd64.whlto finish installation. -
Use
run-all.shorrun-all.batin thedemosdirectory to have a quick look at some demos. The more advanced demosbnnmnist.pyandcnnmnist.pyrequire Numpy, the demokmsurvival.pyrequires pandas, Matplotlib, and lifelines, and the demoridgeregression.pyeven requires Scikit-learn. Also note the example Windows batch files in thedocsandtestsdirectories. -
Directory
demos\.configcontains configuration info used to run MPyC with multiple parties. Also, Windows batch file 'gen.bat' shows how to generate fresh key material for SSL. OpenSSL is required to generate SSL key material of your own, usepip install pyOpenSSL. -
To use the Jupyter notebooks
demos\*.ipynb, you need to have Jupyter installed, e.g., usingpip install jupyter. The latest version of Jupyter will come with IPython 7.0+, which supports top-levelawait. Instead ofmpc.run(mpc.start())one can now simply writeawait mpc.start()anywhere in a notebook cell, even outside a coroutine.
Copyright © 2018-2020 Berry Schoenmakers