Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add README for MPC specification #58

Merged
merged 1 commit into from
Mar 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions mpc-spec/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Specification of an MPC engine

This project contains the work in progress specification of a multi-party
computation engine based on the publication:

> Xiao Wang, Samuel Ranellucci, and Jonathan Katz. 2017. Global-Scale Secure
> Multiparty Computation. In Proceedings of the 2017 ACM SIGSAC Conference on
> Computer and Communications Security (CCS '17). Association for Computing
> Machinery, New York, NY, USA, 39–56. <https://doi.org/10.1145/3133956.3133979>

A full description of the scheme is available at [WRK17][1].

Differences to the scheme described in WRK17 are as follows:

- WRK17 considers circuits made up of AND and XOR gates, leaving NOT gates
implicit (as each party can evaluate them locally by XORing with constant
`1`). For the sake of a more natural presentation, we have chosen to include
NOT gates explicitely in our circuit description.

[1]: https://eprint.iacr.org/2017/189.pdf
Loading