org.bouncycastle.jce.interfaces.ECKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-jdk14 Show documentation
Show all versions of bcprov-jdk14 Show documentation
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. The package is organised
so that it contains a light-weight API suitable for use in any environment (including the newly released J2ME)
with the additional infrastructure to conform the algorithms to the JCE framework.
package org.bouncycastle.jce.interfaces;
import org.bouncycastle.jce.spec.ECParameterSpec;
/**
* generic interface for an Elliptic Curve Key.
*/
public interface ECKey
{
/**
* return a parameter specification representing the EC domain parameters
* for the key.
* @deprecated this method vanises in JDK 1.5. Use getParameters().
*/
public ECParameterSpec getParams();
/**
* return a parameter specification representing the EC domain parameters
* for the key.
*/
public ECParameterSpec getParameters();
}