Make local function static
Signed-off-by: Janos Follath <janos.follath@arm.com>
This commit is contained in:
parent
a865fc951e
commit
100dcddfca
1 changed files with 1 additions and 1 deletions
|
@ -974,7 +974,7 @@ cleanup:
|
|||
* 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);
|
||||
|
|
Loading…
Reference in a new issue