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

1 2 3 4 5 6 7 8

  /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/util/
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()));
  /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 45 this.dsaSpec = key.getParams();
108 public DSAParams getParams()
129 && this.getParams().getG().equals(other.getParams().getG())
130 && this.getParams().getP().equals(other.getParams().getP())
131 && this.getParams().getQ().equals(other.getParams().getQ());
136 return this.getX().hashCode() ^ this.getParams().getG().hashCode()
137 ^ 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/chromium_org/tools/json_schema_compiler/
idl_schema_test.py 15 def getParams(schema, name):
34 self.assertEquals(expected, getParams(schema, 'function4'))
38 self.assertEquals(expected, getParams(schema, 'function5'))
42 self.assertEquals(expected, getParams(schema, 'function6'))
49 self.assertEquals(expected, getParams(schema, 'function12'))
57 self.assertEquals(expected, getParams(schema, 'whatever'))
84 self.assertEquals(expected, getParams(schema, 'function13'))
88 self.assertEquals(expected, getParams(schema, 'function14'))
111 getParams(schema, 'function16')[0]['description'])
114 getParams(schema, 'function16')[0]['parameters'][0]['description']
    [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 43 this.dsaSpec = key.getParams();
97 public DSAParams getParams()
118 && this.getParams().getG().equals(other.getParams().getG())
119 && this.getParams().getP().equals(other.getParams().getP())
120 && this.getParams().getQ().equals(other.getParams().getQ());
125 return this.getX().hashCode() ^ this.getParams().getG().hashCode()
126 ^ 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;
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrSingleTextureEffect.h 47 fTextureAccess.getParams() == otherAccess.getParams() &&
  /external/skia/src/gpu/effects/
GrSingleTextureEffect.h 47 fTextureAccess.getParams() == otherAccess.getParams() &&
  /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/dh/
BCDHPrivateKey.java 49 this.dhSpec = key.getParams();
142 public DHParameterSpec getParams()
163 && this.getParams().getG().equals(other.getParams().getG())
164 && this.getParams().getP().equals(other.getParams().getP())
165 && this.getParams().getL() == other.getParams().getL();
170 return this.getX().hashCode() ^ this.getParams().getG().hashCode()
171 ^ 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 82 if (!pubKey.getParams().getG().equals(g) || !pubKey.getParams().getP().equals(p))
97 return new BCDHPublicKey(result, pubKey.getParams());
187 this.p = privKey.getParams().getP();
188 this.g = privKey.getParams().getG();
206 this.p = privKey.getParams().getP();
207 this.g = privKey.getParams().getG();

Completed in 800 milliseconds

1 2 3 4 5 6 7 8