mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-26 01:05:40 +01:00
Use mpi_shrink() in ecp_precompute()
This commit is contained in:
parent
5868163e07
commit
7f762319ad
@ -1354,11 +1354,17 @@ static int ecp_precompute_comb( const ecp_group *grp,
|
||||
ecp_normalize_many( grp, TT, k );
|
||||
|
||||
/*
|
||||
* Post-precessing: reclaim some memory by not storing Z (always 1)
|
||||
* Post-precessing: reclaim some memory by
|
||||
* - not storing Z (always 1)
|
||||
* - shrinking other coordinates
|
||||
* However keep the same number of limbs as P, which will be useful in
|
||||
* ecp_select_comb()
|
||||
*/
|
||||
for( i = 0; i < ( 1U << (w-1) ); i++ )
|
||||
{
|
||||
mpi_free( &T[i].Z );
|
||||
mpi_shrink( &T[i].X, grp->P.n );
|
||||
mpi_shrink( &T[i].Y, grp->P.n );
|
||||
}
|
||||
|
||||
cleanup:
|
||||
|
Loading…
Reference in New Issue
Block a user