aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorJ08nY2024-08-07 13:31:39 +0200
committerJ08nY2024-08-07 13:31:39 +0200
commit6e399ce3dec913be7728c2892301dd3eceb2cd83 (patch)
treea7e70b800512ac53acd70f455b0a2c97699af330 /common
parentb8054933b3d07ef8bfc3bec56b2bb795c1d01e5e (diff)
downloadECTester-6e399ce3dec913be7728c2892301dd3eceb2cd83.tar.gz
ECTester-6e399ce3dec913be7728c2892301dd3eceb2cd83.tar.zst
ECTester-6e399ce3dec913be7728c2892301dd3eceb2cd83.zip
Diffstat (limited to 'common')
-rw-r--r--common/src/main/java/cz/crcs/ectester/common/util/Util.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/src/main/java/cz/crcs/ectester/common/util/Util.java b/common/src/main/java/cz/crcs/ectester/common/util/Util.java
index 9e6daa2..1d9bcf4 100644
--- a/common/src/main/java/cz/crcs/ectester/common/util/Util.java
+++ b/common/src/main/java/cz/crcs/ectester/common/util/Util.java
@@ -35,7 +35,7 @@ public class Util {
public static SecureRandom getRandom(byte[] seed) {
SecureRandom random;
try {
- random = SecureRandom.getInstance("DRBG");
+ random = SecureRandom.getInstance("SHA1PRNG");
} catch (NoSuchAlgorithmException ignored) {
return null;
}