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

1 2 3 4 5

  /external/compiler-rt/lib/asan/lit_tests/TestCases/Linux/
asan_prelink_test.cc 15 int *getG() {
20 extern int *getG();
22 long p = (long)getG();
24 *getG() = 0;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
BCDSAPrivateKey.java 50 this.dsaSpec = new DSAParameterSpec(spec.getP(), spec.getQ(), spec.getG());
61 this.dsaSpec = new DSAParameterSpec(params.getP(), params.getQ(), params.getG());
68 this.dsaSpec = new DSAParameterSpec(params.getParameters().getP(), params.getParameters().getQ(), params.getParameters().getG());
94 return KeyUtil.getEncodedPrivateKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.id_dsa, new DSAParameter(dsaSpec.getP(), dsaSpec.getQ(), dsaSpec.getG()).toASN1Primitive()), new ASN1Integer(getX()));
118 && this.getParams().getG().equals(other.getParams().getG())
125 return this.getX().hashCode() ^ this.getParams().getG().hashCode()
165 out.writeObject(dsaSpec.getG());
BCDSAPublicKey.java 34 this.dsaSpec = new DSAParameterSpec(spec.getP(), spec.getQ(), spec.getG());
48 this.dsaSpec = new DSAParameterSpec(params.getParameters().getP(), params.getParameters().getQ(), params.getParameters().getG());
80 this.dsaSpec = new DSAParameterSpec(params.getP(), params.getQ(), params.getG());
106 return KeyUtil.getEncodedSubjectPublicKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.id_dsa, new DSAParameter(dsaSpec.getP(), dsaSpec.getQ(), dsaSpec.getG()).toASN1Primitive()), new ASN1Integer(y));
132 return this.getY().hashCode() ^ this.getParams().getG().hashCode()
147 && this.getParams().getG().equals(other.getParams().getG())
169 out.writeObject(dsaSpec.getG());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JDKDSAPrivateKey.java 52 this.dsaSpec = new DSAParameterSpec(spec.getP(), spec.getQ(), spec.getG());
63 this.dsaSpec = new DSAParameterSpec(params.getP(), params.getQ(), params.getG());
70 this.dsaSpec = new DSAParameterSpec(params.getParameters().getP(), params.getParameters().getQ(), params.getParameters().getG());
98 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.id_dsa, new DSAParameter(dsaSpec.getP(), dsaSpec.getQ(), dsaSpec.getG())), new DERInteger(getX()));
129 && this.getParams().getG().equals(other.getParams().getG())
136 return this.getX().hashCode() ^ this.getParams().getG().hashCode()
176 out.writeObject(dsaSpec.getG());
JDKDSAPublicKey.java 35 this.dsaSpec = new DSAParameterSpec(spec.getP(), spec.getQ(), spec.getG());
49 this.dsaSpec = new DSAParameterSpec(params.getParameters().getP(), params.getParameters().getQ(), params.getParameters().getG());
81 this.dsaSpec = new DSAParameterSpec(params.getP(), params.getQ(), params.getG());
109 return new SubjectPublicKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.id_dsa, new DSAParameter(dsaSpec.getP(), dsaSpec.getQ(), dsaSpec.getG())), new DERInteger(y)).getEncoded(ASN1Encoding.DER);
140 return this.getY().hashCode() ^ this.getParams().getG().hashCode()
155 && this.getParams().getG().equals(other.getParams().getG())
175 out.writeObject(dsaSpec.getG());
JCEDHPrivateKey.java 56 this.dhSpec = new DHParameterSpec(spec.getP(), spec.getG());
76 this.dhSpec = new DHParameterSpec(params.getP(), params.getG(), params.getL().intValue());
80 this.dhSpec = new DHParameterSpec(params.getP(), params.getG());
87 this.dhSpec = new DHParameterSpec(params.getP().getValue(), params.getG().getValue());
99 this.dhSpec = new DHParameterSpec(params.getParameters().getP(), params.getParameters().getG(), params.getParameters().getL());
132 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.dhKeyAgreement, new DHParameter(dhSpec.getP(), dhSpec.getG(), dhSpec.getL())), new DERInteger(getX()));
167 out.writeObject(dhSpec.getG());
JCEDHPublicKey.java 37 this.dhSpec = new DHParameterSpec(spec.getP(), spec.getG());
51 this.dhSpec = new DHParameterSpec(params.getParameters().getP(), params.getParameters().getG(), params.getParameters().getL());
89 this.dhSpec = new DHParameterSpec(params.getP(), params.getG(), params.getL().intValue());
93 this.dhSpec = new DHParameterSpec(params.getP(), params.getG());
100 this.dhSpec = new DHParameterSpec(params.getP().getValue(), params.getG().getValue());
125 return KeyUtil.getEncodedSubjectPublicKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.dhKeyAgreement, new DHParameter(dhSpec.getP(), dhSpec.getG(), dhSpec.getL())), new DERInteger(y));
175 out.writeObject(dhSpec.getG());
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()));
JCEECPrivateKey.java 130 dp.getG().getX().toBigInteger(),
131 dp.getG().getY().toBigInteger()),
161 dp.getG().getX().toBigInteger(),
162 dp.getG().getY().toBigInteger()),
173 spec.getG().getX().toBigInteger(),
174 spec.getG().getY().toBigInteger()),
218 // gParam.getG().getX().toBigInteger(),
219 // gParam.getG().getY().toBigInteger()),
232 ecP.getG().getX().toBigInteger(),
233 ecP.getG().getY().toBigInteger())
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
ECParameterSpec.java 73 public ECPoint getG()
114 return this.getCurve().equals(other.getCurve()) && this.getG().equals(other.getG());
119 return this.getCurve().hashCode() ^ this.getG().hashCode();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
DSAParameters.java 47 public BigInteger getG()
67 return (pm.getP().equals(p) && pm.getQ().equals(q) && pm.getG().equals(g));
72 return getP().hashCode() ^ getQ().hashCode() ^ getG().hashCode();
DHParameters.java 112 public BigInteger getG()
182 return pm.getP().equals(p) && pm.getG().equals(g);
187 return getP().hashCode() ^ getG().hashCode() ^ (getQ() != null ? getQ().hashCode() : 0);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
BCDHPrivateKey.java 56 this.dhSpec = new DHParameterSpec(spec.getP(), spec.getG());
76 this.dhSpec = new DHParameterSpec(params.getP(), params.getG(), params.getL().intValue());
80 this.dhSpec = new DHParameterSpec(params.getP(), params.getG());
87 this.dhSpec = new DHParameterSpec(params.getP().getValue(), params.getG().getValue());
99 this.dhSpec = new DHParameterSpec(params.getParameters().getP(), params.getParameters().getG(), params.getParameters().getL());
132 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.dhKeyAgreement, new DHParameter(dhSpec.getP(), dhSpec.getG(), dhSpec.getL()).toASN1Primitive()), new ASN1Integer(getX()));
163 && this.getParams().getG().equals(other.getParams().getG())
170 return this.getX().hashCode() ^ this.getParams().getG().hashCode()
210 out.writeObject(dhSpec.getG());
    [all...]
