From c36b69e9bdb7b90d0b6e74ea0459e691565ba47f Mon Sep 17 00:00:00 2001 From: Christopher Patton Date: Thu, 12 Dec 2024 06:48:08 -0800 Subject: [PATCH] Prio3SumVec: Use Field64 As of draft 12, Prio3Sum uses Field64 instead of Field128, since we no longer use joint randomness in the circuit. --- src/vdaf/prio3.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vdaf/prio3.rs b/src/vdaf/prio3.rs index 840872e7..b831957c 100644 --- a/src/vdaf/prio3.rs +++ b/src/vdaf/prio3.rs @@ -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>>, XofTurboShake128, 16>; + Prio3>>, XofTurboShake128, 16>; impl Prio3SumVec { /// Construct an instance of Prio3SumVec with the given number of aggregators. `bits` defines