32 lines
944 B
Java
32 lines
944 B
Java
package org.bouncycastle.crypto.params;
|
|
|
|
import java.math.BigInteger;
|
|
import java.security.SecureRandom;
|
|
import org.bouncycastle.crypto.KeyGenerationParameters;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public class RSAKeyGenerationParameters extends KeyGenerationParameters {
|
|
private int certainty;
|
|
private BigInteger publicExponent;
|
|
|
|
public BigInteger getPublicExponent() {
|
|
return this.publicExponent;
|
|
}
|
|
|
|
public int getCertainty() {
|
|
return this.certainty;
|
|
}
|
|
|
|
public RSAKeyGenerationParameters(BigInteger bigInteger, SecureRandom secureRandom, int i, int i2) {
|
|
super(secureRandom, i);
|
|
if (i < 12) {
|
|
throw new IllegalArgumentException("key strength too small");
|
|
}
|
|
if (!bigInteger.testBit(0)) {
|
|
throw new IllegalArgumentException("public exponent cannot be even");
|
|
}
|
|
this.publicExponent = bigInteger;
|
|
this.certainty = i2;
|
|
}
|
|
}
|