fix Base64 but breaks compat
[nikiroo-utils.git] / src / be / nikiroo / utils / test_code / CryptUtilsTest.java
index 11578f5be88901f6555ee3d6cb9a2c5801d756c7..0c53461ea56aed8c5959e4b834ac90306994c8f4 100644 (file)
@@ -75,8 +75,8 @@ class CryptUtilsTest extends TestLauncher {
                        @Override
                        public void test() throws Exception {
                                String orig = "data";
-                               String encrypted = crypt.encrypt64(orig, false);
-                               String decrypted = crypt.decrypt64s(encrypted, false);
+                               String encrypted = crypt.encrypt64(orig);
+                               String decrypted = crypt.decrypt64s(encrypted);
 
                                assertEquals(orig, decrypted);
                        }
@@ -97,8 +97,8 @@ class CryptUtilsTest extends TestLauncher {
                        @Override
                        public void test() throws Exception {
                                String orig = "";
-                               String encrypted = crypt.encrypt64(orig, false);
-                               String decrypted = crypt.decrypt64s(encrypted, false);
+                               String encrypted = crypt.encrypt64(orig);
+                               String decrypted = crypt.decrypt64s(encrypted);
 
                                assertEquals(orig, decrypted);
                        }
@@ -119,8 +119,8 @@ class CryptUtilsTest extends TestLauncher {
                        @Override
                        public void test() throws Exception {
                                String orig = longData;
-                               String encrypted = crypt.encrypt64(orig, false);
-                               String decrypted = crypt.decrypt64s(encrypted, false);
+                               String encrypted = crypt.encrypt64(orig);
+                               String decrypted = crypt.decrypt64s(encrypted);
 
                                assertEquals(orig, decrypted);
                        }