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

  1. package java.security;
  2.  
  3. import java.io.Serializable;
  4.  
  5. public final class KeyPair implements Serializable {
  6.    private PrivateKey privateKey;
  7.    private PublicKey publicKey;
  8.  
  9.    public KeyPair(PublicKey var1, PrivateKey var2) {
  10.       this.publicKey = var1;
  11.       this.privateKey = var2;
  12.    }
  13.  
  14.    public PublicKey getPublic() {
  15.       return this.publicKey;
  16.    }
  17.  
  18.    public PrivateKey getPrivate() {
  19.       return this.privateKey;
  20.    }
  21. }
  22.