X-Git-Url: http://git.nikiroo.be/?p=nikiroo-utils.git;a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Futils%2Ftest_code%2FCryptUtilsTest.java;h=49005acdc054359508bfd5ef593bb3dfdbaa3962;hp=61e18fbb49198ec36240d361a9d16d13a44af7c3;hb=f28a134e4d06ee40d62c0c62123fc4799d49d8eb;hpb=f04d5e49e91832e122617fbbaa5cdb053459a7e7 diff --git a/src/be/nikiroo/utils/test_code/CryptUtilsTest.java b/src/be/nikiroo/utils/test_code/CryptUtilsTest.java index 61e18fb..49005ac 100644 --- a/src/be/nikiroo/utils/test_code/CryptUtilsTest.java +++ b/src/be/nikiroo/utils/test_code/CryptUtilsTest.java @@ -136,7 +136,7 @@ class CryptUtilsTest extends TestLauncher { @Override public void test() throws Exception { InputStream in = new ByteArrayInputStream(new byte[] {42, 127, 12}); - crypt.encryptInputStream(in); + crypt.encrypt(in); ByteArrayOutputStream out = new ByteArrayOutputStream(); IOUtils.write(in, out); byte[] result = out.toByteArray();