Function subMixed [src]
Subtract P256 points, the second being specified using affine coordinates.
Prototype
pub fn subMixed(p: P256, q: AffineCoordinates) P256 Parameters
p: P256q: AffineCoordinates Source
pub fn subMixed(p: P256, q: AffineCoordinates) P256 {
return p.addMixed(q.neg());
}