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

24 lines
566 B
Java

package org.bouncycastle.crypto.params;
import java.math.BigInteger;
/* loaded from: classes6.dex */
public class RSAKeyParameters extends AsymmetricKeyParameter {
private BigInteger exponent;
private BigInteger modulus;
public BigInteger getModulus() {
return this.modulus;
}
public BigInteger getExponent() {
return this.exponent;
}
public RSAKeyParameters(boolean z, BigInteger bigInteger, BigInteger bigInteger2) {
super(z);
this.modulus = bigInteger;
this.exponent = bigInteger2;
}
}