commit | 81e57021c67a1a624fd8085ae287de50121e19bd | [log] [tgz] |
---|---|---|
author | Gabor Mezei <gabor.mezei@arm.com> | Mon Sep 26 17:13:33 2022 +0200 |
committer | Gabor Mezei <gabor.mezei@arm.com> | Fri Sep 30 13:36:40 2022 +0200 |
tree | 248e2c9cd3ad62ab5f4a1fbca22b7eebcdb25ef8 | |
parent | 2b5bf4cec7166e126b5f68bb1c2bafa8973ea2d2 [diff] [blame] |
Change the input parameters to be const Signed-off-by: Gabor Mezei <gabor.mezei@arm.com>
diff --git a/library/bignum_mod_raw.h b/library/bignum_mod_raw.h index 82a8ce8..60c8d8a 100644 --- a/library/bignum_mod_raw.h +++ b/library/bignum_mod_raw.h
@@ -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 );