01: package org.bouncycastle.jce.interfaces;
02:
03: import java.security.PublicKey;
04:
05: import org.bouncycastle.math.ec.ECPoint;
06:
07: /**
08: * interface for elliptic curve public keys.
09: */
10: public interface ECPublicKey extends ECKey, PublicKey {
11: /**
12: * return the public point Q
13: */
14: public ECPoint getQ();
15: }
|