+

Search Tips   |   Advanced Search

Trust manager control of X.509 certificate trust decisions

The role of the trust manager is to validate the SSL certificate sent by the peer, which includes verifying the signature and checking the expiration date of the certificate. A JSSE trust manager determines if the remote peer can be trusted during an SSL handshake.

WebSphere Application Server has the ability to call multiple trust managers during an SSL connection. The default trust manager does the standard certificate validation; custom trust manager plug-ins run customized validation such as host name verification. See Example: Developing a custom trust manager for custom SSL trust decisions

When a trust manager is configured in a server-side SSL configuration, the server calls the isClientTrusted method. When a trust manager is configured in a client-side SSL configuration, the client calls the isServerTrusted method. The peer certificate chain is passed to these methods. If the trust manager chooses not to trust the peer information, it might produce an exception to force a handshake failure.

Optionally, WAS provides the com.ibm.wsspi.ssl.TrustManagerExtendedInfo interface so that additional information can be passed to the trust manager. For more information, see the com.ibm.wsspi.ssl.TrustManagerExtendedInfo interface.


Default IbmX509 trust manager

The default IbmX509 trust manager, used in the following code sample, establishes trust by performing standard certificate validation.

The trust manager provides a signer certificate to verify the peer certificate sent during the handshake. The signers who are added to the truststore for the SSL configuration must be trustworthy. If we do not trust the signers or do not want to allow others to connect to the servers, consider removing default root certificates from certificate authorities (CA). We might also remove any certificates if we cannot verify their origination.


Default IbmPKIX trust manager

Use the default IbmPKIX trust manager to replace the IbmX509 trust manager, which is shown in the following code sample:

See Example: Enabling certificate revocation checking with the default IbmPKIX trust manager for additional information in using the default IbmPKIX trust manager.

In addition to its role of standard certificate verification, the IbmPKIX trust manager checks for OCSP properties and for certificates that contain certificate revocation list (CRL) distribution points. This process is known as extended CRL checking. When we select a trust manager, its associated properties are automatically set as Java System properties so that the IBMCertPath and IBMJSSE2 providers are aware that CRL checking is enabled.


Differences between the Ibmx509 and the IbmPKIX trust managers

x.509 certificate validation requirements are more stringent in the IbmX509 trustmanager than in the IbmPKIX trustmanager. For example:

Additionally, the Online Certificate Status Protocol (OCSP) can be used to perform an online check of certificate validity. However this capability requires us to set additional system properties, as documented in the Java Certification Path API Programmer's Guide, which is available on the IBM developerWorks web site.


Custom trust manager

We can define a custom trust manager to perform additional trust checking, which is based upon the needs of the environment. For example, in one environment, we might enable connections from the same Transmission Control Protocol (TCP) subnet only. The com.ibm.wsspi.ssl.TrustManagerExtendedInfo interface provides extended information about the connection that is not provided by the standard Java Secure Sockets Extension (JSSE) javax.net.ssl.X509TrustManager interface. The configured trustManagerClass attribute determines which class is instantiated by the runtime, as shown in the following code sample:

The trustManagerClass attribute must implement the javax.net.ssl.X509TrustManager interface and, optionally, can implement the com.ibm.wsspi.ssl.TrustManagerExtendedInfo interface.


Disable the default trust manager

In some cases, we might not want to perform the standard certificate verification provided by the IbmX509 and IbmPKIX default trust managers. For example, we might be working with an internal automated test infrastructure that is not concerned with SSL client or server authentication, integrity, or confidentiality. The following sample code shows a basic custom trust manager such as com.ibm.ws.ssl.core.CustomTrustManager whose property is set to true.

We can set this property in the global properties at the top of the ssl.client.props file for clients or in the security.xml custom properties file for servers. Configure a custom trust manager when you disable the default trust manager to prevent the server from calling the default trust manager even though it is configured. Disabling the default trust manager is not a common practice. Be sure to test the system with the disabled default trust manager in a test environment first. For more information on setting up a custom trust manager, see Create a custom trust manager configuration for SSL


Related:

  • SSL configurations
  • Trust managers collection
  • Java(TM) Certification Path API Programmer's Guide