opendj-core/src/main/java/org/forgerock/opendj/ldap/requests/Requests.java
@@ -17,7 +17,7 @@ package org.forgerock.opendj.ldap.requests; import static com.forgerock.opendj.util.FipsStaticUtils.EMPTY_BYTES; import static com.forgerock.opendj.util.StaticUtils.EMPTY_BYTES; import static com.forgerock.opendj.util.StaticUtils.getBytes; import java.util.Arrays; opendj-core/src/test/java/org/forgerock/opendj/ldap/requests/CRAMMD5SASLBindRequestTestCase.java
@@ -17,7 +17,7 @@ package org.forgerock.opendj.ldap.requests; import static com.forgerock.opendj.util.FipsStaticUtils.EMPTY_BYTES; import static com.forgerock.opendj.util.StaticUtils.EMPTY_BYTES; import static com.forgerock.opendj.util.StaticUtils.getBytes; import static org.fest.assertions.Assertions.assertThat; opendj-core/src/test/java/org/forgerock/opendj/ldap/requests/DigestMD5SASLBindRequestTestCase.java
@@ -17,7 +17,7 @@ package org.forgerock.opendj.ldap.requests; import static com.forgerock.opendj.util.FipsStaticUtils.EMPTY_BYTES; import static com.forgerock.opendj.util.StaticUtils.EMPTY_BYTES; import static com.forgerock.opendj.util.StaticUtils.getBytes; import static org.fest.assertions.Assertions.assertThat; import static org.testng.Assert.assertEquals; opendj-core/src/test/java/org/forgerock/opendj/ldap/requests/GSSAPISASLBindRequestTestCase.java
@@ -17,7 +17,7 @@ package org.forgerock.opendj.ldap.requests; import static com.forgerock.opendj.util.FipsStaticUtils.EMPTY_BYTES; import static com.forgerock.opendj.util.StaticUtils.EMPTY_BYTES; import static com.forgerock.opendj.util.StaticUtils.getBytes; import static org.fest.assertions.Assertions.assertThat; import static org.testng.Assert.assertEquals; opendj-core/src/test/java/org/forgerock/opendj/ldap/requests/GenericBindRequestTestCase.java
@@ -17,7 +17,7 @@ package org.forgerock.opendj.ldap.requests; import static com.forgerock.opendj.util.FipsStaticUtils.EMPTY_BYTES; import static com.forgerock.opendj.util.StaticUtils.EMPTY_BYTES; import static com.forgerock.opendj.util.StaticUtils.getBytes; import static org.fest.assertions.Assertions.assertThat; opendj-core/src/test/java/org/forgerock/opendj/ldap/requests/PlainSASLBindRequestTestCase.java
@@ -17,7 +17,7 @@ package org.forgerock.opendj.ldap.requests; import static com.forgerock.opendj.util.FipsStaticUtils.EMPTY_BYTES; import static com.forgerock.opendj.util.StaticUtils.EMPTY_BYTES; import static com.forgerock.opendj.util.StaticUtils.getBytes; import static org.fest.assertions.Assertions.assertThat; opendj-server-legacy/src/main/java/org/opends/server/tools/SSLConnectionFactory.java
@@ -40,6 +40,7 @@ import org.opends.server.extensions.BlindTrustManagerProvider; import org.forgerock.i18n.slf4j.LocalizedLogger; import org.forgerock.opendj.ldap.SSLContextBuilder; import org.forgerock.opendj.ldap.TrustManagers; import org.opends.server.util.CollectionUtils; import org.opends.server.util.ExpirationCheckTrustManager; import org.opends.server.util.SelectableCertificateKeyManager; @@ -120,8 +121,13 @@ new BlindTrustManagerProvider(); trustManagers = blindTrustProvider.getTrustManagers(); } else if (trustStorePath == null) { trustManagers = PromptTrustManager.getTrustManagers(); } else if (isFips()) { TrustManager tm = TrustManagers.checkUsingPkcs11TrustStore(); trustManagers = new TrustManager[] { tm }; } else { trustManagers = PromptTrustManager.getTrustManagers(); } } else { TrustManager[] tmpTrustManagers = getTrustManagers(KeyStore.getDefaultType(), null, trustStorePath,