Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
robinhundt committed May 7, 2024
1 parent e1b0434 commit b69baac
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion crates/zappot/benches/benchmarks/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pub mod aes_rng;
pub mod ot_ext;
pub mod silent_ot;
pub mod silent_ot;
14 changes: 6 additions & 8 deletions crates/zappot/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,12 @@ use blake2::{

pub mod base_ot;
pub mod ot_ext;
#[cfg(
any(
feature = "silent-ot-quasi-cyclic-code",
feature = "silent-ot-silver-code",
feature = "silent-ot-ea-code",
feature = "silent-ot-ex-conv-code"
)
)]
#[cfg(any(
feature = "silent-ot-quasi-cyclic-code",
feature = "silent-ot-silver-code",
feature = "silent-ot-ea-code",
feature = "silent-ot-ex-conv-code"
))]
pub mod silent_ot;
pub mod traits;
pub mod util;
Expand Down
1 change: 1 addition & 0 deletions crates/zappot/src/silent_ot/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -919,6 +919,7 @@ async fn pprf_channel<BaseMsg: RemoteSend>(
mod test {
use super::*;
use crate::silent_ot::pprf::tests::fake_base;
use bitvec::slice::BitSlice;
use rand::rngs::StdRng;
use rand_core::SeedableRng;

Expand Down

0 comments on commit b69baac

Please sign in to comment.