Skip to content

Commit

Permalink
loosen run restrictions
Browse files Browse the repository at this point in the history
  • Loading branch information
artoonie committed Jan 30, 2024
1 parent 2a4a329 commit c15bf17
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/network/brightspots/rcv/SecurityConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,7 @@ private static void setupAndVerifyFipsCompliance() throws SecurityConfigurationE
String randomProviderName =
java.security.SecureRandom.getInstanceStrong().getProvider().getName();
if (!randomProviderName.equals(expectedSecureRandomProvider)) {
throw new SecurityConfigurationException("Unexpected SecureRandom provider"
+ randomProviderName);
Logger.warning("The SecureRandom provider is " + randomProviderName);
}
} catch (NoSuchAlgorithmException e) {
throw new SecurityConfigurationException("No SecureRandom algorithm found.");
Expand Down

0 comments on commit c15bf17

Please sign in to comment.