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

  1. package java.security;
  2.  
  3. import java.io.IOException;
  4. import java.io.InputStream;
  5. import java.io.OutputStream;
  6.  
  7. public interface Certificate {
  8.    Principal getGuarantor();
  9.  
  10.    Principal getPrincipal();
  11.  
  12.    PublicKey getPublicKey();
  13.  
  14.    void encode(OutputStream var1) throws KeyException, IOException;
  15.  
  16.    void decode(InputStream var1) throws KeyException, IOException;
  17.  
  18.    String getFormat();
  19.  
  20.    String toString(boolean var1);
  21. }
  22.