javax.net.ssl
Interface X509KeyManager
- KeyManager
public interface X509KeyManager
A key manager for X.509 certificates and their associated private keys.
String | chooseClientAlias(String[] keyTypes, Principal[] issuers, Socket socket) - Choose an alias for client-side authentication.
|
String | chooseServerAlias(String keyType, Principal[] issuers, Socket socket) - Choose an alias for server-side authentication.
|
X509Certificate[] | getCertificateChain(String alias) - Gets the X.509 certificate chain associated with the given alias.
|
String[] | getClientAliases(String keyType, Principal[] issuers) - Returns all client aliases that support the given key type.
|
PrivateKey | getPrivateKey(String alias) - Gets the private key associated with the given alias.
|
String[] | getServerAliases(String keyType, Principal[] issuers) - Returns all server aliases that support the given key type.
|
chooseClientAlias
public String chooseClientAlias(String[] keyTypes,
Principal[] issuers,
Socket socket)
Choose an alias for client-side authentication.
keyTypes
- A list of acceptable key types.issuers
- A list of acceptable certificate issuers.socket
- The connecting socket.
chooseServerAlias
public String chooseServerAlias(String keyType,
Principal[] issuers,
Socket socket)
Choose an alias for server-side authentication.
keyType
- The desired certificate type.issuers
- A list of acceptable certificate issuers.socket
- The connecting socket.
getCertificateChain
public X509Certificate[] getCertificateChain(String alias)
Gets the X.509 certificate chain associated with the given alias.
getClientAliases
public String[] getClientAliases(String keyType,
Principal[] issuers)
Returns all client aliases that support the given key type.
keyType
- The desired key type.issuers
- A list of acceptable certificate issuers.
- The (possibly empty) list of aliases.
getPrivateKey
public PrivateKey getPrivateKey(String alias)
Gets the private key associated with the given alias.
getServerAliases
public String[] getServerAliases(String keyType,
Principal[] issuers)
Returns all server aliases that support the given key type.
keyType
- The desired key type.issuers
- A list of acceptable certificate issuers.
- The (possibly empty) list of aliases.