This commit is contained in:
YYTVicky 2025-05-11 08:00:52 +02:00 committed by GitHub
commit 57ad90e561
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -219,7 +219,7 @@ public class AggregatorUtil {
private byte[] md5(byte[] data) {
try {
MessageDigest d = MessageDigest.getInstance("MD5");
MessageDigest d = MessageDigest.getInstance("SHA-512");
return d.digest(data);
} catch (NoSuchAlgorithmException e) {
throw new RuntimeException(e);