10 lines
226 B
Java
10 lines
226 B
Java
|
package org.bouncycastle.jce.interfaces;
|
||
|
|
||
|
import java.security.PublicKey;
|
||
|
import org.bouncycastle.math.ec.ECPoint;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public interface ECPublicKey extends ECKey, PublicKey {
|
||
|
ECPoint getQ();
|
||
|
}
|