18 lines
417 B
Java
18 lines
417 B
Java
package org.bouncycastle.crypto.params;
|
|
|
|
import java.math.BigInteger;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public class DSAPrivateKeyParameters extends DSAKeyParameters {
|
|
private BigInteger x;
|
|
|
|
public BigInteger getX() {
|
|
return this.x;
|
|
}
|
|
|
|
public DSAPrivateKeyParameters(BigInteger bigInteger, DSAParameters dSAParameters) {
|
|
super(true, dSAParameters);
|
|
this.x = bigInteger;
|
|
}
|
|
}
|