aboutsummaryrefslogtreecommitdiffstats
path: root/src/powm_mnt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/powm_mnt.cpp')
-rw-r--r--src/powm_mnt.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/powm_mnt.cpp b/src/powm_mnt.cpp
index 747510d87..9b4916b67 100644
--- a/src/powm_mnt.cpp
+++ b/src/powm_mnt.cpp
@@ -55,9 +55,6 @@ inline void montgomery_reduce(BigInt& out, MemoryRegion<word>& z_buf,
bigint_monty_redc(z, z_size, x, x_size, u);
- if(bigint_cmp(z + x_size, x_size + 1, x, x_size) >= 0)
- bigint_sub2(z + x_size, x_size + 1, x, x_size);
-
out.get_reg().set(z + x_size, x_size + 1);
}