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 / RSAPrivateKeySpec.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  457 b   |  22 lines

  1. package java.security.spec;
  2.  
  3. import java.math.BigInteger;
  4.  
  5. public class RSAPrivateKeySpec implements KeySpec {
  6.    private BigInteger modulus;
  7.    private BigInteger privateExponent;
  8.  
  9.    public RSAPrivateKeySpec(BigInteger var1, BigInteger var2) {
  10.       this.modulus = var1;
  11.       this.privateExponent = var2;
  12.    }
  13.  
  14.    public BigInteger getModulus() {
  15.       return this.modulus;
  16.    }
  17.  
  18.    public BigInteger getPrivateExponent() {
  19.       return this.privateExponent;
  20.    }
  21. }
  22.