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 @@ -304,7 +304,7 @@ static Integer toTimeout(final TimeValue timeout) {

private KeyStore createFipsCompliantGoogleTrustStore() throws GeneralSecurityException, IOException {
// Use BCFKS KeyStore type which is required for FIPS mode
KeyStore trustStore = KeyStore.getInstance("BCFIPS", "BCFIPS");
KeyStore trustStore = KeyStore.getInstance("BCFKS", "BCFIPS");
// Initialize empty BCFKS trust store
trustStore.load(null, null);

Expand All @@ -323,3 +323,4 @@ private KeyStore createFipsCompliantGoogleTrustStore() throws GeneralSecurityExc
return trustStore;
}
}

Loading