mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-04 20:24:10 +00:00
Add a divider to separate Neg code from Add/Sub.
This commit is contained in:
parent
ed315ffcae
commit
27e4ea5181
1 changed files with 4 additions and 0 deletions
|
|
@ -822,6 +822,10 @@ impl<'b> SubAssign<&'b ExtendedPoint> for ExtendedPoint {
|
|||
}
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// Negation
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
impl<'a> Neg for &'a ExtendedPoint {
|
||||
type Output = ExtendedPoint;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue