WAS v8.5 > Secure applications > Secure communications > Secure communications using SSL

Default chained certificate configuration in SSL

When a WebSphere Application Server process starts for the first time, the SSL runtime initializes the default keystores and truststores specified in the SSL configuration.

The chained certificates created during profile creation have a 1 year life span by default. The default root certificate used to signer the default chained certificate has a life span of 15 years. The life span of the default and the root certificates can be customized during profile creation. An advantage in this type of chained certificate is that only the signer from the root certificate is needed to establish trust. When the chained certificate is regenerated with the same root certificate, clients using that root signer certificate for trust do not lose their trust.


Default keystore and truststore properties

During profile creation, WAS creates...

A default, chained certificate is created in key.p12. The root signer, or public key, of the chained certificate is extracted from key.p12 and added to the trust.p12 file. If the files do not exist during process startup, they are recreated during startup.

We can identify keystore and truststore defaults because of their suffixes: DefaultKeyStore and DefaultTrustStore. Also, in the SSL configuration, set the fileBased attribute to true so the runtime only uses the default keystores and truststore.

On a base application server, default key and truststores are stored in the node directory of the configuration repository...

The default password is WebAS for all default keystores generated by WAS.


Default chained certificate

The default chained certificate of the server, along with a root self-signed certificate, is used to sign the default chained certificate.

Certificate properties exist in ssl.client.props, but do not exist in the server configuration. To use these values in the server configuration, add them as custom security properties. From the dmgr console, click...

... to change the following properties:

After changing the properties...

  1. Delete the default key.p12 keystore and trust.p12 truststore files for the application server, which contain the default chained certificate.

    If the keystore and truststore file do not exist, WAS automatically generates them and creates new default certificates using the previously listed property values.

  2. Delete the root keystore, which is the root-key.p12 file, to regenerate the root certificate with the previously listed properties.

  3. Restart the application server.

If a default_alias value already exists, the runtime appends _#, where the number sign (#) is a number that increases until it is unique in the keystore. ${hostname} is a variable that is resolved to the host name where it was originally created. The default expiration date of chained certificates is one year from their creation date.

The runtime monitors the expiration dates of chained certificates using the certificate expiration monitor. These chained certificates are automatically replaced along with any signer certificates when they are within the expiration threshold, which is typically 30 days before expiration. We can increase the default key size beyond 1024 bits only when the Java runtime environment policy files are unrestricted (that is, not exported).


Default keystore and truststore configurations for new Base Application Server processes

The following sample code shows the default SSL configuration for a base application server.


Default keystore

In the following sample code, the keystore object that represents the default keystore is similar to the XML object.

The NodeDefaultKeyStore keystore contains the personal certificate that represents the identity of the secure endpoint. Any keystore reference can use the ${WAS_INSTALL_ROOT} variable, which is expanded by the runtime. The PKCS12 default keystore type is in the most interoperable format, which means that it can be imported into most browsers. The myCell password is encoded. The management scope determines which server runtime loads the keystore configuration into memory, as shown in the following code sample:

Any configuration objects stored in the security.xml file whose management scopes are outside the current process scope are not loaded in the current process. Instead, the management scope is loaded by servers that are contained within the myNode node. Any application server that is on the specific node can view the keystore configuration.

When you list the contents of the key.p12 file to show the chained certificate, note the common name (CN) of the distinguished name (DN) is the host name of the resident machine. This listing enables you to verify the host name by its URL connections. Additionally, we can verify the host name from a custom trust manager. For more information, see Trust manager control of X.509 certificate trust decisions.


Contents of default keystore

