HomeSort by relevance Sort by last modified time
    Searched full:ecpoint (Results 26 - 50 of 58) sorted by null

12 3

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
WNafMultiplier.java 87 * @return A new <code>ECPoint</code> which equals <code>this</code>
90 public ECPoint multiply(ECPoint p, BigInteger k, PreCompInfo preCompInfo)
169 ECPoint[] preComp = wnafPreCompInfo.getPreComp();
170 ECPoint twiceP = wnafPreCompInfo.getTwiceP();
177 preComp = new ECPoint[]{ p };
195 ECPoint[] oldPreComp = preComp;
196 preComp = new ECPoint[reqPreCompLen];
212 // Apply the Window NAF to p using the precomputed ECPoint values.
213 ECPoint q = p.getCurve().getInfinity()
    [all...]
Tnaf.java 389 * <code>ECPoint.F2m</code>.
390 * @param p The ECPoint.F2m to which <code>&tau;()</code> is applied.
393 public static ECPoint.F2m tau(ECPoint.F2m p)
403 return new ECPoint.F2m(p.getCurve(), x.square(), y.square(), p.isCompressed());
642 * Multiplies a {@link org.bouncycastle.math.ec.ECPoint.F2m ECPoint.F2m}
645 * @param p The ECPoint.F2m to multiply.
649 public static ECPoint.F2m multiplyRTnaf(ECPoint.F2m p, BigInteger k
    [all...]
ECCurve.java 17 public abstract ECPoint createPoint(BigInteger x, BigInteger y, boolean withCompression);
19 public abstract ECPoint decodePoint(byte[] encoded);
21 public abstract ECPoint getInfinity();
39 ECPoint.Fp infinity;
46 this.infinity = new ECPoint.Fp(this, null, null);
64 public ECPoint createPoint(BigInteger x, BigInteger y, boolean withCompression)
66 return new ECPoint.Fp(this, fromBigInteger(x), fromBigInteger(y), withCompression);
75 public ECPoint decodePoint(byte[] encoded)
77 ECPoint p = null;
114 p = new ECPoint.Fp(this, x, beta, true)
    [all...]
ECFieldElement.java 537 // // elements involved are checked in ECPoint.F2m
561 // // elements involved are checked in ECPoint.F2m
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
EC5Util.java 8 import java.security.spec.ECPoint;
76 new ECPoint(
86 new ECPoint(
108 public static org.bouncycastle.math.ec.ECPoint convertPoint(
110 ECPoint point,
116 public static org.bouncycastle.math.ec.ECPoint convertPoint(
118 ECPoint point,
BCECPublicKey.java 9 import java.security.spec.ECPoint;
44 private transient org.bouncycastle.math.ec.ECPoint q;
188 new ECPoint(
212 new ECPoint(
232 new ECPoint(
350 public ECPoint getW()
352 return new ECPoint(q.getX().toBigInteger(), q.getY().toBigInteger());
355 public org.bouncycastle.math.ec.ECPoint getQ()
359 if (q instanceof org.bouncycastle.math.ec.ECPoint.Fp)
361 return new org.bouncycastle.math.ec.ECPoint.Fp(null, q.getX(), q.getY())
    [all...]
BCECPrivateKey.java 9 import java.security.spec.ECPoint;
140 new ECPoint(
173 new ECPoint(
185 new ECPoint(
236 // new ECPoint(
250 new ECPoint(
268 new ECPoint(
KeyPairGeneratorSpi.java 32 import org.bouncycastle.math.ec.ECPoint;
143 ECPoint g = EC5Util.convertPoint(curve, p.getGenerator(), false);
221 ECPoint g = EC5Util.convertPoint(curve, p.getGenerator(), false);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
X9ECParameters.java 13 import org.bouncycastle.math.ec.ECPoint;
27 private ECPoint g;
73 ECPoint g,
81 ECPoint g,
90 ECPoint g,
121 public ECPoint getG()
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/spec/
ECPrivateKeySpec_ImplTest.java 27 import java.security.spec.ECPoint;
60 ECPoint g = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L));
79 ECPoint g = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L));
121 ECPoint g = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L));
147 ECPoint g = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L));
  /libcore/luni/src/main/java/java/security/spec/
ECPublicKeySpec.java 25 private final ECPoint w;
40 public ECPublicKeySpec(ECPoint w, ECParameterSpec params) {
51 if (this.w.equals(ECPoint.POINT_INFINITY)) {
70 public ECPoint getW() {
ECParameterSpec.java 29 private final ECPoint generator;
53 public ECParameterSpec(EllipticCurve curve, ECPoint generator,
62 * @see #ECParameterSpec(EllipticCurve, ECPoint, BigInteger, int)
65 public ECParameterSpec(EllipticCurve curve, ECPoint generator,
114 public ECPoint getGenerator() {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/agreement/
ECDHBasicAgreement.java 9 import org.bouncycastle.math.ec.ECPoint;
45 ECPoint P = pub.getQ().multiply(key.getD());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
ECKeyPairGenerator.java 14 import org.bouncycastle.math.ec.ECPoint;
47 ECPoint Q = params.getG().multiply(d);
  /libcore/luni/src/main/java/java/security/interfaces/
ECPublicKey.java 21 import java.security.spec.ECPoint;
38 public ECPoint getW();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/signers/
ECDSASigner.java 14 import org.bouncycastle.math.ec.ECPoint;
81 ECPoint p = key.getParameters().getG().multiply(k);
135 ECPoint G = key.getParameters().getG();
136 ECPoint Q = ((ECPublicKeyParameters)key).getQ();
138 ECPoint point = ECAlgorithms.sumOfTwoMultiplies(G, u1, Q, u2);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/interfaces/
ECPublicKeyTest.java 25 import java.security.spec.ECPoint;
65 public ECPoint getW() {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JCEECPublicKey.java 9 import java.security.spec.ECPoint;
52 private org.bouncycastle.math.ec.ECPoint q;
169 new ECPoint(
234 // new ECPoint(
258 new ECPoint(
278 new ECPoint(
447 public ECPoint getW()
449 return new ECPoint(q.getX().toBigInteger(), q.getY().toBigInteger());
452 public org.bouncycastle.math.ec.ECPoint getQ()
456 if (q instanceof org.bouncycastle.math.ec.ECPoint.Fp
    [all...]
JCEECPrivateKey.java 9 import java.security.spec.ECPoint;
129 new ECPoint(
160 new ECPoint(
172 new ECPoint(
217 // new ECPoint(
231 new ECPoint(
249 new ECPoint(
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLECPublicKey.java 28 import java.security.spec.ECPoint;
98 private ECPoint getPublicKey() {
106 public ECPoint getW() {
OpenSSLECGroupContext.java 26 import java.security.spec.ECPoint;
136 final ECPoint generator = params.getGenerator();
164 final ECPoint generator = generatorCtx.getECPoint();
OpenSSLECKeyFactory.java 28 import java.security.spec.ECPoint;
141 ECPoint w = ecKey.getW();
  /libcore/luni/src/test/java/tests/security/interfaces/
Util.java 21 import java.security.spec.ECPoint;
79 new ECPoint(BigInteger.valueOf(1), BigInteger.valueOf(3)),
  /prebuilts/sdk/tools/lib/
signapk.jar 
  /external/smack/src/org/xbill/DNS/
DNSSEC.java 392 spec = new ECParameterSpec(curve, new ECPoint(gx, gy), n, 1);
423 ECPoint q = new ECPoint(x, y);

Completed in 3252 milliseconds

12 3