home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1997 August / PCO0897.ISO / browser / tonline / ie32.exe / IEXPLORE.CAB / CLASSES.ZIP / sun / net / www / auth / Authenticator.class (.txt) next >
Encoding:
Java Class File  |  1996-10-01  |  393 b   |  12 lines

  1. package sun.net.www.auth;
  2.  
  3. import java.io.IOException;
  4. import java.io.InputStream;
  5. import java.io.OutputStream;
  6.  
  7. public abstract class Authenticator {
  8.    public abstract void encrypt(InputStream var1, OutputStream var2) throws IOException;
  9.  
  10.    public abstract void decrypt(InputStream var1, OutputStream var2) throws IOException;
  11. }
  12.