1 package org.bouncycastle.jce.interfaces;
2 
3 import java.security.PublicKey;
4 
5 import org.bouncycastle.math.ec.ECPoint;
6 
7 /**
8  * interface for elliptic curve public keys.
9  */
10 public interface ECPublicKey
11     extends ECKey, PublicKey
12 {
13     /**
14      * return the public point Q
15      */
getQ()16     public ECPoint getQ();
17 }
18