package org.bouncycastle.jce.interfaces;
import org.bouncycastle.jce.spec.ECParameterSpec;
generic interface for an Elliptic Curve Key.
/**
* generic interface for an Elliptic Curve Key.
*/
public interface ECKey
{
return a parameter specification representing the EC domain parameters
for the key.
/**
* return a parameter specification representing the EC domain parameters
* for the key.
*/
public ECParameterSpec getParameters();
}