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

36 lines
797 B
Java
Raw 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 GOST3410PrivateKeySpec implements KeySpec {
private BigInteger a;
private BigInteger p;
private BigInteger q;
private BigInteger x;
public BigInteger getX() {
return this.x;
}
public BigInteger getQ() {
return this.q;
}
public BigInteger getP() {
return this.p;
}
public BigInteger getA() {
return this.a;
}
public GOST3410PrivateKeySpec(BigInteger bigInteger, BigInteger bigInteger2, BigInteger bigInteger3, BigInteger bigInteger4) {
this.x = bigInteger;
this.p = bigInteger2;
this.q = bigInteger3;
this.a = bigInteger4;
}
}