Skip to content

Commit

Permalink
Fix rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
daxpedda committed Jan 14, 2022
1 parent e6d6e5a commit be9b41f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion k256/src/arithmetic/hash2curve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ impl MapToCurve for FieldElement {
AffinePoint {
x: qx,
y: qy,
infinity: Choice::from(0u8),
infinity: 0,
}
.into()
}
Expand Down
2 changes: 1 addition & 1 deletion p256/src/arithmetic/hash2curve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ impl MapToCurve for FieldElement {
AffinePoint {
x: qx,
y: qy,
infinity: Choice::from(0u8),
infinity: 0,
}
.into()
}
Expand Down

0 comments on commit be9b41f

Please sign in to comment.