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

12 3

  /libcore/luni/src/test/java/tests/security/spec/
ECPrivateKeySpecTest.java 24 import java.security.spec.ECPoint;
39 ECPoint ecpoint = new ECPoint(BigInteger.valueOf(1), BigInteger local
45 ecparams = new ECParameterSpec(curve, ecpoint, BigInteger.valueOf(1), 1);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
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,
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECCurve.java 84 public ECPoint createPoint(BigInteger x, BigInteger y)
91 * and refer {@link ECPoint#getEncoded(boolean)}
93 public ECPoint createPoint(BigInteger x, BigInteger y, boolean withCompression)
100 protected abstract ECPoint createRawPoint(ECFieldElement x, ECFieldElement y, boolean withCompression);
112 public PreCompInfo getPreCompInfo(ECPoint p)
120 * <code>ECMultiplier</code>s to save the precomputation for this <code>ECPoint</code> for use
124 * The <code>ECPoint</code> to store precomputations for.
128 public void setPreCompInfo(ECPoint point, PreCompInfo preCompInfo)
134 public ECPoint importPoint(ECPoint p
    [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)
628 * Multiplies a {@link org.bouncycastle.math.ec.ECPoint.F2m ECPoint.F2m}
631 * @param p The ECPoint.F2m to multiply.
635 public static ECPoint.F2m multiplyRTnaf(ECPoint.F2m p, BigInteger k)
648 * Multiplies a {@link org.bouncycastle.math.ec.ECPoint.F2m ECPoint.F2m
    [all...]
WNafUtil.java 294 public static WNafPreCompInfo precompute(ECPoint p, int width, boolean includeNegated)
299 ECPoint[] preComp = wnafPreCompInfo.getPreComp();
302 preComp = new ECPoint[]{ p };
310 ECPoint twiceP = wnafPreCompInfo.getTwiceP();
342 ECPoint[] preCompNeg = wnafPreCompInfo.getPreCompNeg();
348 preCompNeg = new ECPoint[reqPreCompLen];
387 private static ECPoint[] resizeTable(ECPoint[] a, int length)
389 ECPoint[] result = new ECPoint[length]
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
X9ECParameters.java 13 import org.bouncycastle.math.ec.ECPoint;
27 private ECPoint g;
83 ECPoint g,
91 ECPoint g,
100 ECPoint g,
131 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;
59 ECPoint g = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L));
78 ECPoint g = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L));
120 ECPoint g = new ECPoint(BigInteger.ZERO, BigInteger.valueOf(2L));
146 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,
101 public ECPoint getGenerator() {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
ECKeyPairGenerator.java 14 import org.bouncycastle.math.ec.ECPoint;
52 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;
104 ECPoint p = key.getParameters().getG().multiply(k).normalize();
158 ECPoint G = key.getParameters().getG();
159 ECPoint Q = ((ECPublicKeyParameters)key).getQ();
161 ECPoint point = ECAlgorithms.sumOfTwoMultiplies(G, u1, Q, u2).normalize();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
BCECPublicKey.java 9 import java.security.spec.ECPoint;
46 private transient org.bouncycastle.math.ec.ECPoint q;
190 new ECPoint(
214 new ECPoint(
234 new ECPoint(
363 public ECPoint getW()
365 return new ECPoint(q.getAffineXCoord().toBigInteger(), q.getAffineYCoord().toBigInteger());
368 public org.bouncycastle.math.ec.ECPoint getQ()
372 if (q instanceof org.bouncycastle.math.ec.ECPoint.Fp)
374 return new org.bouncycastle.math.ec.ECPoint.Fp(null, q.getAffineXCoord(), q.getAffineYCoord())
    [all...]
BCECPrivateKey.java 9 import java.security.spec.ECPoint;
137 new ECPoint(
170 new ECPoint(
222 new ECPoint(
239 new ECPoint(
KeyPairGeneratorSpi.java 28 import org.bouncycastle.math.ec.ECPoint;
139 ECPoint g = EC5Util.convertPoint(curve, p.getGenerator(), false);
189 ECPoint g = EC5Util.convertPoint(curve, p.getGenerator(), false);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/interfaces/
ECPublicKeyTest.java 25 import java.security.spec.ECPoint;
68 public ECPoint getW() {
  /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()).normalize();
  /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(
233 // new ECPoint(
257 new ECPoint(
277 new ECPoint(
446 public ECPoint getW()
448 return new ECPoint(q.getAffineXCoord().toBigInteger(), q.getAffineYCoord().toBigInteger());
451 public org.bouncycastle.math.ec.ECPoint getQ()
455 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(
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLECPublicKey.java 26 import java.security.spec.ECPoint;
96 private ECPoint getPublicKey() {
104 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 
  /system/core/libmincrypt/tools/
DumpPublicKey.java 31 import java.security.spec.ECPoint;

Completed in 889 milliseconds

12 3