01: package org.bouncycastle.jce.interfaces;
02:
03: import java.math.BigInteger;
04: import java.security.PrivateKey;
05:
06: /**
07: * interface for Elliptic Curve Private keys.
08: */
09: public interface ECPrivateKey extends ECKey, PrivateKey {
10: /**
11: * return the private value D.
12: */
13: public BigInteger getD();
14: }
|