Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ECPrivateKey.java « interfaces « jce « spongycastle « org « java « main « src « prov - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 235664347e14edbcb2371a13f3c7310136649cab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.spongycastle.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();
}