-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move core mpc and multiplication code out of BBS+ crate and to OT cra…
…te and protyping threshold accumulator update and witness creation Signed-off-by: lovesh <[email protected]>
- Loading branch information
Showing
29 changed files
with
1,462 additions
and
1,018 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
# Oblivious Transfer (OT) and Oblivious Transfer Extensions (OTE) | ||
<!-- cargo-rdme start --> | ||
|
||
# Oblivious Transfer (OT), Oblivious Transfer Extensions (OTE) and multi-party protocols based on that. | ||
|
||
## Oblivious Transfer protocols | ||
|
||
1. [Simplest OT protocol](./src/base_ot/simplest_ot.rs) | ||
2. [Naor Pinkas OT](./src/base_ot/naor_pinkas_ot.rs) | ||
3. [Endemic OT](./src/base_ot/endemic_ot.rs) | ||
|
||
## Oblivious Transfer Extensions | ||
## Oblivious Transfer Extensions | ||
1. [ALSZ](./src/ot_extensions/alsz_ote.rs) | ||
2. [KOS](./src/ot_extensions/kos_ote.rs) | ||
|
||
## Oblivious Transfer based multiplication | ||
1. [DKLS18](./src/ot_based_multiplication/dkls18_mul_2p.rs) - 2 party multiplication of where each party has a single input | ||
2. [DKLS19](./src/ot_based_multiplication/dkls19_batch_mul_2p.rs) - 2 party batch-multiplication of where each party has multiple inputs, say `n` inputs and those inputs will be multiplied, i.e. a total of `2*n` multiplications will be done with each being between 2 inputs | ||
2. [DKLS19](./src/ot_based_multiplication/dkls19_batch_mul_2p.rs) - 2 party batch-multiplication of where each party has multiple inputs, say `n` inputs and those inputs will be multiplied, i.e. a total of `2*n` multiplications will be done with each being between 2 inputs | ||
|
||
<!-- cargo-rdme end --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.