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

36 lines
795 B
Java
Raw Permalink Normal View History

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