1
0
mirror of https://github.com/ARMmbed/mbedtls.git synced 2025-06-17 01:42:14 +08:00

Make local function static

Signed-off-by: Janos Follath <janos.follath@arm.com>
This commit is contained in:
Janos Follath 2023-11-21 12:48:52 +00:00
parent aa5cc7b930
commit 8209ff335e

View File

@ -986,7 +986,7 @@ cleanup:
* Unblind * Unblind
* T = T * Vf mod N * T = T * Vf mod N
*/ */
int rsa_unblind(mbedtls_mpi* T, mbedtls_mpi* Vf, mbedtls_mpi* N) static int rsa_unblind(mbedtls_mpi* T, mbedtls_mpi* Vf, mbedtls_mpi* N)
{ {
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
const mbedtls_mpi_uint mm = mbedtls_mpi_core_montmul_init(N->p); const mbedtls_mpi_uint mm = mbedtls_mpi_core_montmul_init(N->p);