public class ECParameterSpec extends Objectimplements AlgorithmParameterSpec
AlgorithmParameterSpec
| Constructor and Description |
|---|
ECParameterSpec(EllipticCurve
Creates elliptic curve domain parameters based on the specified values.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getCofactor()
Returns the cofactor.
|
EllipticCurve |
getCurve()
Returns the elliptic curve that this parameter defines.
|
ECPoint |
getGenerator()
Returns the generator which is also known as the base point.
|
BigInteger |
getOrder()
Returns the order of the generator.
|
public ECParameterSpec(EllipticCurvecurve, ECPoint g, BigInteger n, int h)
curve - the elliptic curve which this parameter defines.
g - the generator which is also known as the base point.
n - the order of the generator
g.
h - the cofactor.
NullPointerException - if
curve,
g, or
n is null.
IllegalArgumentException - if
n or
h is not positive.
public EllipticCurvegetCurve()
public ECPointgetGenerator()
public BigIntegergetOrder()
public int getCofactor()