18 lines
437 B
Java
18 lines
437 B
Java
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;
|
|
}
|
|
}
|