- Deprecate unsalted hashes: if such a hash is configured, move it to the legacy hashes setting to still support the existing hashes in the database but hash all passwords from now on with our default, SHA256.
18 lines
425 B
Java
18 lines
425 B
Java
package fr.xephi.authme.security.crypts;
|
|
|
|
import fr.xephi.authme.security.crypts.description.Recommendation;
|
|
import fr.xephi.authme.security.crypts.description.Usage;
|
|
|
|
import static fr.xephi.authme.security.HashUtils.md5;
|
|
|
|
@Deprecated
|
|
@Recommendation(Usage.DEPRECATED)
|
|
public class DoubleMd5 extends UnsaltedMethod {
|
|
|
|
@Override
|
|
public String computeHash(String password) {
|
|
return md5(md5(password));
|
|
}
|
|
|
|
}
|