Skip to content

Commit

Permalink
Fix for merge from main
Browse files Browse the repository at this point in the history
  • Loading branch information
andyleiserson committed Aug 19, 2024
1 parent 395c5db commit 403cf27
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ipa-core/src/protocol/ipa_prf/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use crate::{
protocol::{
basics::{BooleanArrayMul, BooleanProtocols},
context::{
Context, DZKPUpgraded, DZKPUpgradedSemiHonestContext, SemiHonestContext,
Context, DZKPUpgraded, DZKPUpgradedSemiHonestContext, MacUpgraded, SemiHonestContext,
UpgradableContext, UpgradedSemiHonestContext,
},
ipa_prf::{
Expand All @@ -30,6 +30,7 @@ use crate::{
attribute_cap_aggregate, histograms_ranges_sortkeys, PrfShardedIpaInputRow,
},
},
prss::FromPrss,
RecordId,
},
secret_sharing::{
Expand Down Expand Up @@ -301,7 +302,7 @@ where
TS: BooleanArray,
Replicated<Boolean, CONV_CHUNK>: BooleanProtocols<DZKPUpgraded<C>, CONV_CHUNK>,
Replicated<Fp25519, PRF_CHUNK>:
PrfSharing<MacUpgraded<C>, PRF_CHUNK, Field = Fp25519> + FromPrss,
PrfSharing<MacUpgraded<C, Fp25519>, PRF_CHUNK, Field = Fp25519> + FromPrss,
{
let conv_records =
TotalRecords::specified(div_round_up(input_rows.len(), Const::<CONV_CHUNK>))?;
Expand Down

0 comments on commit 403cf27

Please sign in to comment.