#1128 Rename files to match new case of Java classes

This commit is contained in:
ljacqu
2017-03-17 19:17:38 +01:00
parent 8ebb3c6b5a
commit 6bd0b7c4e0
48 changed files with 8 additions and 8 deletions
@@ -35,7 +35,7 @@ public enum HashAlgorithm {
WBB4(fr.xephi.authme.security.crypts.Wbb4.class),
WHIRLPOOL(fr.xephi.authme.security.crypts.Whirlpool.class),
WORDPRESS(fr.xephi.authme.security.crypts.Wordpress.class),
XAUTH(fr.xephi.authme.security.crypts.XAuth.class),
XAUTH(fr.xephi.authme.security.crypts.Xauth.class),
XFBCRYPT(fr.xephi.authme.security.crypts.XfBCrypt.class),
CUSTOM(null);
@@ -4,7 +4,7 @@ import fr.xephi.authme.security.crypts.description.Recommendation;
import fr.xephi.authme.security.crypts.description.Usage;
@Recommendation(Usage.RECOMMENDED)
public class XAuth extends HexSaltedMethod {
public class Xauth extends HexSaltedMethod {
private static String getWhirlpool(String message) {
Whirlpool w = new Whirlpool();