#369 Delete Xenforo (XF) encryption algorithm

Rationale:
- Seems not to have been working since it was added to the codebase
- Seems not to correspond to the actual Xenforo password hashing (class does some sort of JSON extraction?)
- It would be easier to rewrite it from scratch if someone requests it later
This commit is contained in:
ljacqu
2015-12-28 22:32:24 +01:00
parent 47f4275225
commit 121d323221
5 changed files with 4 additions and 97 deletions
@@ -1,17 +0,0 @@
package fr.xephi.authme.security.crypts;
import org.junit.Ignore;
import org.junit.Test;
/**
* Test for {@link XF}.
*/
@Ignore
// TODO #369: XF needs to generate a salt it is expecting
public class XFTest {
@Test
public void shouldComputeHash() {
System.out.println(new XF().computeHash("Test", "name"));
}
}