Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,11 @@
import java.io.DataInputStream;
import java.security.cert.Certificate;
import java.util.Collection;
import org.apache.commons.lang3.RandomStringUtils;

public class ObjectStorageCustomCertPutObject {

static String keyStorePassword = RandomStringUtils.randomAlphanumeric(10);
private ObjectStorage objStoreClient = null;
final ResourcePrincipalAuthenticationDetailsProvider provider
= ResourcePrincipalAuthenticationDetailsProvider.builder().build();
Expand Down Expand Up @@ -73,7 +75,7 @@ private static void createKeystoreWithCaBundle(String caBundlePath, String trust
}

FileOutputStream fos = new FileOutputStream(trustStorePath);
ks.store(fos,"changeit".toCharArray());
ks.store(fos, keyStorePassword.toCharArray());
}
}

Expand Down