public class ECParameterSpec extends Object implements AlgorithmParameterSpec
Constructor and Description |
---|
ECParameterSpec(ECCurve curve,
ECPoint G,
BigInteger n) |
ECParameterSpec(ECCurve curve,
ECPoint G,
BigInteger n,
BigInteger h) |
ECParameterSpec(ECCurve curve,
ECPoint G,
BigInteger n,
BigInteger h,
byte[] seed) |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object o) |
ECCurve |
getCurve()
return the curve along which the base point lies.
|
ECPoint |
getG()
return the base point we are using for these domain parameters.
|
BigInteger |
getH()
return the cofactor H to the order of G.
|
BigInteger |
getN()
return the order N of G
|
byte[] |
getSeed()
return the seed used to generate this curve (if available).
|
int |
hashCode() |
public ECParameterSpec(ECCurve curve, ECPoint G, BigInteger n)
public ECParameterSpec(ECCurve curve, ECPoint G, BigInteger n, BigInteger h)
public ECParameterSpec(ECCurve curve, ECPoint G, BigInteger n, BigInteger h, byte[] seed)
public ECCurve getCurve()
public ECPoint getG()
public BigInteger getN()
public BigInteger getH()
public byte[] getSeed()
Copyright © 2015. All rights reserved.