home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 April / DPPCPRO0499.ISO / April / Notes / 50b2wic.exe / DATA1.CAB / NotesProgramFilesJavaSupport / rt.jar / java / security / KeyPair.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-04-23  |  617 b   |  20 lines

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