what-the-bank/sources/org/bouncycastle/jce/interfaces/ECPublicKey.java

10 lines
226 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
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();
}