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

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