changes to Base64 (sun --> apache codec)

This commit is contained in:
Dave
2015-01-06 18:59:34 +02:00
parent 2d754af0c2
commit 2f71b567a8
4 changed files with 12 additions and 17 deletions

View File

@@ -50,18 +50,15 @@ public final class NoCore {
public static void setup(NoConfigInterface config, NoHashSphereInterface hashSphere) {
NoCore.setup(config);
NoCore.setup(hashSphere);
com.sun.org.apache.xml.internal.security.Init.init();
}
public static void setup(NoConfigInterface config) {
NoCore.config = config;
com.sun.org.apache.xml.internal.security.Init.init();
}
public static void setup(NoHashSphereInterface hashSphere) {
NoCore.hashSphere = hashSphere;
hashSphere.setup();
com.sun.org.apache.xml.internal.security.Init.init();
}
public static void setup() {
@@ -73,7 +70,6 @@ public final class NoCore {
}
NoCore.setup(newConfig);
NoCore.setup(new NoHashSphereDefault());
com.sun.org.apache.xml.internal.security.Init.init();
}
public static byte[] login(byte[] data, char[] password) throws NoUserNotValidException, NoUserAlreadyOnlineException, NoSessionExpiredException {