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

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

Introduction

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

The text is from its open source code.

Subclass

javax.net.ssl.X509ExtendedKeyManager has subclasses.
Click this link to see all its subclasses.

Constructor

X509ExtendedKeyManager()
Constructor used by subclasses only.

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).
StringchooseEngineClientAlias(String[] keyType, Principal[] issuers, SSLEngine engine)
Choose an alias to authenticate the client side of an SSLEngine connection given the public key type and the list of certificate issuer authorities recognized by the peer (if any).
StringchooseEngineServerAlias(String keyType, Principal[] issuers, SSLEngine engine)
Choose an alias to authenticate the server side of an SSLEngine connection 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).