Skip to content

Commit

Permalink
Merge accumulated changes
Browse files Browse the repository at this point in the history
  • Loading branch information
govindr-cm committed Apr 21, 2023
2 parents 07b67a7 + b4e5221 commit 2059e76
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Changes in CipherCore 0.2.0

* **Added support for 128-bit integers**
* **Postpone resharing** Performance optimization to reduce communication by delaying conversions from 3-out-of-3 secret shares to 2-out-of-3, if 2-out-of-3 shares are not immediately required by proceeding operations (e.g. additions).

# Changes in CipherCore 0.1.3

* **Better SMPC protocol for Private set intersection** The new protocol follows the description of the Join protocol from <https://eprint.iacr.org/2019/518.pdf>. The operation is renamed from `SetIntersection` to `Join`, and supports four join flavors: Inner, Left, Union and Full.
Expand Down
2 changes: 1 addition & 1 deletion ciphercore-wrappers/python/setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import find_packages, setup
from setuptools_rust import Binding, RustExtension

__version__ = "0.1.3"
__version__ = "0.2.0"

with open('../../README.md', 'r') as f:
long_description = f.read()
Expand Down

0 comments on commit 2059e76

Please sign in to comment.