package org.bouncycastle.jce.spec; import java.math.BigInteger; import java.security.spec.KeySpec; /* loaded from: classes6.dex */ public class GOST3410PublicKeySpec implements KeySpec { private BigInteger a; private BigInteger p; private BigInteger q; private BigInteger y; public BigInteger getY() { return this.y; } public BigInteger getQ() { return this.q; } public BigInteger getP() { return this.p; } public BigInteger getA() { return this.a; } public GOST3410PublicKeySpec(BigInteger bigInteger, BigInteger bigInteger2, BigInteger bigInteger3, BigInteger bigInteger4) { this.y = bigInteger; this.p = bigInteger2; this.q = bigInteger3; this.a = bigInteger4; } }