Added in API level 1

ECParameterSpec

public class ECParameterSpec
extends Object implements AlgorithmParameterSpec

java.lang.Object
   ↳ java.security.spec.ECParameterSpec


This immutable class specifies the set of domain parameters used with elliptic curve cryptography (ECC).

Summary

Public constructors

ECParameterSpec(EllipticCurve curve, ECPoint g, BigInteger n, int h)

Creates elliptic curve domain parameters based on the specified values.

Public methods

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.

Inherited methods