Searched defs:getParams (Results 1 - 25 of 57) sorted by relevance

123

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
H A DECKeySpec.java22 public ECParameterSpec getParams() method in class:ECKeySpec
/external/apache-http/src/org/apache/http/client/
H A DHttpClient.java76 HttpParams getParams() method in interface:HttpClient
/external/javassist/src/main/javassist/compiler/ast/
H A DMethodDecl.java36 public ASTList getParams() { return (ASTList)sublist(2).head(); } method in class:MethodDecl
/external/javassist/src/main/javassist/runtime/
H A DDesc.java66 public static Class[] getParams(String desc) { method in class:Desc
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/interfaces/
H A DDHPrivateKeyTest.java77 public DHParameterSpec getParams() { method in class:DHPrivateKeyTest.checkDHPrivateKey
H A DDHPublicKeyTest.java80 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.java76 public DSAParams getParams() { method in class:DSAPrivateKeyTest.checkDSAPrivateKey
H A DDSAPublicKeyTest.java76 public DSAParams getParams() { method in class:DSAPublicKeyTest.checkDSAPublicKey
H A DECPrivateKeyTest.java72 public ECParameterSpec getParams() { method in class:ECPrivateKeyTest.checkECPrivateKey
H A DECPublicKeyTest.java72 public ECParameterSpec getParams() { method in class:ECPublicKeyTest.checkECPublicKey
/external/okhttp/okhttp-apache/src/main/java/com/squareup/okhttp/apache/
H A DOkApacheClient.java94 @Override public HttpParams getParams() { method in class:OkApacheClient
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAndroidHttpClient.java41 public HttpParams getParams() { method in class:ShadowAndroidHttpClient
42 return httpClient.getParams();
/external/apache-http/src/org/apache/http/
H A DHttpMessage.java188 HttpParams getParams(); method in interface:HttpMessage
/external/apache-http/src/org/apache/http/message/
H A DAbstractHttpMessage.java157 public HttpParams getParams() { method in class:AbstractHttpMessage
/external/apache-http/src/org/apache/http/protocol/
H A DHttpService.java122 public HttpParams getParams() { method in class:HttpService
142 new DefaultedHttpParams(request.getParams(), this.params));
157 new DefaultedHttpParams(response.getParams(), this.params));
166 new DefaultedHttpParams(response.getParams(), this.params));
186 new DefaultedHttpParams(response.getParams(), this.params));
208 new DefaultedHttpParams(response.getParams(), this.params));
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
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...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJCEDHPrivateKey.java49 this.dhSpec = key.getParams();
142 public DHParameterSpec getParams() method in class:JCEDHPrivateKey
H A DJCEDHPublicKey.java44 this.dhSpec = key.getParams();
128 public DHParameterSpec getParams() method in class:JCEDHPublicKey
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/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLDHPrivateKey.java87 DHParameterSpec dhParams = dhPrivateKey.getParams();
132 public DHParameterSpec getParams() { method in class:OpenSSLDHPrivateKey
176 DHParameterSpec spec = other.getParams();
H A DOpenSSLDHPublicKey.java86 final DHParameterSpec dhParams = DHPublicKey.getParams();
98 public DHParameterSpec getParams() { method in class:OpenSSLDHPublicKey
153 DHParameterSpec spec = other.getParams();
H A DOpenSSLDSAPrivateKey.java75 DSAParams dsaParams = dsaPrivateKey.getParams();
92 public DSAParams getParams() { method in class:OpenSSLDSAPrivateKey
176 return x.equals(other.getX()) && params.equals(other.getParams());
H A DOpenSSLDSAPublicKey.java67 final DSAParams dsaParams = dsaPublicKey.getParams();
80 public DSAParams getParams() { method in class:OpenSSLDSAPublicKey
140 return params.getY().equals(other.getY()) && params.equals(other.getParams());
H A DOpenSSLECPrivateKey.java54 group = OpenSSLECGroupContext.getInstance(ecKeySpec.getParams());
66 group = OpenSSLECGroupContext.getInstance(ecPrivateKey.getParams());
82 .getParams());
134 public ECParameterSpec getParams() { method in class:OpenSSLECPrivateKey
176 final ECParameterSpec spec = getParams();
177 final ECParameterSpec otherSpec = other.getParams();
H A DOpenSSLECPublicKey.java53 group = OpenSSLECGroupContext.getInstance(ecKeySpec.getParams());
66 .getInstance(ecPublicKey.getParams());
92 public ECParameterSpec getParams() { method in class:OpenSSLECPublicKey
133 final ECParameterSpec spec = getParams();
134 final ECParameterSpec otherSpec = other.getParams();

Completed in 431 milliseconds

123