summaryrefslogtreecommitdiffstats
path: root/bcprov/src/main/java/org/bouncycastle/jce/interfaces/ECPrivateKey.java
blob: 39d80c3c44dcad682b9b930a99c512a7f464184f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.bouncycastle.jce.interfaces;

import java.math.BigInteger;
import java.security.PrivateKey;

/**
 * interface for Elliptic Curve Private keys.
 */
public interface ECPrivateKey
    extends ECKey, PrivateKey
{
    /**
     * return the private value D.
     */
    public BigInteger getD();
}