Remove skip test for Xenforo hash.

This commit is contained in:
DNx5 2016-01-07 07:41:09 +07:00
parent 2c13783c6c
commit fab13c586f
2 changed files with 0 additions and 8 deletions

View File

@ -47,12 +47,6 @@ public class HashAlgorithmIntegrationTest {
public void shouldBeAbleToInstantiateEncryptionAlgorithms() throws InstantiationException, IllegalAccessException {
// given / when / then
for (HashAlgorithm algorithm : HashAlgorithm.values()) {
// TODO #137: Remove this check
if (HashAlgorithm.XFBCRYPT.equals(algorithm)) {
System.out.println("Note: Currently skipping XFBCRYPT hash (TODO #137: Fix it)");
continue;
}
if (!HashAlgorithm.CUSTOM.equals(algorithm)) {
EncryptionMethod method = algorithm.getClazz().newInstance();
HashedPassword hashedPassword = method.computeHash("pwd", "name");

View File

@ -1,7 +1,5 @@
package fr.xephi.authme.security.crypts;
import org.junit.Test;
/**
* Test for {@link XFBCRYPT}.
*/