diff options
-rw-r--r-- | src/math/bigint/mp_core.h | 10 |
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); } |