-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[oprf][shuffle] OPRF Shuffle using a 2-round 4-message shuffle protoc…
…ol (#816) * [oprf][shuffle] OPRF Shuffle using a 2-round 4-message shuffle protocol Implementation of the protocol (not sharded) --------- Co-authored-by: Artem Ignatyev <[email protected]> Co-authored-by: Alex Koshelev <[email protected]>
- Loading branch information
1 parent
fa1f394
commit 650cb4b
Showing
16 changed files
with
449 additions
and
30 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
2 changes: 2 additions & 0 deletions
2
src/helpers/transport/query.rs → src/helpers/transport/query/mod.rs
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,3 +1,5 @@ | ||
pub mod oprf_shuffle; | ||
|
||
use std::{ | ||
fmt::{Debug, Display, Formatter}, | ||
num::NonZeroU32, | ||
|
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
use serde::{Deserialize, Serialize}; | ||
|
||
#[derive(Debug, Copy, Clone, PartialEq, Eq, Default)] | ||
#[cfg_attr(feature = "enable-serde", derive(Serialize, Deserialize))] | ||
pub struct QueryConfig {} |
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
File renamed without changes.
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,3 +1,4 @@ | ||
pub mod apply_permutation; | ||
pub mod check_zero; | ||
mod if_else; | ||
pub(crate) mod mul; | ||
|
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,3 +1,5 @@ | ||
#[cfg(feature = "descriptive-gate")] | ||
pub mod prf_eval; | ||
pub mod prf_sharding; | ||
#[cfg(feature = "descriptive-gate")] | ||
pub mod shuffle; |
Oops, something went wrong.