Searched refs:getParams (Results 1 - 25 of 97) 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.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.java41 this.dsaSpec = key.getParams();
116 public DSAParams getParams() method in class:JDKDSAPublicKey
139 return this.getY().hashCode() ^ this.getParams().getG().hashCode()
140 ^ this.getParams().getP().hashCode() ^ this.getParams().getQ().hashCode();
154 && this.getParams().getG().equals(other.getParams().getG())
155 && this.getParams().getP().equals(other.getParams().getP())
156 && this.getParams()
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
H A DDSAUtil.java55 new DSAParameters(k.getParams().getP(), k.getParams().getQ(), k.getParams().getG()));
70 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.java95 ConnRouteParams.getForcedRoute(request.getParams());
108 ConnRouteParams.getLocalAddress(request.getParams());
110 ConnRouteParams.getDefaultProxy(request.getParams());
/external/conscrypt/src/main/java/org/conscrypt/
H A DChainStrengthAnalyzer.java61 ((ECPublicKey) pubkey).getParams().getCurve().getField().getFieldSize();
67 int pLength = ((DSAPublicKey) pubkey).getParams().getP().bitLength();
68 int qLength = ((DSAPublicKey) pubkey).getParams().getQ().bitLength();
H A DOpenSSLECPrivateKey.java57 group = OpenSSLECGroupContext.getInstance(ecKeySpec.getParams());
69 group = OpenSSLECGroupContext.getInstance(ecPrivateKey.getParams());
85 params = ((ECKey) privateKey).getParams();
87 params = ((ECKey) publicKey).getParams();
105 params = ((ECKey) privateKey).getParams();
132 .getParams());
184 public ECParameterSpec getParams() { method in class:OpenSSLECPrivateKey
226 final ECParameterSpec spec = getParams();
227 final ECParameterSpec otherSpec = other.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 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.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/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());

Completed in 477 milliseconds

1234