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

  1. package java.security;
  2.  
  3. import java.security.spec.InvalidKeySpecException;
  4. import java.security.spec.KeySpec;
  5.  
  6. public abstract class KeyFactorySpi {
  7.    protected abstract PublicKey engineGeneratePublic(KeySpec var1) throws InvalidKeySpecException;
  8.  
  9.    protected abstract PrivateKey engineGeneratePrivate(KeySpec var1) throws InvalidKeySpecException;
  10.  
  11.    protected abstract KeySpec engineGetKeySpec(Key var1, Class var2) throws InvalidKeySpecException;
  12.  
  13.    protected abstract Key engineTranslateKey(Key var1) throws InvalidKeyException;
  14. }
  15.