Located in compilation unit of sun.
Modifier and Type | Field and Description |
---|---|
pack-priv static final X509ExtendedKeyManager |
Access | Constructor and Description |
---|---|
private |
Modifier and Type | Method and Description |
---|---|
public String | chooseClientAlias(String[]
the key algorithm type name(s), ordered
with the most-preferred key type first. keyTypes, Principal[] the list of acceptable CA issuer subject names
or null if it does not matter which issuers are used. issuers, Socket the socket to be used for this connection. This
parameter can be null, which indicates that
implementations are free to select an alias applicable
to any socket. socket)Implements javax. 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). |
public String | chooseEngineClientAlias(String[]
the key algorithm type name(s), ordered
with the most-preferred key type first. keyTypes, Principal[] the list of acceptable CA issuer subject names
or null if it does not matter which issuers are used. issuers, SSLEngine the engine)SSLEngine to be used for this
connection. This parameter can be null, which indicates
that implementations of this interface are free to
select an alias applicable to any engine.Overrides javax. Choose an alias to authenticate the client side of an
|
public String | chooseEngineServerAlias(String
the key algorithm type name. keyType, Principal[] the list of acceptable CA issuer subject names
or null if it does not matter which issuers are used. issuers, SSLEngine the engine)SSLEngine to be used for this
connection. This parameter can be null, which indicates
that implementations of this interface are free to
select an alias applicable to any engine.Overrides javax. Choose an alias to authenticate the server side of an
|
public String | chooseServerAlias(String
the key algorithm type name. keyType, Principal[] the list of acceptable CA issuer subject names
or null if it does not matter which issuers are used. issuers, Socket the socket to be used for this connection. This
parameter can be null, which indicates that
implementations are free to select an alias applicable
to any socket. socket)Implements javax. 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). |
public X509Certificate[] | Returns: the certificate chain (ordered with the user's certificate first and the root certificate authority last)the alias name alias)Implements javax. Returns the certificate chain associated with the given alias. |
public String[] | getClientAliases(String
the key algorithm type name keyType, Principal[] the list of acceptable CA issuer subject names,
or null if it does not matter which issuers are used. issuers)Implements javax. 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). |
public PrivateKey | getPrivateKey(String
the alias name alias)Implements javax. Returns the key associated with the given alias. |
public String[] | getServerAliases(String
the key algorithm type name keyType, Principal[] the list of acceptable CA issuer subject names
or null if it does not matter which issuers are used. issuers)Implements javax. 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). |
INSTANCE | back to summary |
---|---|
pack-priv static final X509ExtendedKeyManager INSTANCE |
DummyX509KeyManager | back to summary |
---|---|
private DummyX509KeyManager() |
chooseClientAlias | back to summary |
---|---|
public String chooseClientAlias(String[] keyTypes, Principal[] issuers, Socket socket) Implements javax. Doc from javax. 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).
|
chooseEngineClientAlias | back to summary |
---|---|
public String chooseEngineClientAlias(String[] keyTypes, Principal[] issuers, SSLEngine engine) Overrides javax. Doc from javax. Choose an alias to authenticate the client side of an
The default implementation returns null.
|
chooseEngineServerAlias | back to summary |
---|---|
public String chooseEngineServerAlias(String keyType, Principal[] issuers, SSLEngine engine) Overrides javax. Doc from javax. Choose an alias to authenticate the server side of an
The default implementation returns null.
|
chooseServerAlias | back to summary |
---|---|
public String chooseServerAlias(String keyType, Principal[] issuers, Socket socket) Implements javax. Doc from javax. 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).
|
getCertificateChain | back to summary |
---|---|
public X509Certificate[] getCertificateChain(String alias) Implements javax. Returns the certificate chain associated with the given alias.
|
getClientAliases | back to summary |
---|---|
public String[] getClientAliases(String keyType, Principal[] issuers) Implements javax. Doc from javax. 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). |
getPrivateKey | back to summary |
---|---|
public PrivateKey getPrivateKey(String alias) Implements javax. Doc from javax. Returns the key associated with the given alias.
|
getServerAliases | back to summary |
---|---|
public String[] getServerAliases(String keyType, Principal[] issuers) Implements javax. Doc from javax. 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). |