home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VPage / Java.bin / CLASSES.ZIP / java / security / Certificate.class (.txt) next >
Encoding:
Java Class File  |  1997-07-08  |  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.