diff --git a/keystores/src/main/java/com/palantir/conjure/java/config/ssl/KeyStores.java b/keystores/src/main/java/com/palantir/conjure/java/config/ssl/KeyStores.java index 13587c494..3d6c5e241 100644 --- a/keystores/src/main/java/com/palantir/conjure/java/config/ssl/KeyStores.java +++ b/keystores/src/main/java/com/palantir/conjure/java/config/ssl/KeyStores.java @@ -57,7 +57,7 @@ import java.util.regex.Pattern; import java.util.stream.Collectors; -final class KeyStores { +public final class KeyStores { private static final Cache certCache = Caffeine.newBuilder().maximumSize(1024).softValues().build(); @@ -331,7 +331,7 @@ static KeyStore newKeyStoreWithEntry(KeyStore original, Optional passwor * @return a newly constructed key store of the type trustStoreType that contains the contents of the trust store * and all default ca certificates. */ - static KeyStore getCombinedTrustStoreAndDefaultCas(Path trustStorePath, StoreType trustStoreType) { + public static KeyStore getCombinedTrustStoreAndDefaultCas(Path trustStorePath, StoreType trustStoreType) { KeyStore keyStore; switch (trustStoreType) { case JKS: