aboutsummaryrefslogtreecommitdiffstats
path: root/src/math
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-03-13 04:32:44 +0000
committerlloyd <[email protected]>2010-03-13 04:32:44 +0000
commitb027160b916ba9a67de5e2f34df63bcdc02f3987 (patch)
treeb02ebdcb0da6e8a37838896063cd7fc5dbb1d1e5 /src/math
parent06af2a684ef2a906cc3ca057efdbce466dbde0bb (diff)
Name args to bigint_{mul,sqr} in header
Diffstat (limited to 'src/math')
-rw-r--r--src/math/bigint/mp_core.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/math/bigint/mp_core.h b/src/math/bigint/mp_core.h
index ea27a77a7..a2a89186d 100644
--- a/src/math/bigint/mp_core.h
+++ b/src/math/bigint/mp_core.h
@@ -86,12 +86,12 @@ void bigint_comba_sqr16(word[64], const word[32]);
/*
* High Level Multiplication/Squaring Interfaces
*/
-void bigint_mul(word[], u32bit, word[],
- const word[], u32bit, u32bit,
- const word[], u32bit, u32bit);
+void bigint_mul(word z[], u32bit z_size, word workspace[],
+ const word x[], u32bit x_size, u32bit x_sw,
+ const word y[], u32bit y_size, u32bit y_sw);
-void bigint_sqr(word[], u32bit, word[],
- const word[], u32bit, u32bit);
+void bigint_sqr(word z[], u32bit z_size, word workspace[],
+ const word x[], u32bit x_size, u32bit x_sw);
}