Uses of Class
org.bitcoin.x6763.crypto.ecdsa.math.ECPoint

Packages that use ECPoint
org.bitcoin.x6763.crypto.ecdsa   
org.bitcoin.x6763.crypto.ecdsa.interfaces   
org.bitcoin.x6763.crypto.ecdsa.math   
org.bitcoin.x6763.crypto.ecdsa.params   
 

Uses of ECPoint in org.bitcoin.x6763.crypto.ecdsa
 

Fields in org.bitcoin.x6763.crypto.ecdsa declared as ECPoint
static ECPoint Secp256k1.G
          base point G
 

Methods in org.bitcoin.x6763.crypto.ecdsa that return ECPoint
 ECPoint PublicKey.getW()
          Returns the public key coordinates as an ECPoint object
 

Constructors in org.bitcoin.x6763.crypto.ecdsa with parameters of type ECPoint
PublicKey(ECPoint W)
          Creates an elliptic curve public key object from an ECPoint
 

Uses of ECPoint in org.bitcoin.x6763.crypto.ecdsa.interfaces
 

Methods in org.bitcoin.x6763.crypto.ecdsa.interfaces that return ECPoint
 ECPoint ECPublicKey.getW()
           
 

Uses of ECPoint in org.bitcoin.x6763.crypto.ecdsa.math
 

Methods in org.bitcoin.x6763.crypto.ecdsa.math that return ECPoint
 ECPoint ECPoint.add(ECPoint b)
           
 ECPoint ECCurve.createPoint(java.math.BigInteger x, java.math.BigInteger y)
           
 ECPoint ECCurve.getInfinity()
           
 ECPoint ECPoint.multiply(java.math.BigInteger k)
           
 ECPoint ECMultiplier.multiply(ECPoint p, java.math.BigInteger k)
           
 ECPoint ECPoint.negate()
           
static ECPoint ECAlgorithms.shamirsTrick(ECPoint P, java.math.BigInteger k, ECPoint Q, java.math.BigInteger l)
           
 ECPoint ECPoint.subtract(ECPoint b)
           
static ECPoint ECAlgorithms.sumOfTwoMultiplies(ECPoint P, java.math.BigInteger a, ECPoint Q, java.math.BigInteger b)
           
 ECPoint ECPoint.twice()
           
 

Methods in org.bitcoin.x6763.crypto.ecdsa.math with parameters of type ECPoint
 ECPoint ECPoint.add(ECPoint b)
           
 ECPoint ECMultiplier.multiply(ECPoint p, java.math.BigInteger k)
           
static ECPoint ECAlgorithms.shamirsTrick(ECPoint P, java.math.BigInteger k, ECPoint Q, java.math.BigInteger l)
           
 ECPoint ECPoint.subtract(ECPoint b)
           
static ECPoint ECAlgorithms.sumOfTwoMultiplies(ECPoint P, java.math.BigInteger a, ECPoint Q, java.math.BigInteger b)
           
 

Uses of ECPoint in org.bitcoin.x6763.crypto.ecdsa.params
 

Constructors in org.bitcoin.x6763.crypto.ecdsa.params with parameters of type ECPoint
ECDomainParameters(ECCurve curve, ECPoint G, java.math.BigInteger n, java.math.BigInteger h)