Skip to content

Commit 1335bd3

Browse files
committed
removes division by two and fmt
1 parent 5a2d8b8 commit 1335bd3

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

ml-kem/src/compress.rs

+7-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ where
1717
const POW2_HALF: u32 = 1 << (T::USIZE - 1);
1818
const MASK: Integer = ((1 as Integer) << T::USIZE) - 1;
1919
const DIV_SHIFT: u32 = 28 + (T::U32 >> 3) * 4;
20-
const DIV_MUL: u64 = 2u64.pow(T::DIV_SHIFT) / FieldElement::Q64;
20+
const DIV_MUL: u64 = (1 << T::DIV_SHIFT) / FieldElement::Q64;
2121
}
2222

2323
// Traits for objects that allow compression / decompression
@@ -34,7 +34,7 @@ impl Compress for FieldElement {
3434
// round(a / b) = floor((a + b/2) / b)
3535
// a / q ~= (a * x) >> s where x / (2^s) ~= 1/q
3636
fn compress<D: CompressionFactor>(&mut self) -> &Self {
37-
const Q_HALF: u64 = (FieldElement::Q64 - 1) / 2;
37+
const Q_HALF: u64 = (FieldElement::Q64 - 1) >> 1;
3838
let x = u64::from(self.0);
3939
let y = ((((x << D::USIZE) + Q_HALF) * D::DIV_MUL) >> D::DIV_SHIFT).truncate();
4040
self.0 = y.truncate() & D::MASK;
@@ -95,14 +95,17 @@ pub(crate) mod test {
9595
fn compression_decompression_inequality<D: CompressionFactor>() {
9696
for x in 0..FieldElement::Q {
9797
let mut y = FieldElement(x);
98-
98+
9999
y.compress::<D>();
100100
y.decompress::<D>();
101101

102102
let lhs = (i32::from(y.0) - i32::from(x)) % (i32::from(FieldElement::Q));
103103
let rhs = ((FieldElement::Q32 + (1 << (D::U32 + 1)) - 1) / (1 << (D::U32 + 1))) as i32;
104104

105-
assert!(lhs <= rhs, "Inequality failed for x = {x}: lhs = {lhs}, rhs = {rhs}");
105+
assert!(
106+
lhs <= rhs,
107+
"Inequality failed for x = {x}: lhs = {lhs}, rhs = {rhs}"
108+
);
106109
}
107110
}
108111

0 commit comments

Comments
 (0)