Modifier and Type | Class and Description |
---|---|
static class |
SslOptions.ClientAuthPolicy
Represents the client authentication policy option.
|
Modifier and Type | Field and Description |
---|---|
static String |
SSL_HOST_NAME_VALIDATION_DISABLED_PROPERTY
The name of the property which, when true, will disable SSL host name validation.
|
static KeyManager[] |
USE_EMPTY_KEY_MANAGER
Use an empty
KeyManager while initializing an SSLContext . |
static TrustManager[] |
USE_JVM_TRUST_MANAGER
Use the JVM trust manager.
|
Modifier and Type | Method and Description |
---|---|
SslOptions.ClientAuthPolicy |
clientAuthPolicy()
Returns the client authentication policy.
|
SslOptions |
clientAuthPolicy(SslOptions.ClientAuthPolicy clientAuthPolicy)
Sets the client auth policy.
|
static SslOptions |
copyOfSslOptions(SslOptions sslOptions)
Creates a copy of the provided
SslOptions . |
String[] |
enabledCipherSuites()
Returns the names of the cipher suites which are currently enabled for secure connections with the Directory
Server.
|
SslOptions |
enabledCipherSuites(Collection<String> cipherSuites)
Adds the cipher suites enabled for secure connections with the Directory Server.
|
SslOptions |
enabledCipherSuites(String... cipherSuites)
Adds the cipher suites enabled for secure connections with the Directory Server.
|
String[] |
enabledProtocols()
Returns the names of the protocol versions which are currently enabled for secure connections with the Directory
Server.
|
SslOptions |
enabledProtocols(Collection<String> protocols)
Adds the protocol versions enabled for secure connections with the Directory Server.
|
SslOptions |
enabledProtocols(String... protocols)
Adds the protocol versions enabled for secure connections with the Directory Server.
|
static boolean |
isSslHostNameValidationEnabled()
Returns whether server host name validation against the SSL certificate's subject must be performed.
|
static SSLEngine |
newClientSslEngine(SslOptions sslOptions)
Creates a new
SSLEngine configured to be used by a client application. |
static SSLEngine |
newServerSslEngine(SslOptions sslOptions)
Creates a new
SSLEngine configured to be used by a server application. |
static SslOptions |
newSslOptions(KeyManager[] keyManagers,
TrustManager[] trustManagers)
Creates a new
SslOptions for the provided key managers and trust managers. |
static SslOptions |
newSslOptions(KeyManager keyManager,
TrustManager trustManager)
Creates a new
SslOptions for the provided key manager and trust manager. |
SSLContext |
sslContext()
Returns the
SSLContext that should be used when installing the SSL layer. |
static List<String> |
supportedCipherSuites()
Returns a
List of TLS cipher suites names reported as supported by the running JVM. |
static List<String> |
supportedProtocols()
Returns a
List of TLS protocol names reported as supported by the running JVM. |
public static final KeyManager[] USE_EMPTY_KEY_MANAGER
KeyManager
while initializing an SSLContext
.
This parameter should be used as the first one of
SSLContext.init(KeyManager[], TrustManager[], java.security.SecureRandom)
.
An empty KeyManager
implementation never returns any certificates/keys.
public static final TrustManager[] USE_JVM_TRUST_MANAGER
public static final String SSL_HOST_NAME_VALIDATION_DISABLED_PROPERTY
public static boolean isSslHostNameValidationEnabled()
true
If the host name must be validated, false
otherwise.public static SSLEngine newClientSslEngine(SslOptions sslOptions)
SSLEngine
configured to be used by a client application.sslOptions
- SslOptions to use to configure the SSLEngine
.SSLEngine
which has been configured with the
settings contained in this SslOptions
public static SSLEngine newServerSslEngine(SslOptions sslOptions)
SSLEngine
configured to be used by a server application.sslOptions
- SslOptions to use to configure the SSLEngine
.SSLEngine
which has been configured with the
settings contained in this SslOptions
public static List<String> supportedCipherSuites()
List
of TLS cipher suites names reported as supported by the running JVM.List
of TLS cipher suites names reported as supported by the running JVMpublic static List<String> supportedProtocols()
List
of TLS protocol names reported as supported by the running JVM.List
of TLS protocol names reported as supported by the running JVMpublic static SslOptions newSslOptions(KeyManager keyManager, TrustManager trustManager) throws KeyManagementException
SslOptions
for the provided key manager and trust manager.keyManager
- The key manager, which may be null
indicating that no certificates will be used.trustManager
- The trust manager, which may be null
indicating that only certificates signed by the authorities
associated with this JVM will be accepted.SslOptions
instance.KeyManagementException
- If the key manager or trust manager could not be used for some reason.public static SslOptions newSslOptions(KeyManager[] keyManagers, TrustManager[] trustManagers) throws KeyManagementException
SslOptions
for the provided key managers and trust managers.keyManagers
- The key managers, which may be null
indicating that no certificates will be used.trustManagers
- The trust managers, which may be null
indicating that only certificates signed by the authorities
associated with this JVM will be accepted.SslOptions
instance.KeyManagementException
- If the key managers or trust managers could not be used for some reason.public static SslOptions copyOfSslOptions(SslOptions sslOptions)
SslOptions
.sslOptions
- The SslOptions
SslOptions
instance.public SslOptions.ClientAuthPolicy clientAuthPolicy()
SslOptions.ClientAuthPolicy
option.public String[] enabledProtocols()
null
if the default protocols are to be used.public String[] enabledCipherSuites()
null
if the default cipher-suites are to be used.public SSLContext sslContext()
SSLContext
that should be used when installing the SSL layer.SSLContext
that should be used when installing the SSL layer.public SslOptions clientAuthPolicy(SslOptions.ClientAuthPolicy clientAuthPolicy)
clientAuthPolicy
- The client auth policy.SslOptions
.SslOptions.ClientAuthPolicy
public SslOptions enabledCipherSuites(Collection<String> cipherSuites)
cipherSuites
- Names of all the cipher-suites to enable or null
to use the default ones.public SslOptions enabledCipherSuites(String... cipherSuites)
cipherSuites
- Names of all the cipher-suites to enable or null
to use the default ones.public SslOptions enabledProtocols(Collection<String> protocols)
protocols
- Names of all the protocols to enable or null
to use the default ones.public SslOptions enabledProtocols(String... protocols)
protocols
- Names of all the protocols to enable or null
to use the default ones.Copyright © 2010-2018, ForgeRock All Rights Reserved.