Searched defs:getQ (Results 1 - 11 of 11) sorted by relevance

/external/bouncycastle/src/main/java/org/bouncycastle/jce/interfaces/
H A DECPublicKey.java16 public ECPoint getQ(); method in interface:ECPublicKey
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/params/
H A DECPublicKeyParameters.java18 public ECPoint getQ() method in class:ECPublicKeyParameters
H A DDSAParameters.java42 public BigInteger getQ() method in class:DSAParameters
67 return (pm.getP().equals(p) && pm.getQ().equals(q) && pm.getG().equals(g));
72 return getP().hashCode() ^ getQ().hashCode() ^ getG().hashCode();
H A DRSAPrivateCrtKeyParameters.java48 public BigInteger getQ() method in class:RSAPrivateCrtKeyParameters
H A DDHParameters.java116 public BigInteger getQ() method in class:DHParameters
166 if (this.getQ() != null)
168 if (!this.getQ().equals(pm.getQ()))
175 if (pm.getQ() != null)
186 return getP().hashCode() ^ getG().hashCode() ^ (getQ() != null ? getQ().hashCode() : 0);
/external/bouncycastle/src/main/java/org/bouncycastle/jce/spec/
H A DECPublicKeySpec.java31 public ECPoint getQ() method in class:ECPublicKeySpec
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
H A DDSAParameter.java72 public BigInteger getQ() method in class:DSAParameter
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x9/
H A DDHDomainParameters.java105 public DERInteger getQ() method in class:DHDomainParameters
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
H A DJCEECPublicKey.java86 this.q = spec.getQ();
115 this.q = params.getQ();
137 this.q = params.getQ();
161 this.q = params.getQ();
401 new X9ECPoint(curve.createPoint(this.getQ().getX().toBigInteger(), this.getQ().getY().toBigInteger(), withCompression)).getDERObject();
445 public org.bouncycastle.math.ec.ECPoint getQ() method in class:JCEECPublicKey
/external/bouncycastle/src/main/java/org/bouncycastle/math/ec/
H A DECCurve.java49 public BigInteger getQ() method in class:ECCurve.Fp
H A DECFieldElement.java65 public BigInteger getQ() method in class:ECFieldElement.Fp

Completed in 102 milliseconds