Skip to content

Commit

Permalink
Merge pull request #6 from bingcicle/patch-1
Browse files Browse the repository at this point in the history
fix link to add-2008-bbjlp
  • Loading branch information
arnaucube authored May 4, 2023
2 parents 1a69ae6 + 5365144 commit cd36d49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ impl PointProjective {

#[allow(clippy::many_single_char_names)]
pub fn add(&self, q: &PointProjective) -> PointProjective {
// add-2008-bbjlp https://hyperelliptic.org/EFD/g1p/auto-twisted-projective.html#doubling-dbl-2008-bbjlp
// add-2008-bbjlp https://hyperelliptic.org/EFD/g1p/auto-twisted-projective.html#addition-add-2008-bbjlp
let mut a = self.z;
a.mul_assign(&q.z);
let mut b = a;
Expand Down

0 comments on commit cd36d49

Please sign in to comment.