privacy-scaling-explorations / mpz

Multi-party computation libraries written in Rust 🦀
182 stars 39 forks source link

refactor(mpz-ot): ferret clean up #173

Closed sinui0 closed 4 weeks ago

sinui0 commented 2 months ago

This PR does some simplification and clean up of the ferret impl.

Changes

xiangxiecrypto commented 4 weeks ago

Optimize the ferret extension process, rcot is only invoked in the setup phase, and buffer all the needed COTs in the extension phase. @sinui0 Is there any example of using KOS with io? Then I can set all the real parameters for Ferret.

sinui0 commented 4 weeks ago

ty @xiangxiecrypto sorry this is taking so long on my end, im almost ready to focus back here again.

Why move the buffering out into the io layer? Can't we use the existing buffer in core?

Is there any example of using KOS with io? Then I can set all the real parameters for Ferret.

The tests in the kos module should give a sense of how to use the API. Or are you wondering how to use it with an actual network connection, eg TCP?

sinui0 commented 4 weeks ago

I'm going to go ahead and merge this into the ferret branch and we can continue there