BCDHPublicKey.java 38 this.dhSpec = new DHParameterSpec(spec.getP(), spec.getG());
52 this.dhSpec = new DHParameterSpec(params.getParameters().getP(), params.getParameters().getG(), params.getParameters().getL());
90 this.dhSpec = new DHParameterSpec(params.getP(), params.getG(), params.getL().intValue());
94 this.dhSpec = new DHParameterSpec(params.getP(), params.getG());
101 this.dhSpec = new DHParameterSpec(params.getP().getValue(), params.getG().getValue());
126 return KeyUtil.getEncodedSubjectPublicKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.dhKeyAgreement, new DHParameter(dhSpec.getP(), dhSpec.getG(), dhSpec.getL()).toASN1Primitive()), new ASN1Integer(y));
164 return this.getY().hashCode() ^ this.getParams().getG().hashCode()
179 && this.getParams().getG().equals(other.getParams().getG())
201 out.writeObject(dhSpec.getG());
    [all...]
AlgorithmParametersSpi.java 49 DHParameter dhP = new DHParameter(currentSpec.getP(), currentSpec.getG(), currentSpec.getL());
106 currentSpec = new DHParameterSpec(dhP.getP(), dhP.getG(), dhP.getL().intValue());
110 currentSpec = new DHParameterSpec(dhP.getP(), dhP.getG());
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
DHParameterSpecTest.java 54 assertEquals("The value returned by getG() must be "
56 dhps.getG(), gs[i]);
63 assertEquals("The value returned by getG() must be "
65 dhps.getG(), gs[i]);
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
DHParameterSpecTest.java 54 assertEquals("The value returned by getG() must be "
56 dhps.getG(), gs[i]);
63 assertEquals("The value returned by getG() must be "
65 dhps.getG(), gs[i]);
  /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()));
EC5Util.java 77 spec.getG().getX().toBigInteger(),
78 spec.getG().getY().toBigInteger()),
87 spec.getG().getX().toBigInteger(),
88 spec.getG().getY().toBigInteger()),
  /libcore/luni/src/test/java/tests/security/interfaces/
DSAParamsTest.java 32 * #getG()
36 assertEquals("Invalid G", g, params.getG());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
BCECPrivateKey.java 143 dp.getG().getX().toBigInteger(),
144 dp.getG().getY().toBigInteger()),
176 dp.getG().getX().toBigInteger(),
177 dp.getG().getY().toBigInteger()),
188 spec.getG().getX().toBigInteger(),
189 spec.getG().getY().toBigInteger()),
239 // gParam.getG().getX().toBigInteger(),
240 // gParam.getG().getY().toBigInteger()),
253 ecP.getG().getX().toBigInteger(),
254 ecP.getG().getY().toBigInteger())
    [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())
76 && dsa1.getParams().getG().equals(dsa2.getParams().getG())
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketKexDhGexGroup.java 45 public BigInteger getG()
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/signature/
DSAPrivateKey.java 43 public BigInteger getG()
DSAPublicKey.java 40 public BigInteger getG()

Completed in 807 milliseconds

1 2 3 4 5