what-the-bank/sources/org/bouncycastle/jce/spec/ECPublicKeySpec.java

18 lines
437 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.jce.spec;
import org.bouncycastle.math.ec.ECPoint;
/* loaded from: classes6.dex */
public class ECPublicKeySpec extends ECKeySpec {
private ECPoint q;
public ECPoint getQ() {
return this.q;
}
public ECPublicKeySpec(ECPoint eCPoint, ECParameterSpec eCParameterSpec) {
super(eCParameterSpec);
this.q = eCPoint.getCurve() != null ? eCPoint.normalize() : eCPoint;
}
}