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

30 lines
688 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 NaccacheSternKeyParameters extends AsymmetricKeyParameter {
private BigInteger g;
int lowerSigmaBound;
private BigInteger n;
public BigInteger getModulus() {
return this.n;
}
public int getLowerSigmaBound() {
return this.lowerSigmaBound;
}
public BigInteger getG() {
return this.g;
}
public NaccacheSternKeyParameters(boolean z, BigInteger bigInteger, BigInteger bigInteger2, int i) {
super(z);
this.g = bigInteger;
this.n = bigInteger2;
this.lowerSigmaBound = i;
}
}