Java javax.net.ssl X509KeyManager fields, constructors, methods, implement or subclass

Example usage for Java javax.net.ssl X509KeyManager fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.net.ssl X509KeyManager.

The text is from its open source code.

Implementation

javax.net.ssl.X509KeyManager has the following implementations.
Click this link to see all its implementation.

Method

StringchooseClientAlias(String[] keyType, Principal[] issuers, Socket socket)
Choose an alias to authenticate the client side of a secure socket given the public key type and the list of certificate issuer authorities recognized by the peer (if any).
StringchooseServerAlias(String keyType, Principal[] issuers, Socket socket)
Choose an alias to authenticate the server side of a secure socket given the public key type and the list of certificate issuer authorities recognized by the peer (if any).
X509Certificate[]getCertificateChain(String alias)
Returns the certificate chain associated with the given alias.
String[]getClientAliases(String keyType, Principal[] issuers)
Get the matching aliases for authenticating the client side of a secure socket given the public key type and the list of certificate issuer authorities recognized by the peer (if any).
PrivateKeygetPrivateKey(String alias)
Returns the key associated with the given alias.
String[]getServerAliases(String keyType, Principal[] issuers)
Get the matching aliases for authenticating the server side of a secure socket given the public key type and the list of certificate issuer authorities recognized by the peer (if any).
StringtoString()
Returns a string representation of the object.