summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crypto/ec/ecp_nistp521.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/ec/ecp_nistp521.c b/crypto/ec/ecp_nistp521.c
index 484c42eac9..cc2243a8b3 100644
--- a/crypto/ec/ecp_nistp521.c
+++ b/crypto/ec/ecp_nistp521.c
@@ -843,9 +843,9 @@ static void felem_inv(felem out, const felem in)
felem_reduce(ftmp3, tmp); /* 2^521 - 2^9 */
}
felem_mul(tmp, ftmp3, ftmp4);
- felem_reduce(ftmp3, tmp); /* 2^512 - 2^2 */
+ felem_reduce(ftmp3, tmp); /* 2^521 - 2^2 */
felem_mul(tmp, ftmp3, in);
- felem_reduce(out, tmp); /* 2^512 - 3 */
+ felem_reduce(out, tmp); /* 2^521 - 3 */
}
/* This is 2^521-1, expressed as an felem */