30 lines
688 B
Java
30 lines
688 B
Java
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;
|
|
}
|
|
}
|