aboutsummaryrefslogtreecommitdiffstats
path: root/src/mp_asm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mp_asm.cpp')
-rw-r--r--src/mp_asm.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/mp_asm.cpp b/src/mp_asm.cpp
index 88cc8b6e1..64605bb48 100644
--- a/src/mp_asm.cpp
+++ b/src/mp_asm.cpp
@@ -172,18 +172,6 @@ void bigint_linmul3(word z[], const word x[], u32bit x_size, word y)
}
/*************************************************
-* Simple O(N^2) Multiplication *
-*************************************************/
-void bigint_simple_mul(word z[], const word x[], u32bit x_size,
- const word y[], u32bit y_size)
- {
- clear_mem(z, x_size + y_size);
-
- for(u32bit j = 0; j != x_size; ++j)
- z[j+y_size] = bigint_mul_add_words(z + j, y, y_size, x[j]);
- }
-
-/*************************************************
* Montgomery Reduction Algorithm *
*************************************************/
void bigint_monty_redc(word z[], u32bit z_size,