The following sample code shows the contents of the default key.p12 file in a keytool list:

    keytool -list \
            -v \
            -keystore /WebSphere/AppServer/profile/AppSrv01/profiles/config/cells/myCell/nodes\myNode/key.p12 \
            -storetype PKCS12 \
            -storepass *****
    

    Keystore type: PKCS12
    Keystore provider: IBMJCE
    
    Your keystore contains 1 entry 
    Alias name: default Creation date: Dec 31, 1969
    Entry type: keyEntry
    Certificate chain length: 2
    Certificate[1]:
    Owner: CN=myhost.austin.ibm.com, OU=myCell, OU=myNode, O=IBM, C=US
    Issuer: CN=myhost.austin.ibm.com, OU=Root Certificate, OU=myCell, OU=myNode, O=IBM, C=US
    Serial number: 4e48f29aafea6
    Valid from: 2/7/08 1:03 PM until: 2/6/09 1:03 PM
    Certificate fingerprints:
      MD5:  DB:FE:65:DB:40:13:F4:48:A4:CE:2F:4F:60:A5:FF:2C
      SHA1: A1:D4:DD:4B:DE:7B:45:F7:4D:AA:6A:FC:92:38:78:53:7A:99:F1:DC
    Certificate[2]:
    Owner: CN=myhost.austin.ibm.com, OU=Root Certificate, OU=myCell, OU=myNode, O=IBM, C=US
    Issuer: CN=myhost.austin.ibm.com, OU=Root Certificate, OU=myCell, OU=myNode, O=IBM, C=US
    Serial number: 4e48e5fd4eae3
    Valid from: 2/7/08 1:03 PM until: 2/2/28 1:03 PM
    Certificate fingerprints:
      MD5:  A5:9B:05:78:CF:AB:89:94:C9:2E:F1:87:34:B3:FC:75
      SHA1: 43:74:B6:C7:FA:C1:0F:19:F2:51:2B:17:60:0D:34:93:55:BF:D5:D2
    
    *******************************************
    *******************************************

The default alias name and the keyEntry entry type indicate the private key is stored with the public key, which represents a complete personal certificate. The certificate is owned by...

    CN=myhost.austin.ibm.com, OU=myCell, OU=myNode, O=IBM, C=US

...and it is issued by the default root certificate, which is owned by...

    CN=myhost.austin.ibm.com, OU=Root Certificate, OU=myCell, OU=myNode, O=IBM, C=US

By default, the certificate is valid for one year from the date of creation.

Additionally, in some signer-exchange situations, the certificate fingerprint ensures the sent certificate has not been modified. The fingerprint, which is a hash algorithm output for the certificate, is displayed by the WAS runtime during an automated signer exchange on the client side. The client fingerprint must match the fingerprint that is displayed on the server. The runtime typically uses the SHA1 hash algorithm to generate certificate fingerprints.


Default truststore

In the following sample code, the keystore object represents the default trust.p12 truststore. The truststore contains signer certificates necessary for making trust decisions:

Contents of default truststore

The following sample code shows the contents of the default trust.p12 truststore in a keytool listing. By default, for the sample chained certificate, the root certificate signer is included in the trust store. The root signer alias name and the trustedCertEntry entry type indicate the certificate is the public key. The private key is not stored in this truststore. In addition, all truststores contain the default DataPower certificate.

    keytool -list -v -keystore c:\WebSphere\AppServer\profile\AppSrv01\profiles\config\cells\myCell\nodes\myNode\trust.p12 -storetype PKCS12 -storepass *****

    Keystore type: PKCS12
    Keystore provider: IBMJCE
    
    Your keystore contains 2 entries 
    Alias name: root Creation date: Dec 31, 1969
    Entry type: trustedCertEntry
    
    Owner: CN=myhost.austin.ibm.com, OU=Root Certificate, OU=myCell, OU=myNode, O=IBM, C=US
    Issuer: CN=myhost.austin.ibm.com, OU=Root Certificate, OU=myCell, OU=myNode, O=IBM, C=US
    Serial number: 4e48e5fd4eae3
    Valid from: 2/7/08 1:03 PM until: 2/2/28 1:03 PM
    Certificate fingerprints:
       MD5:  A5:9B:05:78:CF:AB:89:94:C9:2E:F1:87:34:B3:FC:75
       SHA1: 43:74:B6:C7:FA:C1:0F:19:F2:51:2B:17:60:0D:34:93:55:BF:D5:D2
    
    *******************************************
    *******************************************
    
    Alias name: datapower
    Creation date: Dec 31, 1969
    Entry type: trustedCertEntry
    
    Owner: OU=Root CA, O="DataPower Technology, Inc.", C=US
    Issuer: OU=Root CA, O="DataPower Technology, Inc.", C=US
    Serial number: 0
    Valid from: 6/11/03 1:23 PM until: 6/6/23 1:23 PM
    Certificate fingerprints:
       MD5:  18:AC:86:D1:9A:90:A2:AE:8B:28:F9:A8:75:C8:A9:DB
       SHA1: A9:BA:A4:B5:BC:26:2F:5D:2A:80:93:CA:BA:F4:31:05:F2:54:14:17


Subtopics


Related concepts:

Secure communications using SSL


Related

Renewing a certificate in SSL
PersonalCertificateCommands command group for AdminTask


+

Search Tips   |   Advanced Search