Package java.security
Class KeyFactorySpi
- java.lang.Object
-
- java.security.KeyFactorySpi
-
public abstract class KeyFactorySpi extends Object
-
-
Constructor Summary
Constructors Constructor Description KeyFactorySpi()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description protected abstract PrivateKey
engineGeneratePrivate(KeySpec var0)
protected abstract PublicKey
engineGeneratePublic(KeySpec var0)
protected abstract KeySpec
engineGetKeySpec(Key var0, Class var1)
protected abstract Key
engineTranslateKey(Key var0)
-
-
-
Method Detail
-
engineGeneratePrivate
protected abstract PrivateKey engineGeneratePrivate(KeySpec var0) throws InvalidKeySpecException
- Throws:
InvalidKeySpecException
-
engineGeneratePublic
protected abstract PublicKey engineGeneratePublic(KeySpec var0) throws InvalidKeySpecException
- Throws:
InvalidKeySpecException
-
engineGetKeySpec
protected abstract KeySpec engineGetKeySpec(Key var0, Class var1) throws InvalidKeySpecException
- Throws:
InvalidKeySpecException
-
engineTranslateKey
protected abstract Key engineTranslateKey(Key var0) throws InvalidKeyException
- Throws:
InvalidKeyException
-
-