home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / java / security / spec / RSAKeyGenParameterSpec.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  658 b   |  26 lines

  1. package java.security.spec;
  2.  
  3. import java.math.BigInteger;
  4.  
  5. public class RSAKeyGenParameterSpec implements AlgorithmParameterSpec {
  6.    private int keysize;
  7.    private BigInteger publicExponent;
  8.    // $FF: renamed from: F0 java.math.BigInteger
  9.    public static final BigInteger field_0 = BigInteger.valueOf(3L);
  10.    // $FF: renamed from: F4 java.math.BigInteger
  11.    public static final BigInteger field_1 = BigInteger.valueOf(65537L);
  12.  
  13.    public RSAKeyGenParameterSpec(int var1, BigInteger var2) {
  14.       this.keysize = var1;
  15.       this.publicExponent = var2;
  16.    }
  17.  
  18.    public int getKeysize() {
  19.       return this.keysize;
  20.    }
  21.  
  22.    public BigInteger getPublicExponent() {
  23.       return this.publicExponent;
  24.    }
  25. }
  26.