Skip to content

Commit 32ed5e3

Browse files
committed
rename function
1 parent 2cc13bc commit 32ed5e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

math/src/field/fields/u32_montgomery_backend_prime_field.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ impl MontgomeryAlgorithms {
265265
///
266266
/// Converts a value from Montgomery domain using reductions mod p
267267
#[inline(always)]
268-
const fn monty_reduce(x: u64, mu: &u32, q: &u32) -> u32 {
268+
const fn montgomery_reduction(x: u64, mu: &u32, q: &u32) -> u32 {
269269
let t = x.wrapping_mul(*mu as u64) & (u32::MAX as u64);
270270
let u = t * (*q as u64);
271271
let (x_sub_u, over) = x.overflowing_sub(u);
@@ -277,7 +277,7 @@ impl MontgomeryAlgorithms {
277277
#[inline(always)]
278278
pub const fn mul(a: &u32, b: &u32, q: &u32, mu: &u32) -> u32 {
279279
let x = *a as u64 * *b as u64;
280-
Self::monty_reduce(x, mu, q)
280+
Self::montgomery_reduction(x, mu, q)
281281
}
282282

283283
pub fn exp_power_of_2(a: &u32, power_log: usize, q: &u32, mu: &u32) -> u32 {

0 commit comments

Comments
 (0)