36 lines
797 B
Java
36 lines
797 B
Java
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;
|
|
}
|
|
}
|