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

1 2 3 4 5 6 7 8 910

  /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/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());
  /external/chromium_org/tools/json_schema_compiler/
idl_schema_test.py 18 def getParams(schema, name):
45 self.assertEquals(expected, getParams(schema, 'function4'))
49 self.assertEquals(expected, getParams(schema, 'function5'))
53 self.assertEquals(expected, getParams(schema, 'function6'))
60 self.assertEquals(expected, getParams(schema, 'function12'))
68 self.assertEquals(expected, getParams(schema, 'whatever'))
97 self.assertEquals(expected, getParams(schema, 'function13'))
101 self.assertEquals(expected, getParams(schema, 'function14'))
106 self.assertEquals(expected, getParams(schema, 'function20'))
111 self.assertEquals(expected, getParams(schema, 'function21')
    [all...]
  /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/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...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
KeyFactorySpi.java 65 if (k.getParams() != null)
67 return new java.security.spec.ECPublicKeySpec(k.getW(), k.getParams());
80 if (k.getParams() != null)
82 return new java.security.spec.ECPrivateKeySpec(k.getS(), k.getParams());
94 if (k.getParams() != null)
96 return new org.bouncycastle.jce.spec.ECPublicKeySpec(EC5Util.convertPoint(k.getParams(), k.getW(), false), EC5Util.convertSpec(k.getParams(), false));
102 return new org.bouncycastle.jce.spec.ECPublicKeySpec(EC5Util.convertPoint(k.getParams(), k.getW(), false), implicitSpec);
109 if (k.getParams() != null)
111 return new org.bouncycastle.jce.spec.ECPrivateKeySpec(k.getS(), EC5Util.convertSpec(k.getParams(), false))
    [all...]
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLECPrivateKey.java 54 group = OpenSSLECGroupContext.getInstance(ecKeySpec.getParams());
66 group = OpenSSLECGroupContext.getInstance(ecPrivateKey.getParams());
81 .getParams());
133 public ECParameterSpec getParams() {
175 final ECParameterSpec spec = getParams();
176 final ECParameterSpec otherSpec = other.getParams();
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/interfaces/
DHPrivateKeyTest.java 77 public DHParameterSpec getParams() {

Completed in 2138 milliseconds

1 2 3 4 5 6 7 8 910