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

24 lines
566 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 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;
}
}