what-the-bank/sources/org/bouncycastle/crypto/params/DSAPrivateKeyParameters.java

18 lines
417 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 DSAPrivateKeyParameters extends DSAKeyParameters {
private BigInteger x;
public BigInteger getX() {
return this.x;
}
public DSAPrivateKeyParameters(BigInteger bigInteger, DSAParameters dSAParameters) {
super(true, dSAParameters);
this.x = bigInteger;
}
}