Searched defs:getG (Results 1 - 11 of 11) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
H A DDHParameter.java75 public BigInteger getG() method in class:DHParameter
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DDSAParameter.java77 public BigInteger getG() method in class:DSAParameter
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DECDomainParameters.java62 public ECPoint getG() method in class:ECDomainParameters
H A DDSAParameters.java47 public BigInteger getG() method in class:DSAParameters
67 return (pm.getP().equals(p) && pm.getQ().equals(q) && pm.getG().equals(g));
72 return getP().hashCode() ^ getQ().hashCode() ^ getG().hashCode();
H A DDHParameters.java112 public BigInteger getG() method in class:DHParameters
182 return pm.getP().equals(p) && pm.getG().equals(g);
187 return getP().hashCode() ^ getG().hashCode() ^ (getQ() != null ? getQ().hashCode() : 0);
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
H A DPacketKexDhGexGroup.java45 public BigInteger getG() method in class:PacketKexDhGexGroup
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/signature/
H A DDSAPrivateKey.java43 public BigInteger getG() method in class:DSAPrivateKey
H A DDSAPublicKey.java40 public BigInteger getG() method in class:DSAPublicKey
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
H A DECParameterSpec.java73 public ECPoint getG() method in class:ECParameterSpec
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/asn1/x9/
H A DDHDomainParameters.java100 public ASN1Integer getG() method in class:DHDomainParameters
H A DX9ECParameters.java121 public ECPoint getG() method in class:X9ECParameters

Completed in 81 milliseconds