18 lines
429 B
Java
18 lines
429 B
Java
|
package org.bouncycastle.crypto.params;
|
||
|
|
||
|
import org.bouncycastle.math.ec.ECPoint;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class ECPublicKeyParameters extends ECKeyParameters {
|
||
|
ECPoint Q;
|
||
|
|
||
|
public ECPoint getQ() {
|
||
|
return this.Q;
|
||
|
}
|
||
|
|
||
|
public ECPublicKeyParameters(ECPoint eCPoint, ECDomainParameters eCDomainParameters) {
|
||
|
super(false, eCDomainParameters);
|
||
|
this.Q = eCPoint.normalize();
|
||
|
}
|
||
|
}
|