Skip to content

Commit

Permalink
fix: norm sign in pluto/fp2
Browse files Browse the repository at this point in the history
  • Loading branch information
davidnevadoc committed May 7, 2024
1 parent 5246c17 commit 2d4bb0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pluto_eris/fields/fp2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ impl Fp2 {
// norm = self * self.conjugate()
let t0 = self.c0.square();
let t1 = self.c1.square() * U_SQUARE;
t1 - t0
t0 - t1
}
}

Expand Down

0 comments on commit 2d4bb0d

Please sign in to comment.