RSA: document Montgomery trick in unblind

Signed-off-by: Janos Follath <janos.follath@arm.com>
diff --git a/library/rsa.c b/library/rsa.c
index 97e7228..f57909b 100644
--- a/library/rsa.c
+++ b/library/rsa.c
@@ -991,9 +991,14 @@
     MBEDTLS_MPI_CHK(mbedtls_mpi_grow(T, nlimbs));
     MBEDTLS_MPI_CHK(mbedtls_mpi_grow(Vf, nlimbs));
 
-    // T = T * R mod N
+    /* T = T * Vf mod N
+     * Reminder: montmul(A, B, N) = A * B * R^-1 mod N
+     * Usually both operands are multiplied by R mod N beforehand (by calling
+     * `to_mont_rep()` on them), yielding a result that's also * R mod N (aka
+     * "in the Montgomery domain"). Here we only multiply one operand by R mod
+     * N, so the result is directly what we want - no need to call
+     * `from_mont_rep()` on it. */
     mbedtls_mpi_core_to_mont_rep(T->p, T->p, N->p, nlimbs, mm, RR.p, M_T.p);
-    // T = T * Vf mod N
     mbedtls_mpi_core_montmul(T->p, T->p, Vf->p, nlimbs, N->p, nlimbs, mm, M_T.p);
 
 cleanup: