Skip to content

Commit

Permalink
Prio3SumVec: Use Field64
Browse files Browse the repository at this point in the history
As of draft 12, Prio3Sum uses Field64 instead of Field128, since we no
longer use joint randomness in the circuit.
  • Loading branch information
cjpatton committed Dec 12, 2024
1 parent 3c1aeb3 commit c36b69e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vdaf/prio3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ impl Prio3Count {
/// The count-vector type. Each measurement is a vector of integers in `[0,2^bits)` and the
/// aggregate is the element-wise sum.
pub type Prio3SumVec =
Prio3<SumVec<Field128, ParallelSum<Field128, Mul<Field128>>>, XofTurboShake128, 16>;
Prio3<SumVec<Field64, ParallelSum<Field64, Mul<Field64>>>, XofTurboShake128, 16>;

impl Prio3SumVec {
/// Construct an instance of Prio3SumVec with the given number of aggregators. `bits` defines
Expand Down

0 comments on commit c36b69e

Please sign in to comment.