home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 April / DPPCPRO0499.ISO / April / Notes / 50b2wic.exe / DATA1.CAB / NotesProgramFilesJavaSupport / rt.jar / java / security / Certificate.class (.txt) next >
Encoding:
Java Class File  |  1998-04-23  |  573 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.