May 2001
Intermediate to advanced
618 pages
20h 50m
English
Class com.sun.net.ssl.KeyManagerFactory
This class can be used to obtain a key manager, which can be registered with an SSL server socket to determine which keys that socket uses when it accepts a connection. Once you have a factory (from the getInstance( ) method), you must initialize it with the keystore you want to use; the key managers returned from the getKeyManagers( ) method can then be used to initialize an SSL context object.
public class com.sun.net.ssl.KeyManagerFactory
extends java.lang.Object {
// Constructors
protected KeyManagerFactory(KeyManagerFactorySpi,
Provider, String);
// Class Methods
public static final String getDefaultAlgorithm( );
public static final KeyManagerFactory getInstance(String, String);
public static final KeyManagerFactory getInstance(String);
public static final KeyManagerFactory getInstance(String,
Provider);
// Instance Methods
public final String getAlgorithm( );
public KeyManager[] getKeyManagers( );
public final Provider getProvider( );
public void init(KeyStore, char[]);
}
SSLContext
|
Read now
Unlock full access