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

123456

/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.java35 new DHParameters(k.getParams().getP(), k.getParams().getG(), null, k.getParams().getL()));
50 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.java43 this.dsaSpec = key.getParams();
106 public DSAParams getParams() method in class:JDKDSAPrivateKey
127 && this.getParams().getG().equals(other.getParams().getG())
128 && this.getParams().getP().equals(other.getParams().getP())
129 && this.getParams().getQ().equals(other.getParams().getQ());
134 return this.getX().hashCode() ^ this.getParams().getG().hashCode()
135 ^ 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/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
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 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());
H A DBCDSAPublicKey.java46 this.dsaSpec = key.getParams();
125 public DSAParams getParams() method in class:BCDSAPublicKey
150 return this.getY().hashCode() ^ this.getParams().getG().hashCode()
151 ^ this.getParams().getP().hashCode() ^ this.getParams().getQ().hashCode();
172 && other.getParams() != null
173 && this.getParams().getG().equals(other.getParams().getG())
174 && this.getParams().getP().equals(other.getParams()
[all...]
H A DDSAUtil.java96 new DSAParameters(k.getParams().getP(), k.getParams().getQ(), k.getParams().getG()));
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
H A DKeyAgreementSpi.java104 if (!pubKey.getParams().getG().equals(g) || !pubKey.getParams().getP().equals(p))
127 return new BCDHPublicKey(result, pubKey.getParams());
197 this.p = privKey.getParams().getP();
198 this.g = privKey.getParams().getG();
208 this.p = privKey.getParams().getP();
209 this.g = privKey.getParams().getG();
227 this.p = privKey.getParams().getP();
228 this.g = privKey.getParams().getG();
H A DBCDHPrivateKey.java50 this.dhSpec = key.getParams();
143 public DHParameterSpec getParams() method in class:BCDHPrivateKey
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()
[all...]
H A DBCDHPublicKey.java50 this.dhSpec = key.getParams();
148 public DHParameterSpec getParams() method in class:BCDHPublicKey
188 return this.getY().hashCode() ^ this.getParams().getG().hashCode()
189 ^ this.getParams().getP().hashCode() ^ this.getParams().getL();
203 && this.getParams().getG().equals(other.getParams().getG())
204 && this.getParams().getP().equals(other.getParams().getP())
205 && this.getParams()
[all...]
H A DKeyFactorySpi.java40 return new DHPrivateKeySpec(k.getX(), k.getParams().getP(), k.getParams().getG());
46 return new DHPublicKeySpec(k.getY(), k.getParams().getP(), k.getParams().getG());
/external/wycheproof/java/com/google/security/wycheproof/testcases/
H A DEcKeyTest.java156 assertEquals(priv.getParams().getCofactor(), decoded.getParams().getCofactor());
157 assertEquals(priv.getParams().getCurve(), decoded.getParams().getCurve());
158 assertEquals(priv.getParams().getGenerator(), decoded.getParams().getGenerator());
159 assertEquals(priv.getParams().getOrder(), decoded.getParams().getOrder());
209 int keySize = EcUtil.fieldSizeInBits(pub.getParams().getCurve());
/external/apache-http/src/org/apache/http/impl/conn/
H A DDefaultHttpRoutePlanner.java95 ConnRouteParams.getForcedRoute(request.getParams());
108 ConnRouteParams.getLocalAddress(request.getParams());
110 ConnRouteParams.getDefaultProxy(request.getParams());
/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/conscrypt/common/src/main/java/org/conscrypt/
H A DChainStrengthAnalyzer.java84 ((ECPublicKey) pubkey).getParams().getCurve().getField().getFieldSize();
90 int pLength = ((DSAPublicKey) pubkey).getParams().getP().bitLength();
91 int qLength = ((DSAPublicKey) pubkey).getParams().getQ().bitLength();
H A DOpenSSLECPrivateKey.java62 group = OpenSSLECGroupContext.getInstance(ecKeySpec.getParams());
74 group = OpenSSLECGroupContext.getInstance(ecPrivateKey.getParams());
90 params = ((ECKey) privateKey).getParams();
92 params = ((ECKey) publicKey).getParams();
110 params = ((ECKey) privateKey).getParams();
137 .getParams());
171 public ECParameterSpec getParams() { method in class:OpenSSLECPrivateKey
209 final ECParameterSpec spec = getParams();
210 final ECParameterSpec otherSpec = other.getParams();
H A DOpenSSLECPublicKey.java58 group = OpenSSLECGroupContext.getInstance(ecKeySpec.getParams());
71 .getInstance(ecPublicKey.getParams());
97 public ECParameterSpec getParams() { method in class:OpenSSLECPublicKey
138 final ECParameterSpec spec = getParams();
139 final ECParameterSpec otherSpec = other.getParams();
/external/apache-http/src/org/apache/http/protocol/
H A DRequestUserAgent.java67 String useragent = HttpProtocolParams.getUserAgent(request.getParams());
/external/apache-http/src/org/apache/http/message/
H A DBasicHttpRequest.java90 return HttpProtocolParams.getVersion(getParams());
98 ProtocolVersion ver = HttpProtocolParams.getVersion(getParams());
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
H A DTestFmwk.java83 if (getParams().testSecurityManager != null) {
84 System.setSecurityManager(getParams().testSecurityManager);
90 if (getParams().testSecurityManager != null) {
91 System.setSecurityManager(getParams().originalSecurityManager);
95 private static TestParams getParams() { method in class:TestFmwk
101 return getParams().getLoggingLevel() >= LOGGING_INFO;
108 return getParams().inclusion;
112 return getParams().getInclusion() == 0;
118 return new Random(getParams().getSeed());
143 //getParams()
[all...]
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
H A DTestFmwk.java82 if (getParams().testSecurityManager != null) {
83 System.setSecurityManager(getParams().testSecurityManager);
89 if (getParams().testSecurityManager != null) {
90 System.setSecurityManager(getParams().originalSecurityManager);
94 private static TestParams getParams() { method in class:TestFmwk
100 return getParams().getLoggingLevel() >= LOGGING_INFO;
107 return getParams().inclusion;
111 return getParams().getInclusion() == 0;
117 return new Random(getParams().getSeed());
142 //getParams()
[all...]
/external/volley/src/test/java/com/android/volley/mock/
H A DTestRequest.java100 public Map<String, String> getParams() { method in class:TestRequest.PostWithBody
125 public Map<String, String> getParams() { method in class:TestRequest.PutWithBody
175 public Map<String, String> getParams() { method in class:TestRequest.PatchWithBody
/external/apache-http/src/org/apache/http/
H A DHttpMessage.java188 HttpParams getParams(); method in interface:HttpMessage

Completed in 1592 milliseconds

123456