commit | b7438d1f6235c0713b364d255657d82ff468f4e7 | [log] [tgz] |
---|---|---|
author | Tom Cosgrove <tom.cosgrove@arm.com> | Thu Sep 15 15:05:59 2022 +0100 |
committer | Tom Cosgrove <tom.cosgrove@arm.com> | Thu Sep 15 15:05:59 2022 +0100 |
tree | 61f308d4322d742d5e8f5b5239b0292c04a63614 | |
parent | 2701deaa4b4a9a6257470b038c5ccab3745f25cc [diff] [blame] |
Update name of mbedtls_mpi_montg_init() Signed-off-by: Tom Cosgrove <tom.cosgrove@arm.com>
diff --git a/library/bignum.c b/library/bignum.c index de61952..19d59be 100644 --- a/library/bignum.c +++ b/library/bignum.c
@@ -1547,7 +1547,7 @@ static void mpi_montg_init( mbedtls_mpi_uint *mm, const mbedtls_mpi *N ) { - *mm = mbedtls_mpi_montg_init( N->p ); + *mm = mbedtls_mpi_core_montmul_init( N->p ); } /** Montgomery multiplication: A = A * B * R^-1 mod N (HAC 14.36)