commit | 8209ff335ef94fbb949f5bd634bcbc2e0ba86a49 | [log] [tgz] |
---|---|---|
author | Janos Follath <janos.follath@arm.com> | Tue Nov 21 12:48:52 2023 +0000 |
committer | Janos Follath <janos.follath@arm.com> | Fri Dec 08 08:41:08 2023 +0000 |
tree | 6ccc89907a929a3203eecbb7d02b286aa73ab7ad | |
parent | aa5cc7b930c96f2580562925ce654aad6befa457 [diff] [blame] |
Make local function static Signed-off-by: Janos Follath <janos.follath@arm.com>
diff --git a/library/rsa.c b/library/rsa.c index 9dc0ec5..3095fec 100644 --- a/library/rsa.c +++ b/library/rsa.c
@@ -986,7 +986,7 @@ * Unblind * 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; const mbedtls_mpi_uint mm = mbedtls_mpi_core_montmul_init(N->p);