18 lines
447 B
Java
18 lines
447 B
Java
|
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;
|
||
|
}
|
||
|
}
|