Example usage for Java org.bouncycastle.math.ec ECPoint fields, constructors, methods, implement or subclass
The text is from its open source code.
ECPoint | add(ECPoint b) |
boolean | equals(ECPoint other) |
boolean | equals(Object other) |
ECFieldElement | getAffineXCoord() Returns the affine x-coordinate after checking that this point is normalized. |
ECFieldElement | getAffineYCoord() Returns the affine y-coordinate after checking that this point is normalized |
ECCurve | getCurve() |
byte[] | getEncoded(boolean compressed) Get an encoding of the point value, optionally in compressed format. |
ECFieldElement | getXCoord() Returns the x-coordinate. |
ECFieldElement | getYCoord() Returns the y-coordinate. |
boolean | isInfinity() |
boolean | isValid() |
ECPoint | multiply(BigInteger k) Multiplies this ECPoint by the given number. |
ECPoint | negate() |
ECPoint | normalize() Normalization ensures that any projective coordinate is 1, and therefore that the x, y coordinates reflect those of the equivalent point in an affine coordinate system. |
ECPoint | subtract(ECPoint b) |
String | toString() |