home *** CD-ROM | disk | FTP | other *** search
- package java.security;
-
- import java.security.spec.InvalidKeySpecException;
- import java.security.spec.KeySpec;
-
- public abstract class KeyFactorySpi {
- protected abstract PublicKey engineGeneratePublic(KeySpec var1) throws InvalidKeySpecException;
-
- protected abstract PrivateKey engineGeneratePrivate(KeySpec var1) throws InvalidKeySpecException;
-
- protected abstract KeySpec engineGetKeySpec(Key var1, Class var2) throws InvalidKeySpecException;
-
- protected abstract Key engineTranslateKey(Key var1) throws InvalidKeyException;
- }
-