HomeSort by relevance Sort by last modified time
    Searched refs:getParams (Results 1 - 25 of 148) sorted by null

1 2 3 4 5 6

  /libcore/luni/src/main/java/java/security/interfaces/
DSAKey.java 32 public DSAParams getParams();
ECKey.java 32 public ECParameterSpec getParams();
  /libcore/luni/src/main/java/javax/crypto/interfaces/
DHKey.java 32 public DHParameterSpec getParams();
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
EncodedKeySpec2Test.java 67 && dsa1.getParams().getG().equals(dsa2.getParams().getG())
68 && dsa1.getParams().getP().equals(dsa2.getParams().getP())
69 && dsa1.getParams().getQ().equals(dsa2.getParams().getQ());
76 && dsa1.getParams().getG().equals(dsa2.getParams().getG())
77 && dsa1.getParams().getP().equals(dsa2.getParams().getP()
    [all...]
  /libcore/luni/src/test/java/tests/security/spec/
EncodedKeySpec2Test.java 68 && dsa1.getParams().getG().equals(dsa2.getParams().getG())
69 && dsa1.getParams().getP().equals(dsa2.getParams().getP())
70 && dsa1.getParams().getQ().equals(dsa2.getParams().getQ());
77 && dsa1.getParams().getG().equals(dsa2.getParams().getG())
78 && dsa1.getParams().getP().equals(dsa2.getParams().getP()
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
ECKeySpec.java 22 public ECParameterSpec getParams()
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
DHUtil.java 30 new DHParameters(k.getParams().getP(), k.getParams().getG(), null, k.getParams().getL()));
45 new DHParameters(k.getParams().getP(), k.getParams().getG(), null, k.getParams().getL()));
BCDHPrivateKey.java 50 this.dhSpec = key.getParams();
143 public DHParameterSpec getParams()
164 && this.getParams().getG().equals(other.getParams().getG())
165 && this.getParams().getP().equals(other.getParams().getP())
166 && this.getParams().getL() == other.getParams().getL();
171 return this.getX().hashCode() ^ this.getParams().getG().hashCode()
172 ^ this.getParams().getP().hashCode() ^ this.getParams().getL()
    [all...]
BCDHPublicKey.java 45 this.dhSpec = key.getParams();
129 public DHParameterSpec getParams()
164 return this.getY().hashCode() ^ this.getParams().getG().hashCode()
165 ^ this.getParams().getP().hashCode() ^ this.getParams().getL();
179 && this.getParams().getG().equals(other.getParams().getG())
180 && this.getParams().getP().equals(other.getParams().getP())
181 && this.getParams().getL() == other.getParams().getL()
    [all...]
KeyAgreementSpi.java 83 if (!pubKey.getParams().getG().equals(g) || !pubKey.getParams().getP().equals(p))
98 return new BCDHPublicKey(result, pubKey.getParams());
188 this.p = privKey.getParams().getP();
189 this.g = privKey.getParams().getG();
207 this.p = privKey.getParams().getP();
208 this.g = privKey.getParams().getG();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
DHUtil.java 30 new DHParameters(k.getParams().getP(), k.getParams().getG(), null, k.getParams().getL()));
45 new DHParameters(k.getParams().getP(), k.getParams().getG(), null, k.getParams().getL()));
JDKDSAPrivateKey.java 46 this.dsaSpec = key.getParams();
109 public DSAParams getParams()
130 && this.getParams().getG().equals(other.getParams().getG())
131 && this.getParams().getP().equals(other.getParams().getP())
132 && this.getParams().getQ().equals(other.getParams().getQ());
137 return this.getX().hashCode() ^ this.getParams().getG().hashCode()
138 ^ this.getParams().getP().hashCode() ^ this.getParams().getQ().hashCode()
    [all...]
JDKDSAPublicKey.java 42 this.dsaSpec = key.getParams();
117 public DSAParams getParams()
140 return this.getY().hashCode() ^ this.getParams().getG().hashCode()
141 ^ this.getParams().getP().hashCode() ^ this.getParams().getQ().hashCode();
155 && this.getParams().getG().equals(other.getParams().getG())
156 && this.getParams().getP().equals(other.getParams().getP())
157 && this.getParams().getQ().equals(other.getParams().getQ())
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
DSAUtil.java 52 new DSAParameters(k.getParams().getP(), k.getParams().getQ(), k.getParams().getG()));
67 new DSAParameters(k.getParams().getP(), k.getParams().getQ(), k.getParams().getG()));
BCDSAPrivateKey.java 44 this.dsaSpec = key.getParams();
98 public DSAParams getParams()
119 && this.getParams().getG().equals(other.getParams().getG())
120 && this.getParams().getP().equals(other.getParams().getP())
121 && this.getParams().getQ().equals(other.getParams().getQ());
126 return this.getX().hashCode() ^ this.getParams().getG().hashCode()
127 ^ this.getParams().getP().hashCode() ^ this.getParams().getQ().hashCode()
    [all...]
BCDSAPublicKey.java 41 this.dsaSpec = key.getParams();
109 public DSAParams getParams()
132 return this.getY().hashCode() ^ this.getParams().getG().hashCode()
133 ^ this.getParams().getP().hashCode() ^ this.getParams().getQ().hashCode();
147 && this.getParams().getG().equals(other.getParams().getG())
148 && this.getParams().getP().equals(other.getParams().getP())
149 && this.getParams().getQ().equals(other.getParams().getQ())
    [all...]
KeyFactorySpi.java 36 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());
  /libcore/luni/src/test/java/tests/security/
CertPathValidatorTest.java 33 public abstract CertPathParameters getParams();
42 getCertPath(), getParams());
  /libcore/luni/src/main/java/javax/sql/
RowSetInternal.java 74 public Object[] getParams() throws SQLException;
  /libcore/luni/src/main/java/java/security/spec/
ECPrivateKeySpec.java 57 public ECParameterSpec getParams() {
ECPublicKeySpec.java 61 public ECParameterSpec getParams() {
  /external/apache-http/src/org/apache/http/impl/conn/
DefaultHttpRoutePlanner.java 90 ConnRouteParams.getForcedRoute(request.getParams());
103 ConnRouteParams.getLocalAddress(request.getParams());
105 ConnRouteParams.getDefaultProxy(request.getParams());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
KeyFactorySpi.java 64 if (k.getParams() != null)
66 return new java.security.spec.ECPublicKeySpec(k.getW(), k.getParams());
79 if (k.getParams() != null)
81 return new java.security.spec.ECPrivateKeySpec(k.getS(), k.getParams());
93 if (k.getParams() != null)
95 return new org.bouncycastle.jce.spec.ECPublicKeySpec(EC5Util.convertPoint(k.getParams(), k.getW(), false), EC5Util.convertSpec(k.getParams(), false));
101 return new org.bouncycastle.jce.spec.ECPublicKeySpec(EC5Util.convertPoint(k.getParams(), k.getW(), false), implicitSpec);
108 if (k.getParams() != null)
110 return new org.bouncycastle.jce.spec.ECPrivateKeySpec(k.getS(), EC5Util.convertSpec(k.getParams(), false))
    [all...]
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/interfaces/
DHPrivateKeyTest.java 73 public DHParameterSpec getParams() {
DHPublicKeyTest.java 75 public DHParameterSpec getParams() {

Completed in 231 milliseconds

1 2 3 4 5 6