Skip to content

Commit

Permalink
Update relic_fp2_mul.c
Browse files Browse the repository at this point in the history
  • Loading branch information
dfaranha authored Sep 26, 2023
1 parent 358e66a commit f05130c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/fpx/relic_fp2_mul.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,6 @@ void fp2_mul_basic(fp2_t c, const fp2_t a, const fp2_t b) {

/* t1 = (a_0 * b_0) + i^2 * (a_1 * b_1). */
fp_subc_low(t1, t0, t4);

/* t1 = u^2 * (a_1 * b_1). */
for (int i = -1; i > fp_prime_get_qnr(); i--) {
fp_subc_low(t1, t1, t4);
}
Expand Down

0 comments on commit f05130c

Please sign in to comment.