home *** CD-ROM | disk | FTP | other *** search
- package java.security.spec;
-
- import java.math.BigInteger;
-
- public class RSAKeyGenParameterSpec implements AlgorithmParameterSpec {
- private int keysize;
- private BigInteger publicExponent;
- // $FF: renamed from: F0 java.math.BigInteger
- public static final BigInteger field_0 = BigInteger.valueOf(3L);
- // $FF: renamed from: F4 java.math.BigInteger
- public static final BigInteger field_1 = BigInteger.valueOf(65537L);
-
- public RSAKeyGenParameterSpec(int var1, BigInteger var2) {
- this.keysize = var1;
- this.publicExponent = var2;
- }
-
- public int getKeysize() {
- return this.keysize;
- }
-
- public BigInteger getPublicExponent() {
- return this.publicExponent;
- }
- }
-