KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > security > KeyFactorySpi

java.security
Class KeyFactorySpi

java.lang.Object
  extended by java.security.KeyFactorySpi
See Also:
Source Code, KeyFactory, Key, PublicKey, PrivateKey, KeySpec, DSAPublicKeySpec, X509EncodedKeySpec

protected abstract PrivateKey engineGeneratePrivate(KeySpec keySpec)
                                             throws InvalidKeySpecException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected abstract PublicKey engineGeneratePublic(KeySpec keySpec)
                                           throws InvalidKeySpecException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected abstract <T extends KeySpec> T engineGetKeySpec(Key key,
                                                          Class<T> keySpec)
                                               throws InvalidKeySpecException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected abstract Key engineTranslateKey(Key key)
                                   throws InvalidKeyException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public KeyFactorySpi()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags