Searched refs:getAffineYCoord (Results 1 – 16 of 16) sorted by relevance
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/ |
D | EC5Util.java | 151 ecP.getG().getAffineYCoord().toBigInteger()), in convertToSpec() 171 ecP.getG().getAffineYCoord().toBigInteger()), in convertToSpec() 181 ecP.getG().getAffineYCoord().toBigInteger()), in convertToSpec() 196 domainParameters.getG().getAffineYCoord().toBigInteger()), in convertToSpec() 266 spec.getG().getAffineYCoord().toBigInteger()), in convertSpec() 276 spec.getG().getAffineYCoord().toBigInteger()), in convertSpec()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
D | JCEECPublicKey.java | 104 …q = s.getCurve().createPoint(q.getAffineXCoord().toBigInteger(), q.getAffineYCoord().toBigInteger(… in JCEECPublicKey() 174 dp.getG().getAffineYCoord().toBigInteger()), in createSpec() 263 ecP.getG().getAffineYCoord().toBigInteger()), in populateFromPubKeyInfo() 283 ecP.getG().getAffineYCoord().toBigInteger()), in populateFromPubKeyInfo() 411 …reatePoint(this.getQ().getAffineXCoord().toBigInteger(), this.getQ().getAffineYCoord().toBigIntege… in getEncoded() 452 return new ECPoint(q.getAffineXCoord().toBigInteger(), q.getAffineYCoord().toBigInteger()); in getW() 487 …buf.append(" Y: ").append(this.q.getAffineYCoord().toBigInteger().toString(16)).append(… in toString()
|
D | JCEECPrivateKey.java | 131 dp.getG().getAffineYCoord().toBigInteger()), in JCEECPrivateKey() 162 dp.getG().getAffineYCoord().toBigInteger()), in JCEECPrivateKey() 174 spec.getG().getAffineYCoord().toBigInteger()), in JCEECPrivateKey() 233 ecP.getG().getAffineYCoord().toBigInteger()), in populateFromPrivKeyInfo() 251 ecP.getG().getAffineYCoord().toBigInteger()), in populateFromPrivKeyInfo()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/ |
D | BCECPublicKey.java | 89 …reatePoint(spec.getQ().getAffineXCoord().toBigInteger(), spec.getQ().getAffineYCoord().toBigIntege… in BCECPublicKey() 187 dp.getG().getAffineYCoord().toBigInteger()), in createSpec() 268 return new ECPoint(q.getAffineXCoord().toBigInteger(), q.getAffineYCoord().toBigInteger()); in getW() 306 … buf.append(" Y: ").append(q.getAffineYCoord().toBigInteger().toString(16)).append(nl); in toString()
|
D | BCECPrivateKey.java | 137 dp.getG().getAffineYCoord().toBigInteger()), in BCECPrivateKey() 170 dp.getG().getAffineYCoord().toBigInteger()), in BCECPrivateKey()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/ |
D | ECNamedCurveSpec.java | 54 return new ECPoint(g.getAffineXCoord().toBigInteger(), g.getAffineYCoord().toBigInteger()); in convertPoint()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/ |
D | SecP192K1Point.java | 65 return new SecP192K1Point(null, getAffineXCoord(), getAffineYCoord()); in detach()
|
D | SecP256K1Point.java | 65 return new SecP256K1Point(null, getAffineXCoord(), getAffineYCoord()); in detach()
|
D | SecP224K1Point.java | 65 return new SecP224K1Point(null, getAffineXCoord(), getAffineYCoord()); in detach()
|
D | SecP192R1Point.java | 64 return new SecP192R1Point(null, getAffineXCoord(), getAffineYCoord()); in detach()
|
D | SecP256R1Point.java | 64 return new SecP256R1Point(null, getAffineXCoord(), getAffineYCoord()); in detach()
|
D | SecP224R1Point.java | 64 return new SecP224R1Point(null, getAffineXCoord(), getAffineYCoord()); in detach()
|
D | SecP384R1Point.java | 64 return new SecP384R1Point(null, getAffineXCoord(), getAffineYCoord()); in detach()
|
D | SecP521R1Point.java | 63 return new SecP521R1Point(null, getAffineXCoord(), getAffineYCoord()); in detach()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
D | ECPoint.java | 138 public ECFieldElement getAffineYCoord() in getAffineYCoord() method in ECPoint 542 return this.getAffineYCoord().testBitZero(); in getCompressionYTilde() 649 return new ECPoint.Fp(null, this.getAffineXCoord(), this.getAffineYCoord()); in detach() 1636 … return new ECPoint.F2m(null, this.getAffineXCoord(), this.getAffineYCoord()); // earlier JDK
|
/external/bouncycastle/patches/ |
D | bcprov.patch | 8400 - gParam.getG().getAffineYCoord().toBigInteger()), 8416 + // gParam.getG().getAffineYCoord().toBigInteger()), 8547 - spec.getG().getAffineYCoord().toBigInteger()), 8595 + // spec.getG().getAffineYCoord().toBigInteger()), 8638 - BigInteger bY = this.q.getAffineYCoord().toBigInteger(); 8685 + // BigInteger bY = this.q.getAffineYCoord().toBigInteger();
|