Skip to content

Commit

Permalink
Merge issues
Browse files Browse the repository at this point in the history
  • Loading branch information
richajaindce committed Sep 29, 2023
1 parent e282f37 commit 9c00477
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/protocol/prf_sharding/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use crate::{
malicious::ExtendableField, semi_honest::AdditiveShare as Replicated,
ReplicatedSecretSharing,
},
BitDecomposed, Linear as LinearSecretSharing, SharedValue,
BitDecomposed, Linear as LinearSecretSharing, LinearRefOps, SharedValue,
},
seq_join::{seq_join, seq_try_join_all},
};
Expand Down Expand Up @@ -277,6 +277,7 @@ where
C: UpgradableContext,
C::UpgradedContext<F>: UpgradedContext<F, Share = S>,
S: LinearSecretSharing<F> + Serializable + SecureMul<C::UpgradedContext<F>>,
for<'a> &'a S: LinearRefOps<'a, S, F>,
C::UpgradedContext<Gf2>: UpgradedContext<Gf2, Share = Replicated<Gf2>>,
F: PrimeField + ExtendableField,
TV: GaloisField,
Expand Down Expand Up @@ -311,6 +312,7 @@ async fn do_aggregation<C, BK, TV, F, S>(
where
C: UpgradedContext<F, Share = S>,
S: LinearSecretSharing<F> + Serializable + SecureMul<C>,
for<'a> &'a S: LinearRefOps<'a, S, F>,
BK: GaloisField,
TV: GaloisField,
F: PrimeField + ExtendableField,
Expand Down

0 comments on commit 9c00477

Please sign in to comment.