HomeSort by relevance Sort by last modified time
    Searched refs:ECPoint (Results 1 - 25 of 49) sorted by null

1 2

  /external/bouncycastle/src/main/java/org/bouncycastle/math/ec/
WNafPreCompInfo.java 10 * Array holding the precomputed <code>ECPoint</code>s used for the Window
15 private ECPoint[] preComp = null;
18 * Holds an <code>ECPoint</code> representing twice(this). Used for the
23 private ECPoint twiceP = null;
25 protected ECPoint[] getPreComp()
30 protected void setPreComp(ECPoint[] preComp)
35 protected ECPoint getTwiceP()
40 protected void setTwiceP(ECPoint twiceThis)
WTauNafPreCompInfo.java 10 * Array holding the precomputed <code>ECPoint.F2m</code>s used for the
15 private ECPoint.F2m[] preComp = null;
19 * @param preComp Array holding the precomputed <code>ECPoint.F2m</code>s
24 WTauNafPreCompInfo(ECPoint.F2m[] preComp)
30 * @return the array holding the precomputed <code>ECPoint.F2m</code>s
35 protected ECPoint.F2m[] getPreComp()
ECMultiplier.java 7 * for <code>ECPoint</code>s.
12 * Multiplies the <code>ECPoint p</code> by <code>k</code>, i.e.
14 * @param p The <code>ECPoint</code> to be multiplied.
18 ECPoint multiply(ECPoint p, BigInteger k, PreCompInfo preCompInfo);
ECAlgorithms.java 7 public static ECPoint sumOfTwoMultiplies(ECPoint P, BigInteger a,
8 ECPoint Q, BigInteger b)
48 public static ECPoint shamirsTrick(ECPoint P, BigInteger k,
49 ECPoint Q, BigInteger l)
59 private static ECPoint implShamirsTrick(ECPoint P, BigInteger k,
60 ECPoint Q, BigInteger l)
63 ECPoint Z = P.add(Q)
    [all...]
WTauNafMultiplier.java 12 * Multiplies a {@link org.bouncycastle.math.ec.ECPoint.F2m ECPoint.F2m}
15 * @param p The ECPoint.F2m to multiply.
19 public ECPoint multiply(ECPoint point, BigInteger k, PreCompInfo preCompInfo)
21 if (!(point instanceof ECPoint.F2m))
23 throw new IllegalArgumentException("Only ECPoint.F2m can be " +
27 ECPoint.F2m p = (ECPoint.F2m)point;
41 * Multiplies a {@link org.bouncycastle.math.ec.ECPoint.F2m ECPoint.F2m
    [all...]
FpNafMultiplier.java 12 * @see org.bouncycastle.math.ec.ECMultiplier#multiply(org.bouncycastle.math.ec.ECPoint, java.math.BigInteger)
14 public ECPoint multiply(ECPoint p, BigInteger k, PreCompInfo preCompInfo)
21 ECPoint neg = p.negate();
22 ECPoint R = p;
ECPoint.java 10 public abstract class ECPoint
24 protected ECPoint(ECCurve curve, ECFieldElement x, ECFieldElement y)
64 if (!(other instanceof ECPoint))
69 ECPoint o = (ECPoint)other;
92 // * this <code>ECPoint</code>.
101 * to save the precomputation for this <code>ECPoint</code> to store the
113 public abstract ECPoint add(ECPoint b);
114 public abstract ECPoint subtract(ECPoint b)
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/params/
ECPublicKeyParameters.java 3 import org.bouncycastle.math.ec.ECPoint;
8 ECPoint Q;
11 ECPoint Q,
18 public ECPoint getQ()
ECDomainParameters.java 7 import org.bouncycastle.math.ec.ECPoint;
14 ECPoint G;
20 ECPoint G,
32 ECPoint G,
45 ECPoint G,
62 public ECPoint getG()
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/spec/
ECPublicKeySpec.java 3 import org.bouncycastle.math.ec.ECPoint;
11 private ECPoint q;
20 ECPoint q,
31 public ECPoint getQ()