Skip to content

Commit

Permalink
Adjust update README links and text; update package version.
Browse files Browse the repository at this point in the history
  • Loading branch information
lapets committed Nov 23, 2023
1 parent c5f9c98 commit f837ceb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
tinynmc
=======

Minimal pure-Python implementation of a secure multi-party computation (MPC) `protocol for evaluating arithmetic sum-of-products expressions <https://nillion.pub/sum-of-products-lsss-non-interactive.pdf>`__ via a non-interactive computation phase.
Minimal pure-Python implementation of a secure multi-party computation (MPC) `protocol for evaluating arithmetic sum-of-products expressions <https://eprint.iacr.org/2023/1740>`__ via a non-interactive computation phase.

|pypi| |readthedocs| |actions| |coveralls|

Expand Down Expand Up @@ -53,7 +53,7 @@ The overall sum-of-products expression being computed is ``(1 * 2 * 3) + (4 * 5)
>>> signature = [3, 2]
The signature must be shared with every node so that the nodes can collectively perform the preprocessing phase (this can be accomplished using any MPC protocol that supports multiplication of secret-shared values, such as the `SPDZ <https://eprint.iacr.org/2011/535>`__ protocol that is implemented as part of `TinySMPC <https://github.com/kennysong/tinysmpc>`__ library):
The signature must be shared with every node so that the nodes can collectively perform the preprocessing phase; this can be accomplished using any MPC protocol that supports multiplication of secret-shared values, such as the `SPDZ <https://eprint.iacr.org/2011/535>`__ protocol (a similarly simple implementation of which can be seen in the `TinySMPC <https://github.com/kennysong/tinysmpc>`__ library):

.. code-block:: python
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "tinynmc"
version = "0.1.0"
version = "0.2.0"
description = """\
Minimal pure-Python implementation of a secure multi-party computation \
(MPC) protocol for evaluating arithmetic sum-of-products expressions via \
Expand Down

0 comments on commit f837ceb

Please sign in to comment.