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

12

/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.java71 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.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/
H A DHttpMessage.java183 HttpParams getParams(); method in interface:HttpMessage
/external/apache-http/src/org/apache/http/message/
H A DAbstractHttpMessage.java152 public HttpParams getParams() { method in class:AbstractHttpMessage
/external/apache-http/src/org/apache/http/protocol/
H A DHttpService.java117 public HttpParams getParams() { method in class:HttpService
137 new DefaultedHttpParams(request.getParams(), this.params));
152 new DefaultedHttpParams(response.getParams(), this.params));
161 new DefaultedHttpParams(response.getParams(), this.params));
181 new DefaultedHttpParams(response.getParams(), this.params));
203 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...]
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...]
/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...]
H A DJCEECPublicKey.java77 this.ecSpec = spec.getParams();
88 if (spec.getParams() != null) // can be null if implictlyCa
90 ECCurve curve = spec.getParams().getCurve();
91 EllipticCurve ellipticCurve = EC5Util.convertCurve(curve, spec.getParams().getSeed());
93 this.ecSpec = EC5Util.convertSpec(ellipticCurve, spec.getParams());
180 this.ecSpec = key.getParams();
425 public ECParameterSpec getParams() method in class:JCEECPublicKey
H A DJDKDSAPrivateKey.java46 this.dsaSpec = key.getParams();
109 public DSAParams getParams() method in class:JDKDSAPrivateKey
130 && this.getParams().getG().equals(other.getParams().getG())
131 && this.getParams().getP().equals(other.getParams().getP())
132 && this.getParams().getQ().equals(other.getParams().getQ());
137 return this.getX().hashCode() ^ this.getParams().getG().hashCode()
138 ^ this.getParams()
[all...]
H A DJCEECPrivateKey.java65 this.ecSpec = key.getParams();
75 if (spec.getParams() != null) // can be null if implicitlyCA
77 ECCurve curve = spec.getParams().getCurve();
80 ellipticCurve = EC5Util.convertCurve(curve, spec.getParams().getSeed());
82 this.ecSpec = EC5Util.convertSpec(ellipticCurve, spec.getParams());
97 this.ecSpec = spec.getParams();
358 public ECParameterSpec getParams() method in class:JCEECPrivateKey
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
H A DBCDSAPrivateKey.java44 this.dsaSpec = key.getParams();
98 public DSAParams getParams() method in class:BCDSAPrivateKey
119 && this.getParams().getG().equals(other.getParams().getG())
120 && this.getParams().getP().equals(other.getParams().getP())
121 && this.getParams().getQ().equals(other.getParams().getQ());
126 return this.getX().hashCode() ^ this.getParams().getG().hashCode()
127 ^ 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...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
H A DBCECPrivateKey.java67 this.ecSpec = key.getParams();
79 if (spec.getParams() != null) // can be null if implicitlyCA
81 ECCurve curve = spec.getParams().getCurve();
84 ellipticCurve = EC5Util.convertCurve(curve, spec.getParams().getSeed());
86 this.ecSpec = EC5Util.convertSpec(ellipticCurve, spec.getParams());
104 this.ecSpec = spec.getParams();
377 public ECParameterSpec getParams() method in class:BCECPrivateKey
H A DBCECPublicKey.java65 this.ecSpec = spec.getParams();
78 if (spec.getParams() != null) // can be null if implictlyCa
80 ECCurve curve = spec.getParams().getCurve();
81 EllipticCurve ellipticCurve = EC5Util.convertCurve(curve, spec.getParams().getSeed());
83 this.ecSpec = EC5Util.convertSpec(ellipticCurve, spec.getParams());
170 this.ecSpec = key.getParams();
335 public ECParameterSpec getParams() method in class:BCECPublicKey

Completed in 2284 milliseconds

12