blob: 5f58c0280d1992f39b93c245a683b00626e79c45 [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
package com.android.internal.org.bouncycastle.jce.interfaces;
import java.security.PublicKey;
import com.android.internal.org.bouncycastle.math.ec.ECPoint;
/**
* interface for elliptic curve public keys.
* @hide This class is not part of the Android public SDK API
*/
public interface ECPublicKey
extends ECKey, PublicKey
{
/**
* return the public point Q
*/
public ECPoint getQ();
}