We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4ec92f commit b22ed9dCopy full SHA for b22ed9d
core/src/main/java/ch/cyberduck/core/random/DefaultSecureRandomProvider.java
@@ -53,9 +53,9 @@ public SecureRandom provide() {
53
PreferencesFactory.get().getProperty("connection.ssl.securerandom.provider"));
54
}
55
catch(NoSuchAlgorithmException | NoSuchProviderException e) {
56
- log.warn("Failure {} obtaining secure random", e.getMessage());
+ log.error("Failure {} obtaining secure random", e.getMessage());
57
// Keep null for default secure random
58
- return null;
+ seeder = new SecureRandom();
59
60
61
return seeder;
0 commit comments