public abstract class

KeyManagerFactorySpi

extends Object
java.lang.Object
   ↳ com.sun.net.ssl.KeyManagerFactorySpi

This class is deprecated.
As of JDK 1.4, this implementation-specific class was replaced by KeyManagerFactorySpi.

Class Overview

This class defines the Service Provider Interface (SPI) for the KeyManagerFactory class.

All the abstract methods in this class must be implemented by each cryptographic service provider who wishes to supply the implementation of a particular key manager factory.

Summary

Public Constructors
KeyManagerFactorySpi()
Protected Methods
abstract KeyManager[] engineGetKeyManagers()
Returns one trust manager for each type of trust material.
abstract void engineInit(KeyStore ks, char[] password)
Initializes this factory with a source of key material.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public KeyManagerFactorySpi ()

Protected Methods

protected abstract KeyManager[] engineGetKeyManagers ()

Returns one trust manager for each type of trust material.

Returns
  • the key managers

protected abstract void engineInit (KeyStore ks, char[] password)

Initializes this factory with a source of key material. The provider may also include a provider-specific source of key material.

Parameters
ks the key store or null
password the password for recovering keys