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