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

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/interfaces/
H A DECPublicKey.java16 public ECPoint getQ(); method in interface:ECPublicKey
/external/bouncycastle/bcprov/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.java117 public BigInteger getQ() method in class:DHParameters
167 if (this.getQ() != null)
169 if (!this.getQ().equals(pm.getQ()))
176 if (pm.getQ() != null)
187 return getP().hashCode() ^ getG().hashCode() ^ (getQ() != null ? getQ().hashCode() : 0);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
H A DECPublicKeySpec.java31 public ECPoint getQ() method in class:ECPublicKeySpec
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DDSAParameter.java72 public BigInteger getQ() method in class:DSAParameter
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/signature/
H A DDSAPrivateKey.java38 public BigInteger getQ() method in class:DSAPrivateKey
H A DDSAPublicKey.java35 public BigInteger getQ() method in class:DSAPublicKey
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
H A DDHDomainParameters.java105 public ASN1Integer getQ() method in class:DHDomainParameters
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
H A DPQTorus.java88 public float getQ() { method in class:PQTorus
/external/bouncycastle/bcprov/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)).toASN1Primitive();
445 public org.bouncycastle.math.ec.ECPoint getQ() method in class:JCEECPublicKey
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
H A DBCECPublicKey.java76 this.q = spec.getQ();
108 this.q = params.getQ();
133 this.q = params.getQ();
160 this.q = params.getQ();
312 new X9ECPoint(curve.createPoint(this.getQ().getX().toBigInteger(), this.getQ().getY().toBigInteger(), withCompression)).toASN1Primitive();
355 public org.bouncycastle.math.ec.ECPoint getQ() method in class:BCECPublicKey
/external/bouncycastle/bcprov/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 226 milliseconds