Searched refs:getQ (Results 1 - 25 of 62) sorted by relevance

123

/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DQRDecomposition.java53 RealMatrix getQ(); method in interface:QRDecomposition
/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/jce/spec/
H A DECPublicKeySpec.java38 public ECPoint getQ() method in class:ECPublicKeySpec
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
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);
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 DECPublicKeyParameters.java41 public ECPoint getQ() method in class:ECPublicKeyParameters
H A DDHPublicKeyParameters.java35 if (dhParams.getQ() != null)
37 if (ONE.equals(y.modPow(dhParams.getQ(), dhParams.getP())))
H A DDSAPublicKeyParameters.java27 && ONE.equals(y.modPow(params.getQ(), params.getP())))
H A DRSAPrivateCrtKeyParameters.java48 public BigInteger getQ() method in class:RSAPrivateCrtKeyParameters
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
H A DBCDSAPrivateKey.java50 this.dsaSpec = new DSAParameterSpec(spec.getP(), spec.getQ(), spec.getG());
61 this.dsaSpec = new DSAParameterSpec(params.getP(), params.getQ(), params.getG());
68 this.dsaSpec = new DSAParameterSpec(params.getParameters().getP(), params.getParameters().getQ(), params.getParameters().getG());
94 return KeyUtil.getEncodedPrivateKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.id_dsa, new DSAParameter(dsaSpec.getP(), dsaSpec.getQ(), dsaSpec.getG()).toASN1Primitive()), new ASN1Integer(getX()));
120 && this.getParams().getQ().equals(other.getParams().getQ());
126 ^ this.getParams().getP().hashCode() ^ this.getParams().getQ().hashCode();
164 out.writeObject(dsaSpec.getQ());
H A DBCDSAPublicKey.java38 this.dsaSpec = new DSAParameterSpec(spec.getP(), spec.getQ(), spec.getG());
56 this.dsaSpec = new DSAParameterSpec(params.getParameters().getP(), params.getParameters().getQ(), params.getParameters().getG());
85 this.dsaSpec = new DSAParameterSpec(params.getP(), params.getQ(), params.getG());
122 return KeyUtil.getEncodedSubjectPublicKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.id_dsa, new DSAParameter(dsaSpec.getP(), dsaSpec.getQ(), dsaSpec.getG()).toASN1Primitive()), new ASN1Integer(y));
151 ^ this.getParams().getP().hashCode() ^ this.getParams().getQ().hashCode();
175 && this.getParams().getQ().equals(other.getParams().getQ());
214 out.writeObject(dsaSpec.getQ());
H A DAlgorithmParametersSpi.java45 DSAParameter dsaP = new DSAParameter(currentSpec.getP(), currentSpec.getQ(), currentSpec.getG());
100 currentSpec = new DSAParameterSpec(dsaP.getP(), dsaP.getQ(), dsaP.getG());
H A DDSAUtil.java52 return new DSAParameters(spec.getP(), spec.getQ(), spec.getG());
95 new DSAParameters(k.getParams().getP(), k.getParams().getQ(), k.getParams().getG()));
H A DKeyFactorySpi.java36 return new DSAPublicKeySpec(k.getY(), k.getParams().getP(), k.getParams().getQ(), k.getParams().getG());
42 return new DSAPrivateKeySpec(k.getX(), k.getParams().getP(), k.getParams().getQ(), k.getParams().getG());
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJDKDSAPrivateKey.java50 this.dsaSpec = new DSAParameterSpec(spec.getP(), spec.getQ(), spec.getG());
61 this.dsaSpec = new DSAParameterSpec(params.getP(), params.getQ(), params.getG());
68 this.dsaSpec = new DSAParameterSpec(params.getParameters().getP(), params.getParameters().getQ(), params.getParameters().getG());
96 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.id_dsa, new DSAParameter(dsaSpec.getP(), dsaSpec.getQ(), dsaSpec.getG())), new ASN1Integer(getX()));
129 && this.getParams().getQ().equals(other.getParams().getQ());
135 ^ this.getParams().getP().hashCode() ^ this.getParams().getQ().hashCode();
173 out.writeObject(dsaSpec.getQ());
H A DJDKDSAPublicKey.java35 this.dsaSpec = new DSAParameterSpec(spec.getP(), spec.getQ(), spec.getG());
49 this.dsaSpec = new DSAParameterSpec(params.getParameters().getP(), params.getParameters().getQ(), params.getParameters().getG());
81 this.dsaSpec = new DSAParameterSpec(params.getP(), params.getQ(), params.getG());
109 return new SubjectPublicKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.id_dsa, new DSAParameter(dsaSpec.getP(), dsaSpec.getQ(), dsaSpec.getG())), new ASN1Integer(y)).getEncoded(ASN1Encoding.DER);
141 ^ this.getParams().getP().hashCode() ^ this.getParams().getQ().hashCode();
157 && this.getParams().getQ().equals(other.getParams().getQ());
174 out.writeObject(dsaSpec.getQ());
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
H A DBCECPublicKey.java82 spec.getQ(), ECUtil.getDomainParameters(configuration, spec.getParams()));
89 this.ecPublicKey = new ECPublicKeyParameters(s.getCurve().createPoint(spec.getQ().getAffineXCoord().toBigInteger(), spec.getQ().getAffineYCoord().toBigInteger()), EC5Util.getDomainParameters(configuration, (ECParameterSpec)null));
241 ASN1OctetString p = ASN1OctetString.getInstance(new X9ECPoint(ecPublicKey.getQ(), withCompression).toASN1Primitive());
266 org.bouncycastle.math.ec.ECPoint q = ecPublicKey.getQ();
271 public org.bouncycastle.math.ec.ECPoint getQ() method in class:BCECPublicKey
273 org.bouncycastle.math.ec.ECPoint q = ecPublicKey.getQ();
302 org.bouncycastle.math.ec.ECPoint q = ecPublicKey.getQ();
326 return ecPublicKey.getQ().equals(other.ecPublicKey.getQ())
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/agreement/
H A DECDHBasicAgreement.java48 ECPoint peerPoint = ((ECPublicKeyParameters) pubKey).getQ();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
H A DDHKeyGeneratorHelper.java45 BigInteger q = dhParams.getQ();
H A DDSAKeyPairGenerator.java39 BigInteger x = generatePrivateKey(dsaParams.getQ(), param.getRandom());
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
H A DSecP192K1Curve.java50 public BigInteger getQ() method in class:SecP192K1Curve
H A DSecP192R1Curve.java51 public BigInteger getQ() method in class:SecP192R1Curve
H A DSecP224K1Curve.java49 public BigInteger getQ() method in class:SecP224K1Curve
H A DSecP224R1Curve.java51 public BigInteger getQ() method in class:SecP224R1Curve
H A DSecP256K1Curve.java49 public BigInteger getQ() method in class:SecP256K1Curve

Completed in 275 milliseconds

123