javax.net.ssl
Class KeyManagerFactorySpi
java.lang.Object
javax.net.ssl.KeyManagerFactorySpi
public abstract class KeyManagerFactorySpi
extends java.lang.Object
The Service Provider Interface (SPI) for key manager
factories.
- Casey Marshall (rsdio@metastatic.org)
protected abstract KeyManager[] | engineGetKeyManagers() - Engine method for retrieving this factory's key managers.
|
protected abstract void | engineInit(KeyStore store, char[] passwd) - Engine method for initializing this factory with a key store and a
password for private keys.
|
protected abstract void | engineInit(ManagerFactoryParameters params) - Engine method for initializing this factory with some
algorithm-specific parameters.
|
KeyManagerFactorySpi
public KeyManagerFactorySpi()
engineGetKeyManagers
protected abstract KeyManager[] engineGetKeyManagers()
Engine method for retrieving this factory's key managers.
engineInit
protected abstract void engineInit(KeyStore store,
char[] passwd)
throws KeyStoreException,
NoSuchAlgorithmException,
UnrecoverableKeyException
Engine method for initializing this factory with a key store and a
password for private keys. Either parameter may be null
,
in which case some default parameters (possibly derived from system
properties) should be used.
store
- The key store.passwd
- The private key password.
engineInit
protected abstract void engineInit(ManagerFactoryParameters params)
throws InvalidAlgorithmParameterException
Engine method for initializing this factory with some
algorithm-specific parameters.
params
- The factory parameters.