FileDocCategorySizeDatePackage
ECDomainParameters.javaAPI DocAzureus 3.0.3.41198Tue Jun 08 05:13:00 BST 2004org.bouncycastle.crypto.params

ECDomainParameters

public class ECDomainParameters extends Object implements org.bouncycastle.math.ec.ECConstants

Fields Summary
org.bouncycastle.math.ec.ECCurve
curve
byte[]
seed
org.bouncycastle.math.ec.ECPoint
G
BigInteger
n
BigInteger
h
Constructors Summary
public ECDomainParameters(org.bouncycastle.math.ec.ECCurve curve, org.bouncycastle.math.ec.ECPoint G, BigInteger n)

		this.curve = curve;
		this.G = G;
		this.n = n;
        this.h = ONE;
        this.seed = null;
	
public ECDomainParameters(org.bouncycastle.math.ec.ECCurve curve, org.bouncycastle.math.ec.ECPoint G, BigInteger n, BigInteger h)

		this.curve = curve;
		this.G = G;
		this.n = n;
		this.h = h;
        this.seed = null;
	
public ECDomainParameters(org.bouncycastle.math.ec.ECCurve curve, org.bouncycastle.math.ec.ECPoint G, BigInteger n, BigInteger h, byte[] seed)

		this.curve = curve;
		this.G = G;
		this.n = n;
		this.h = h;
        this.seed = seed;
	
Methods Summary
public org.bouncycastle.math.ec.ECCurvegetCurve()

		return curve;
	
public org.bouncycastle.math.ec.ECPointgetG()

		return G;
	
public java.math.BigIntegergetH()

		return h;
	
public java.math.BigIntegergetN()

		return n;
	
public byte[]getSeed()

		return seed;