1
0
mirror of https://e.coding.net/circlecloud/AuthMe.git synced 2025-11-26 21:46:23 +00:00
Files
AuthMe/src/main/java/fr/xephi/authme/security/crypts/WBB4.java
502647092 a1176afa15 init project...
Signed-off-by: 502647092 <jtb1@163.com>
2015-10-12 15:26:15 +08:00

18 lines
477 B
Java

package fr.xephi.authme.security.crypts;
import java.security.NoSuchAlgorithmException;
public class WBB4 implements EncryptionMethod {
@Override
public boolean comparePassword(String hash, String password, String playerName) throws NoSuchAlgorithmException {
return BCRYPT.checkpw(password, hash, 2);
}
@Override
public String getHash(String password, String salt, String name) throws NoSuchAlgorithmException {
return BCRYPT.getDoubleHash(password, salt);
}
}