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

  1. package java.security;
  2.  
  3. import java.io.IOException;
  4. import java.security.spec.AlgorithmParameterSpec;
  5. import java.security.spec.InvalidParameterSpecException;
  6.  
  7. public abstract class AlgorithmParametersSpi {
  8.    protected abstract void engineInit(AlgorithmParameterSpec var1) throws InvalidParameterSpecException;
  9.  
  10.    protected abstract void engineInit(byte[] var1) throws IOException;
  11.  
  12.    protected abstract void engineInit(byte[] var1, String var2) throws IOException;
  13.  
  14.    protected abstract AlgorithmParameterSpec engineGetParameterSpec(Class var1) throws InvalidParameterSpecException;
  15.  
  16.    protected abstract byte[] engineGetEncoded() throws IOException;
  17.  
  18.    protected abstract byte[] engineGetEncoded(String var1) throws IOException;
  19.  
  20.    protected abstract String engineToString();
  21. }
  22.