Searched refs:getParams (Results 1 - 25 of 99) sorted by relevance

1234

/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
H A DEncodedKeySpec2Test.java67 && 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()
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
H A DECKeySpec.java22 public ECParameterSpec getParams() method in class:ECKeySpec
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
H A DDHUtil.java30 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/
H A DDHUtil.java30 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()));
H A DJDKDSAPrivateKey.java45 this.dsaSpec = key.getParams();
108 public DSAParams getParams() method in class:JDKDSAPrivateKey
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()
[all...]
H A DJDKDSAPublicKey.java42 this.dsaSpec = key.getParams();
117 public DSAParams getParams() method in class:JDKDSAPublicKey
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()
[all...]
/external/chromium_org/tools/json_schema_compiler/
H A Didl_schema_test.py15 def getParams(schema, name): function
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(schem
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
H A DDSAUtil.java52 new DSAParameters(k.getParams().getP(), k.getParams().getQ(), k.getParams().getG()));
67 new DSAParameters(k.getParams().getP(), k.getParams().getQ(), k.getParams().getG()));
H A DBCDSAPrivateKey.java43 this.dsaSpec = key.getParams();
97 public DSAParams getParams() method in class:BCDSAPrivateKey
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()
[all...]
H A DBCDSAPublicKey.java41 this.dsaSpec = key.getParams();
109 public DSAParams getParams() method in class:BCDSAPublicKey
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()
[all...]
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/apache-http/src/org/apache/http/impl/conn/
H A DDefaultHttpRoutePlanner.java90 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/
H A DBCDHPrivateKey.java49 this.dhSpec = key.getParams();
142 public DHParameterSpec getParams() method in class:BCDHPrivateKey
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()
[all...]
H A DBCDHPublicKey.java45 this.dhSpec = key.getParams();
129 public DHParameterSpec getParams() method in class:BCDHPublicKey
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()
[all...]
H A DKeyAgreementSpi.java82 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();
H A DKeyFactorySpi.java39 return new DHPrivateKeySpec(k.getX(), k.getParams().getP(), k.getParams().getG());
45 return new DHPublicKeySpec(k.getY(), k.getParams().getP(), k.getParams().getG());
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
H A DKeyFactorySpi.java65 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(), fals
[all...]
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/interfaces/
H A DDHPrivateKeyTest.java73 public DHParameterSpec getParams() { method in class:DHPrivateKeyTest.checkDHPrivateKey
H A DDHPublicKeyTest.java75 public DHParameterSpec getParams() { method in class:DHPublicKeyTest.checkDHPublicKey
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/interfaces/
H A DDSAPrivateKeyTest.java72 public DSAParams getParams() { method in class:DSAPrivateKeyTest.checkDSAPrivateKey
H A DDSAPublicKeyTest.java71 public DSAParams getParams() { method in class:DSAPublicKeyTest.checkDSAPublicKey
H A DECPrivateKeyTest.java69 public ECParameterSpec getParams() { method in class:ECPrivateKeyTest.checkECPrivateKey
H A DECPublicKeyTest.java68 public ECParameterSpec getParams() { method in class:ECPublicKeyTest.checkECPublicKey
/external/apache-http/src/org/apache/http/protocol/
H A DRequestUserAgent.java62 String useragent = HttpProtocolParams.getUserAgent(request.getParams());
H A DResponseServer.java63 String s = (String) response.getParams().getParameter(

Completed in 272 milliseconds

1234