Change the input parameters to be const
Signed-off-by: Gabor Mezei <gabor.mezei@arm.com>
This commit is contained in:
parent
2b5bf4cec7
commit
81e57021c6
2 changed files with 2 additions and 2 deletions
|
@ -42,7 +42,7 @@
|
|||
#include "constant_time_internal.h"
|
||||
|
||||
void mbedtls_mpi_mod_raw_cond_assign( mbedtls_mpi_uint *X,
|
||||
mbedtls_mpi_uint *Y,
|
||||
const mbedtls_mpi_uint *Y,
|
||||
const mbedtls_mpi_mod_modulus *m,
|
||||
unsigned char assign )
|
||||
{
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
* neither its original value nor the value in \p Y.
|
||||
*/
|
||||
void mbedtls_mpi_mod_raw_cond_assign( mbedtls_mpi_uint *X,
|
||||
mbedtls_mpi_uint *Y,
|
||||
const mbedtls_mpi_uint *Y,
|
||||
const mbedtls_mpi_mod_modulus *m,
|
||||
unsigned char assign );
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue