HomeSort by relevance Sort by last modified time
    Searched full:getparams (Results 1 - 25 of 325) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/curl/tests/data/
test572 16 Session: getparams-test
24 Session: getparams-test
37 Session: getparams-test
45 Session: getparams-test
55 Session: getparams-test
96 Session: getparams-test
104 Session: getparams-test
108 Session: getparams-test
116 Session: getparams-test
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
DHUtil.java 30 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/
DHUtil.java 30 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()));
JDKDSAPrivateKey.java 43 this.dsaSpec = key.getParams();
106 public DSAParams getParams()
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().getP().hashCode() ^ this.getParams().getQ().hashCode()
    [all...]
JDKDSAPublicKey.java 42 this.dsaSpec = key.getParams();
117 public DSAParams getParams()
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().getQ().equals(other.getParams().getQ())
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
EncodedKeySpec2Test.java 67 && 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().getP()
    [all...]
  /libcore/luni/src/test/java/tests/security/spec/
EncodedKeySpec2Test.java 68 && dsa1.getParams().getG().equals(dsa2.getParams().getG())
69 && dsa1.getParams().getP().equals(dsa2.getParams().getP())
70 && dsa1.getParams().getQ().equals(dsa2.getParams().getQ());
77 && dsa1.getParams().getG().equals(dsa2.getParams().getG())
78 && dsa1.getParams().getP().equals(dsa2.getParams().getP()
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
DSAUtil.java 55 new DSAParameters(k.getParams().getP(), k.getParams().getQ(), k.getParams().getG()));
70 new DSAParameters(k.getParams().getP(), k.getParams().getQ(), k.getParams().getG()));
BCDSAPrivateKey.java 43 this.dsaSpec = key.getParams();
97 public DSAParams getParams()
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().getP().hashCode() ^ this.getParams().getQ().hashCode()
    [all...]
BCDSAPublicKey.java 42 this.dsaSpec = key.getParams();
110 public DSAParams getParams()
133 return this.getY().hashCode() ^ this.getParams().getG().hashCode()
134 ^ this.getParams().getP().hashCode() ^ this.getParams().getQ().hashCode();
148 && this.getParams().getG().equals(other.getParams().getG())
149 && this.getParams().getP().equals(other.getParams().getP())
150 && this.getParams().getQ().equals(other.getParams().getQ())
    [all...]
KeyFactorySpi.java 36 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/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
ECKeySpec.java 22 public ECParameterSpec getParams()
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
BCDHPrivateKey.java 50 this.dhSpec = key.getParams();
143 public DHParameterSpec getParams()
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().getP().hashCode() ^ this.getParams().getL()
    [all...]
BCDHPublicKey.java 46 this.dhSpec = key.getParams();
130 public DHParameterSpec getParams()
165 return this.getY().hashCode() ^ this.getParams().getG().hashCode()
166 ^ this.getParams().getP().hashCode() ^ this.getParams().getL();
180 && this.getParams().getG().equals(other.getParams().getG())
181 && this.getParams().getP().equals(other.getParams().getP())
182 && this.getParams().getL() == other.getParams().getL()
    [all...]
KeyAgreementSpi.java 99 if (!pubKey.getParams().getG().equals(g) || !pubKey.getParams().getP().equals(p))
114 return new BCDHPublicKey(result, pubKey.getParams());
184 this.p = privKey.getParams().getP();
185 this.g = privKey.getParams().getG();
195 this.p = privKey.getParams().getP();
196 this.g = privKey.getParams().getG();
214 this.p = privKey.getParams().getP();
215 this.g = privKey.getParams().getG();
KeyFactorySpi.java 39 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/
KeyFactorySpi.java 65 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(), false))
    [all...]
  /libcore/luni/src/test/java/tests/security/interfaces/
DSAKeyTest.java 30 * #getParams()
44 assertDSAParamsEquals(param, key.getParams());
48 assertDSAParamsEquals(param, key.getParams());
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_al.py 8 alattrs = ['__doc__', '__name__', 'getdefault', 'getminmax', 'getname', 'getparams',
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_al.py 8 alattrs = ['__doc__', '__name__', 'getdefault', 'getminmax', 'getname', 'getparams',
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_al.py 8 alattrs = ['__doc__', '__name__', 'getdefault', 'getminmax', 'getname', 'getparams',
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_al.py 8 alattrs = ['__doc__', '__name__', 'getdefault', 'getminmax', 'getname', 'getparams',
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreECPublicKey.java 41 this(alias, uid, info.getEncoded(), info.getParams(), info.getW());
49 public ECParameterSpec getParams() {
  /libcore/luni/src/test/java/tests/security/
CertPathValidatorTest.java 33 public abstract CertPathParameters getParams();
42 getCertPath(), getParams());
  /platform_testing/tests/camera/aupt-profile/src/com/android/test/uiautomator/aupt/camera/
CameraStress4KTest.java 36 if (getParams().containsKey("video-duration")) {
37 videoTimeMS = Integer.parseInt(getParams().getString("video-duration"));

Completed in 1525 milliseconds

1 2 3 4 5 6 7 8 91011>>