what-the-bank/sources/org/bouncycastle/crypto/params/GOST3410PrivateKeyParameter...

18 lines
447 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.crypto.params;
import java.math.BigInteger;
/* loaded from: classes6.dex */
public class GOST3410PrivateKeyParameters extends GOST3410KeyParameters {
private BigInteger x;
public BigInteger getX() {
return this.x;
}
public GOST3410PrivateKeyParameters(BigInteger bigInteger, GOST3410Parameters gOST3410Parameters) {
super(true, gOST3410Parameters);
this.x = bigInteger;
}
}