aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/prov/src/main/java/org/spongycastle/jce/interfaces/ECKey.java
blob: b463c11d94ffafe91301a223a1e3fa2a264831d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.spongycastle.jce.interfaces;

import org.spongycastle.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.
     */
    public ECParameterSpec getParameters();
}