Finally need player lowcase crazycrypt

This commit is contained in:
Xephi 2014-06-15 17:34:06 +02:00
parent 1c77a1d0d9
commit 630271dfe8

View File

@ -12,7 +12,7 @@ public class CRAZYCRYPT1 implements EncryptionMethod {
@Override
public String getHash(String password, String salt, String name)
throws NoSuchAlgorithmException {
final String text = "ÜÄaeut//&/=I " + password + "7421€547" + name + "__+IÄIH§%NK " + password;
final String text = "ÜÄaeut//&/=I " + password + "7421€547" + name.toLowerCase() + "__+IÄIH§%NK " + password;
try {
final MessageDigest md = MessageDigest.getInstance("SHA-512");
md.update(text.getBytes(charset), 0, text.length());