This class is an immutable representation of a private key for
elliptic curve cryptography.

public class ECPrivateKeySpec implements KeySpec {
// Public Constructors
public ECPrivateKeySpec(java.math.BigInteger s, ECParameterSpec params);
// Public Instance Methods
public ECParameterSpec getParams( );
public java.math.BigInteger getS( );
}