MD5 -> MD4

This commit is contained in:
Belle Aerni 2023-01-18 23:11:18 -08:00
parent 612adb5a17
commit bf3b425c8d

View file

@ -89,7 +89,7 @@ class AntCache
if (in_array('xxh128', hash_algos())) {
return hash('xxh128', $content . $salt);
} else {
return hash('md5', $content . $salt);
return hash('md4', $content . $salt);
}
}
}