1 package org.bouncycastle.jcajce.interfaces;
2 
3 import java.security.PrivateKey;
4 
5 public interface EdDSAPrivateKey
6     extends EdDSAKey, PrivateKey
7 {
8     /**
9      * Return the public key associated with this private key.
10      *
11      * @return an EdDSAPublicKey
12      */
getPublicKey()13     EdDSAPublicKey getPublicKey();
14 }
15