commit | f7f88d6443f369e384731667c47fe28f829bfdda | [log] [tgz] |
---|---|---|
author | Janos Follath <janos.follath@arm.com> | Tue Nov 21 14:20:08 2023 +0000 |
committer | Janos Follath <janos.follath@arm.com> | Fri Dec 08 08:41:08 2023 +0000 |
tree | e16c8a0a208e134e9a939c0bb7d4748bc0f125e0 | |
parent | 8209ff335ef94fbb949f5bd634bcbc2e0ba86a49 [diff] |
Fix style Signed-off-by: Janos Follath <janos.follath@arm.com>
diff --git a/library/rsa.c b/library/rsa.c index 3095fec..8ddef2d 100644 --- a/library/rsa.c +++ b/library/rsa.c
@@ -986,7 +986,7 @@ * Unblind * T = T * Vf mod N */ -static 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);